/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | vlc_decode.cpp | 140 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 …]
|
D | vlc_decode.h | 96 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);
|
D | mp4dec_lib.h | 159 MOT *px, /* i */ 160 MOT *py, /* i */ 260 void mv_prediction(VideoDecData *video, int block, MOT *mvx, MOT *mvy);
|
D | mp4lib_int.h | 225 MOT *motX; /* Motion vector in X direction */ 226 MOT *motY; /* Motion vector in Y direction */
|
D | pvdec_api.cpp | 42 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()
|
D | mp4def.h | 36 typedef int16 MOT; /* : "int" type runs faster on RISC machine */ typedef
|
D | combined_decode.cpp | 72 oscl_memset(video->motX, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameCombinedMode() 73 oscl_memset(video->motY, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameCombinedMode()
|
D | datapart_decode.cpp | 61 oscl_memset(video->motX, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameDataPartMode() 62 oscl_memset(video->motY, 0, sizeof(MOT)*4*nTotalMB); in DecodeFrameDataPartMode()
|
D | mb_motion_comp.cpp | 149 MOT px[4], py[4]; in MBMotionComp()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | mp4enc_lib.h | 105 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[],
|
D | mp4lib_int.h | 158 } MOT; typedef 242 void (*ComputeMBSum)(UChar *cur, Int lx, MOT *mot_mb); 350 MOT **mot; /* Motion vectors */
|
D | findhalfpel.cpp | 65 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()
|
D | motion_est.cpp | 148 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()
|
D | me_utils.cpp | 313 void ComputeMBSum_C(UChar *cur, Int lx, MOT *mot_mb) in ComputeMBSum_C()
|
D | mp4enc_api.cpp | 668 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()
|
D | motion_comp.cpp | 103 MOT *mot = video->mot[mbnum]; in getMotionCompensatedMB() 242 MOT *mot, /* i */ in EncPrediction_INTER4V()
|
D | vlc_encode.cpp | 2546 MOT **motdata = video->mot; in find_pmvs()
|