Home
last modified time | relevance | path

Searched refs:AVC_CLIP3 (Results 1 – 5 of 5) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dslice.cpp224 video->QPy = AVC_CLIP3(0, 51, video->QPy); in DecodeMB()
229 …currMB->QPc = video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, video->QPy + video->currPicParams->chroma_q… in DecodeMB()
251 currMB->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, video->currPicParams->chroma_qp_index_offset)]; in DecodeMB()
Dheader.cpp715 video->QPy = AVC_CLIP3(0, 51, video->QPy); in DecodeSliceHeader()
718 …video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, video->QPy + video->currPicParams->chroma_qp_index_offset… in DecodeSliceHeader()
/external/opencore/codecs_v2/video/avc_h264/common/include/
Davcint_common.h53 #define AVC_CLIP3(a,b,x) (AVC_MAX(a,AVC_MIN(x,b))) /* clip x between a and b */ macro
54 #define AVC_CLIP(x) AVC_CLIP3(0,255,x)
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dinit.cpp518 rateCtrl->initQP = AVC_CLIP3(0, 51, rateCtrl->initQP); in SetEncodeParam()
Drate_control.cpp706 …currMB->QPc = video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, currMB->QPy + video->currPicParams->chroma_… in RCInitChromaQP()