Home | History | Annotate | Download | only in src

Lines Matching refs:video

28 PV_STATUS PV_ReadVideoPacketHeader(VideoDecData *video, int *next_MB)
31 Vol *currVol = video->vol[video->currLayer];
32 Vop *currVop = video->currVop;
33 BitstreamDecVideo *stream = video->bitstream;
36 int nbits = video->nBitsForMBID;
40 int nTotalMB = video->nTotalMB;
56 // if (*next_MB <= video->mbnum) /* needs more investigation */
57 // *next_MB = video->mbnum+1;
61 *next_MB = video->mbnum + 1;
144 PV_STATUS PV_GobHeader(VideoDecData *video)
147 Vop *currVop = video->currVop;
148 BitstreamDecVideo *stream = video->bitstream;
185 if (currVop->gobNumber >= video->nGOBinVop) return PV_FAIL;
194 PV_STATUS PV_H263SliceHeader(VideoDecData *video, int *next_MB)
198 Vop *currVop = video->currVop;
199 BitstreamDecVideo *stream = video->bitstream;
200 int nTotalMB = video->nTotalMB;
212 *next_MB = BitstreamReadBits16(stream, video->nBitsForMBID);
215 *next_MB = video->mbnum + 1;