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

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.cpp41 PV_STATUS RC_UpdateBXRCParams(void *input); Parameters update for target bitrate or framerate change
75 rc[n]->framerate = LayerFrameRate[n];
80 rc[n]->framerate = LayerFrameRate[n];
85 rc[n]->max_BitVariance_num = (Int)((rc[n]->Bs - video->encParams->maxFrameSize) / 2 / (rc[n]->bitrate / rc[n]->framerate / 10.0)) - 5;
108 rc[n]->framerate = LayerFrameRate[n] - LayerFrameRate[n-1];
116 pMP[n]->counter_BTsrc = (Int)((rc[n]->Bs / 2.0 - rc[n]->Bs / 3.0) / (rc[n]->bitrate / rc[n]->framerate / 10.0));
117 rc[n]->TMN_W = (Int)(rc[n]->VBV_fullness + pMP[n]->counter_BTsrc * (rc[n]->bitrate / rc[n]->framerate / 10.0));
135 /* Setting the bitrate and framerate */
137 pMP[n]->framerate = rc[n]->framerate;
[all...]
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 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 */
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...]
/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 720 milliseconds