Home
last modified time | relevance | path

Searched refs:mvd_l0 (Results 1 – 4 of 4) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/common/src/
Dmb_access.cpp223 video->mvd_l0[0][0][0] = 0; in GetMotionVectorPredictor()
224 video->mvd_l0[0][0][1] = 0; in GetMotionVectorPredictor()
446 video->mvd_l0[mbPartIdx][subMbPartIdx][0] = *mv++ - pmv_x; in GetMotionVectorPredictor()
447 video->mvd_l0[mbPartIdx][subMbPartIdx][1] = *mv++ - pmv_y; in GetMotionVectorPredictor()
451 pmv_x += video->mvd_l0[mbPartIdx][subMbPartIdx][0]; in GetMotionVectorPredictor()
452 pmv_y += video->mvd_l0[mbPartIdx][subMbPartIdx][1]; in GetMotionVectorPredictor()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dslice.cpp349 video->mvd_l0[0][0][0] = 0; in EncodeMB()
350 video->mvd_l0[0][0][1] = 0; in EncodeMB()
361 video->mvd_l0[0][0][0] = 0; in EncodeMB()
362 video->mvd_l0[0][0][1] = 0; in EncodeMB()
365 else if (video->mvd_l0[0][0][0] == 0 && video->mvd_l0[0][0][1] == 0) in EncodeMB()
754 status = se_v(stream, video->mvd_l0[mbPartIdx][0][0]); in mb_pred()
755 status = se_v(stream, video->mvd_l0[mbPartIdx][0][1]); in mb_pred()
846 status = se_v(stream, video->mvd_l0[mbPartIdx][subMbPartIdx][0]); in sub_mb_pred()
847 status = se_v(stream, video->mvd_l0[mbPartIdx][subMbPartIdx][1]); in sub_mb_pred()
/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dslice.cpp379 se_v(stream, &(video->mvd_l0[mbPartIdx][0][0])); in mb_pred()
380 se_v(stream, &(video->mvd_l0[mbPartIdx][0][1])); in mb_pred()
438 se_v(stream, &(video->mvd_l0[mbPartIdx][subMbPartIdx][0])); in sub_mb_pred()
439 se_v(stream, &(video->mvd_l0[mbPartIdx][subMbPartIdx][1])); in sub_mb_pred()
/external/opencore/codecs_v2/video/avc_h264/common/include/
Davcint_common.h689 int mvd_l0[4][4][2]; /* [mbPartIdx][subMbPartIdx][compIdx], se(v) */ member