Lines Matching refs:gmcsize
58 int gmcsize;
205 c->gmcsize = (c->flags & VB_HAS_GMC) ? 4 : 0;
206 if (c->gmcsize)
207 avio_read(s->pb, c->gmc, c->gmcsize);
213 if (c->pktsize < 2LL + c->sndsize + c->gmcsize)
216 size = c->pktsize - c->sndsize - c->gmcsize - 2;
218 if ((ret = av_new_packet(pkt, size + c->gmcsize + 2)) < 0)
221 if (c->gmcsize)
222 memcpy(pkt->data + 2, c->gmc, c->gmcsize);
223 if (avio_read(s->pb, pkt->data + 2 + c->gmcsize, size) != size) {