Home
last modified time | relevance | path

Searched refs:MOT (Results 1 – 17 of 17) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dvlc_decode.cpp140 MOT *mot_x = video->motX; in PV_GetMBvectors()
141 MOT *mot_y = video->motY; in PV_GetMBvectors()
148 MOT mvx = 0, mvy = 0; in PV_GetMBvectors()
170 mvx += (MOT)vlc_code_mag; in PV_GetMBvectors()
171 mvx = (MOT)(((mvx + 32) & 0x3F) - 32); in PV_GetMBvectors()
180 mvy += (MOT)vlc_code_mag; in PV_GetMBvectors()
181 mvy = (MOT)(((mvy + 32) & 0x3F) - 32); in PV_GetMBvectors()
183 mot_x[pos+offset] = (MOT) mvx; in PV_GetMBvectors()
184 mot_y[pos+offset] = (MOT) mvy; in PV_GetMBvectors()
197 mvx += (MOT)vlc_code_mag; in PV_GetMBvectors()
[all …]
Dvlc_decode.h96 PV_STATUS PV_DecodeMBVec(BitstreamDecVideo *stream, MOT *mv_x, MOT *mv_y, int f_code_f);
97 PV_STATUS PV_DeScaleMVD(int f_code, int residual, int vlc_code_mag, MOT *vector);
Dmp4dec_lib.h159 MOT *px, /* i */
160 MOT *py, /* i */
260 void mv_prediction(VideoDecData *video, int block, MOT *mvx, MOT *mvy);
Dmp4lib_int.h225 MOT *motX; /* Motion vector in X direction */
226 MOT *motY; /* Motion vector in Y direction */
Dpvdec_api.cpp42 extern MOT IMEM_motX[QCIF_BS];
43 extern MOT IMEM_motY[QCIF_BS];
422 video->motX = (MOT *)(IMEM_motX); in PVAllocVideoData()
424 video->motY = (MOT *)(IMEM_motY); in PVAllocVideoData()
426 video->memoryUsage += (sizeof(MOT) * 8 * nTotalMB); in PVAllocVideoData()
483 if ((size_t)nTotalMB > SIZE_MAX / (sizeof(MOT) * 4)) { in PVAllocVideoData()
486 video->motX = (MOT *) oscl_malloc(sizeof(MOT) * 4 * nTotalMB); in PVAllocVideoData()
488 video->motY = (MOT *) oscl_malloc(sizeof(MOT) * 4 * nTotalMB); in PVAllocVideoData()
490 video->memoryUsage += (sizeof(MOT) * 8 * nTotalMB); in PVAllocVideoData()
Dmp4def.h36 typedef int16 MOT; /* : "int" type runs faster on RISC machine */ typedef
Dcombined_decode.cpp72 oscl_memset(video->motX, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameCombinedMode()
73 oscl_memset(video->motY, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameCombinedMode()
Ddatapart_decode.cpp61 oscl_memset(video->motX, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameDataPartMode()
62 oscl_memset(video->motY, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameDataPartMode()
Dmb_motion_comp.cpp149 MOT px[4], py[4]; in MBMotionComp()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmp4enc_lib.h105 void EncPrediction_INTER4V(Int xpred, Int ypred, MOT *mot, UChar *c_prev, UChar *c_rec,
130 void ComputeMBSum_C(UChar *cur, Int lx, MOT *mot_mb);
131 void ComputeMBSum_MMX(UChar *cur, Int lx, MOT *mot_mb);
132 void ComputeMBSum_SSE(UChar *cur, Int lx, MOT *mot_mb);
137 void FindHalfPelMB(VideoEncData *video, UChar *cur, MOT *mot, UChar *ncand,
139 Int FindHalfPelBlk(VideoEncData *video, UChar *cur, MOT *mot, Int sad16, UChar *ncand8[],
Dmp4lib_int.h158 } MOT; typedef
242 void (*ComputeMBSum)(UChar *cur, Int lx, MOT *mot_mb);
350 MOT **mot; /* Motion vectors */
Dfindhalfpel.cpp65 void FindHalfPelMB(VideoEncData *video, UChar *cur, MOT *mot, UChar *ncand, in FindHalfPelMB()
184 Int FindHalfPelBlk(VideoEncData *video, UChar *cur, MOT *mot, Int sad16, UChar *ncand8[], in FindHalfPelBlk()
Dmotion_est.cpp148 MOT *mot_mb, **mot = video->mot; in MotionEstimation()
151 void (*ComputeMBSum)(UChar *, Int, MOT *) = video->functionPointer->ComputeMBSum; in MotionEstimation()
779 MOT **mot = video->mot; in MBMotionSearch()
1355 MOT **mot = video->mot; in CandidateSelection()
1356 MOT *pmot; in CandidateSelection()
Dme_utils.cpp313 void ComputeMBSum_C(UChar *cur, Int lx, MOT *mot_mb) in ComputeMBSum_C()
Dmp4enc_api.cpp668 if ((size_t)nTotalMB > SIZE_MAX / sizeof(MOT *)) { in PVInitVideoEncoder()
671 video->mot = (MOT **)M4VENC_MALLOC(sizeof(MOT *) * nTotalMB); in PVInitVideoEncoder()
676 video->mot[idx] = (MOT *)M4VENC_MALLOC(sizeof(MOT) * 8); in PVInitVideoEncoder()
Dmotion_comp.cpp103 MOT *mot = video->mot[mbnum]; in getMotionCompensatedMB()
242 MOT *mot, /* i */ in EncPrediction_INTER4V()
Dvlc_encode.cpp2546 MOT **motdata = video->mot; in find_pmvs()