Searched refs:AVC_CLIP3 (Results 1 – 5 of 5) sorted by relevance
/external/opencore/codecs_v2/video/avc_h264/dec/src/ |
D | slice.cpp | 224 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()
|
D | header.cpp | 715 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/ |
D | avcint_common.h | 53 #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/ |
D | init.cpp | 518 rateCtrl->initQP = AVC_CLIP3(0, 51, rateCtrl->initQP); in SetEncodeParam()
|
D | rate_control.cpp | 706 …currMB->QPc = video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, currMB->QPy + video->currPicParams->chroma_… in RCInitChromaQP()
|