Searched refs:Rc (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h37 Int Rc; /*bits used for the current frame. It is the bit count obtained after encoding. */ member in struct:__anon663
H A Drate_control.cpp334 rc->Rc = currVol->stream->byteCount << 3; /* Total Bits for current frame */
815 rc->TMN_W += (rc->Rc - rc->TMN_TH);
816 rc->VBV_fullness += (rc->Rc - frame_bits); //rc->Rp);
824 if ((video->encParams->H263_Enabled && rc->Rc > video->encParams->maxFrameSize) || /* For H263/short header mode, drop the frame if the actual frame size exceeds the bound */
827 rc->TMN_W -= (rc->Rc - rc->TMN_TH);
828 rc->VBV_fullness -= rc->Rc;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Drate_control.cpp830 rateCtrl->Rc = rateCtrl->numFrameBits; /* Total Bits for current frame */
864 rateCtrl->TMN_W += (rateCtrl->Rc - rateCtrl->TMN_TH);
865 rateCtrl->VBV_fullness += (rateCtrl->Rc - frame_bits); //rateCtrl->Rp);
875 rateCtrl->TMN_W -= (rateCtrl->Rc - rateCtrl->TMN_TH);
876 rateCtrl->VBV_fullness -= rateCtrl->Rc;
H A Davcenc_int.h165 int actual_bits; /* actual bits for current frame obtained after encoding, = rc->Rc*/
257 int Rc; /*bits used for the current frame. It is the bit count obtained after encoding. */ member in struct:tagAVCRateControl

Completed in 471 milliseconds