Lines Matching refs:fcount
43 uint32_t fcount;
72 c->fcount = avio_rl32(s->pb);
73 if((int64_t)c->fcount * sizeof(MPCFrame) >= UINT_MAX){
86 if (c->fcount) {
87 c->frames = av_malloc(c->fcount * sizeof(MPCFrame));
108 st->duration = c->fcount;
129 if (c->curframe >= c->fcount && c->fcount)
150 if(cur == c->frames_noted && c->fcount){
163 pkt->data[1] = (c->curframe > c->fcount) && c->fcount;
203 if(timestamp < 0 || timestamp >= c->fcount)