Searched refs:timeInc (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvop.cpp316 Int timeInc; local
326 timeInc = frameTick - video->refTick[0];
327 while (timeInc >= currVol->timeIncrementResolution)
329 timeInc -= currVol->timeIncrementResolution;
335 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, timeInc); /* vop_time_increment */
376 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, currVop->timeInc); /* vop_time_increment */
556 BitstreamPutBits(bs, currVol->nbitsTimeIncRes, currVop->timeInc); /* vop_time_increment */
H A Dmp4enc_api.cpp210 Int timeInc, timeIncRes; local
441 timeInc = encOption->tickPerSrc;
443 if ((timeIncRes >= 1) && (timeIncRes <= 65536) && (timeInc < timeIncRes) && (timeInc != 0))
454 video->FrameRate = timeIncRes / ((float)timeInc);
1473 video->currVop->timeInc = 0;
1474 video->prevBaseVop->timeInc = 0;
1516 video->currVop->timeInc = currVol->timeIncrement;
1605 /* Determine nLayer and timeInc for next encode */
1745 video->currVop->timeInc
[all...]
H A Dmp4lib_int.h58 Int timeInc; /* VOP time increment (relative to last mtb) */ member in struct:tagVOP
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmp4lib_int.h66 uint timeInc; /* VOP time increment (relative to last mtb) */ member in struct:tagVop
87 uint timeInc_offset; /* timeInc offset for multiple VOP in a packet */
H A Dvop.cpp879 currVop->timeInc = BitstreamReadBits16(stream, currVol->nbitsTimeIncRes);
1045 currVop->timeInc = 0xff & (256 + currVop->temporalRef - video->prevVop->temporalRef);
1046 currVol->moduloTimeBase += currVop->timeInc; /* mseconds 11/12/01 */
1642 display_time = (uint32)(currVol->moduloTimeBase + (((int32)currVop->timeInc - (int32)currVol->timeInc_offset) * 1000) / ((int32)currVol->timeIncrementResolution)); /* 11/12/2001 */
H A Dpvdec_api.cpp1183 video->vol[target_layer]->timeInc_offset = vopHeader[target_layer]->timeInc;
1242 video->vol[0]->timeInc_offset = vopHeader[0]->timeInc;

Completed in 104 milliseconds