Home
last modified time | relevance | path

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

/external/opencore/codecs_v2/video/m4v_h263/enc/src/
Dmotion_est.cpp158 Int totalSAD = 0; /* average SAD for rate control */ in MotionEstimation() local
198 totalSAD += mot_mb[0].sad; in MotionEstimation()
205 video->sumMAD = (float)totalSAD / (float)NumPixelMB; in MotionEstimation()
416 totalSAD += mot_mb[0].sad; in MotionEstimation()
433 totalSAD += sad8; in MotionEstimation()
453 totalSAD += mot_mb[0].sad; in MotionEstimation()
472 totalSAD = 0; in MotionEstimation()
486 totalSAD += mot_mb[0].sad; in MotionEstimation()
493 video->sumMAD = (float)totalSAD / (float)NumPixelMB; in MotionEstimation()
505 video->sumMAD = (float)totalSAD / (float)NumPixelMB; /* avg SAD */ in MotionEstimation()
Dmp4lib_int.h413 Int totalSAD; /* So far total SAD for a frame */ member
Dvop.cpp91 video->totalSAD = 0; in EncodeVop()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Drate_control.cpp379 …pMP->mad = (OsclFloat)rateCtrl->totalSAD / video->PicSizeInMbs; //ComputeFrameMAD(video, rateCtrl); in RCInitFrameQP()
420 if (rateCtrl->T <= 0 || rateCtrl->totalSAD == 0) in calculateQuantizer_Multipass()
429 curr_mad = (OsclFloat)rateCtrl->totalSAD / video->PicSizeInMbs; in calculateQuantizer_Multipass()
543 curr_mad = (OsclFloat)rateCtrl->totalSAD / video->PicSizeInMbs; in targetBitCalculation()
810 …pMP->mad = (OsclFloat)rateCtrl->totalSAD / video->PicSizeInMbs; //ComputeFrameMAD(video, rateCtrl); in RCUpdateFrame()
Dmotion_est.cpp259 int totalSAD = 0; /* average SAD for rate control */ in AVCMotionEstimation() local
399 totalSAD += (int) rateCtrl->MADofMB[mbnum];//mot_mb_16x16->sad; in AVCMotionEstimation()
414 totalSAD += abe_cost; in AVCMotionEstimation()
451 rateCtrl->totalSAD = totalSAD * 2; /* SAD */ in AVCMotionEstimation()
461 rateCtrl->totalSAD = totalSAD; /* SAD */ in AVCMotionEstimation()
Davcenc_int.h249 int totalSAD; /* SAD of current frame */ member