Searched defs:framerate (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h85 Int max_BitVariance_num; /* the number of the maximum bit variance within the given buffer with the unit of 10% of bitrate/framerate*/
87 float framerate; member in struct:__anon586
H A Dmp4enc_api.cpp514 /* Make sure the maximum framerate is consistent with the given profile and level */
627 /* Check if the video size and framerate(MBsPerSec) are vald */
2009 float bitrate_r, framerate; local
2026 /* get image width, height, bitrate and framerate */
2030 framerate = encData->encParams->LayerFrameRate[0];
2031 if (!width || !height || !(bitrate_r > 0 && framerate > 0)) return PV_FALSE;
2034 if (bitrate_r <= rBR_bound[1] && framerate <= max_h263_framerate[0] &&
2042 framerate > max_h263_framerate[1]) /* check the highest level 70 */
2052 ((width <= max_h263_width[0] && height <= max_h263_height[0] && framerate <= max_h263_framerate[1]) ||
2053 (width <= max_h263_width[1] && height <= max_h263_height[1] && framerate <
[all...]
H A Dmp4lib_int.h271 float framerate; /* framerate for current frame*/ member in struct:tagMultiPass
296 /* For target bitrate or framerate update */
297 float target_bits_per_frame; /* = C = bitrate/framerate */
/frameworks/av/media/libstagefright/codecs/on2/enc/
H A DSoftVPXEncoder.cpp716 uint32_t framerate = mFramerate ?: (30 << 16); local
717 frameDuration = (uint32_t)(((uint64_t)1000000 << 16) / framerate);
/frameworks/av/media/libstagefright/
H A DACodec.cpp3773 float framerate; local
3774 if (!msg->findFloat("frame-rate", &framerate)) {
3781 mFps = (double)framerate;

Completed in 115 milliseconds