Home
last modified time | relevance | path

Searched refs:Rc (Results 1 – 6 of 6) sorted by relevance

/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dvibrance.rscript43 float Rc = R * (Rt + S) + G * Gt + B * Bt;
48 o.r = clamp((int) Rc, 0, 255);
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
Dvibrance_f.rscript43 float Rc = R * (Rt + S) + G * Gt + B * Bt;
48 o.r = Rc;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dvibrance.rscript43 float Rc = R * (Rt + S) + G * Gt + B * Bt;
48 o.r = clamp((int) Rc, 0, 255);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dvibrance.rscript43 float Rc = R * (Rt + S) + G * Gt + B * Bt;
48 o.r = rsClamp(Rc, 0, 255);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Drate_control.h37 Int Rc; /*bits used for the current frame. It is the bit count obtained after encoding. */ member
Drate_control.cpp334 rc->Rc = currVol->stream->byteCount << 3; /* Total Bits for current frame */ in RC_VopUpdateStat()
817 rc->TMN_W += (rc->Rc - rc->TMN_TH); in updateRateControl()
818 rc->VBV_fullness += (rc->Rc - frame_bits); //rc->Rp); in updateRateControl()
826 …if ((video->encParams->H263_Enabled && rc->Rc > video->encParams->maxFrameSize) || /* For H263/sh… in updateRateControl()
829 rc->TMN_W -= (rc->Rc - rc->TMN_TH); in updateRateControl()
830 rc->VBV_fullness -= rc->Rc; in updateRateControl()