Home
last modified time | relevance | path

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

/frameworks/av/media/codecs/m4v_h263/enc/src/
Dmotion_est.cpp151 void (*ComputeMBSum)(UChar *, Int, MOT *) = video->functionPointer->ComputeMBSum; in MotionEstimation()
152 void (*ChooseMode)(UChar*, UChar*, Int, Int) = video->functionPointer->ChooseMode; in MotionEstimation()
560 video->functionPointer->SAD_Macroblock = &SAD_MB_HTFM_Collect; in InitHTFM()
561 video->functionPointer->SAD_MB_HalfPel[0] = NULL; in InitHTFM()
562 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFM_Collectxh; in InitHTFM()
563 video->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HP_HTFM_Collectyh; in InitHTFM()
564 video->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HP_HTFM_Collectxhyh; in InitHTFM()
572 video->functionPointer->SAD_Macroblock = &SAD_MB_HTFM; in InitHTFM()
573 video->functionPointer->SAD_MB_HalfPel[0] = NULL; in InitHTFM()
574 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFMxh; in InitHTFM()
[all …]
Dfindhalfpel.cpp83 video->functionPointer->SAD_MB_HalfPel; in FindHalfPelMB()
196 …Int(*SAD_Blk_HalfPel)(UChar*, UChar*, Int, Int, Int, Int, Int, void*) = video->functionPointer->SA… in FindHalfPelBlk()
Dmp4enc_api.cpp1076 video->functionPointer = (FuncPtr*) M4VENC_MALLOC(sizeof(FuncPtr)); in PVInitVideoEncoder()
1077 if (video->functionPointer == NULL) goto CLEAN_UP; in PVInitVideoEncoder()
1079 video->functionPointer->ComputeMBSum = &ComputeMBSum_C; in PVInitVideoEncoder()
1080 video->functionPointer->SAD_MB_HalfPel[0] = NULL; in PVInitVideoEncoder()
1081 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HalfPel_Cxh; in PVInitVideoEncoder()
1082 video->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HalfPel_Cyh; in PVInitVideoEncoder()
1083 video->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HalfPel_Cxhyh; in PVInitVideoEncoder()
1086 video->functionPointer->SAD_Blk_HalfPel = &SAD_Blk_HalfPel_C; in PVInitVideoEncoder()
1087 video->functionPointer->SAD_Block = &SAD_Block_C; in PVInitVideoEncoder()
1089 video->functionPointer->SAD_Macroblock = &SAD_Macroblock_C; in PVInitVideoEncoder()
[all …]
Dmp4lib_int.h426 FuncPtr *functionPointer; /* structure containing platform dependent functions */ member