OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeIncrementResolution
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vop.cpp
325
frameTick = (Int)(((double)(modTime - video->modTimeRef) * currVol->
timeIncrementResolution
+ 500) / 1000);
327
while (timeInc >= currVol->
timeIncrementResolution
)
329
timeInc -= currVol->
timeIncrementResolution
;
mp4enc_api.cpp
865
pVol->
timeIncrementResolution
= video->encParams->TimeIncrementRes;
867
while (pVol->
timeIncrementResolution
> (1 << pVol->nbitsTimeIncRes))
[
all
...]
mp4lib_int.h
79
Int
timeIncrementResolution
; /* VOL time increment */
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h
85
uint
timeIncrementResolution
;/* VOL time increment */
vop.cpp
389
currVol->
timeIncrementResolution
= BitstreamReadBits16(stream, 16);
390
if (currVol->
timeIncrementResolution
== 0) return PV_FAIL;
394
currVol->nbitsTimeIncRes = CalcNumBits((uint)currVol->
timeIncrementResolution
- 1);
[
all
...]
Completed in 58 milliseconds