Searched refs:functionPointer (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.cpp215 encvid->functionPointer = (AVCEncFuncPtr*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCEncFuncPtr), DEFAULT_ATTR);
216 if (encvid->functionPointer == NULL)
220 encvid->functionPointer->SAD_Macroblock = &AVCSAD_Macroblock_C;
221 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
222 encvid->functionPointer->SAD_MB_HalfPel[1] = &AVCSAD_MB_HalfPel_Cxh;
223 encvid->functionPointer->SAD_MB_HalfPel[2] = &AVCSAD_MB_HalfPel_Cyh;
224 encvid->functionPointer->SAD_MB_HalfPel[3] = &AVCSAD_MB_HalfPel_Cxhyh;
603 if (encvid->functionPointer != NULL)
605 avcHandle->CBAVC_Free(userData, encvid->functionPointer);
H A Dmotion_est.cpp627 // encvid->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM_Collect;
628 encvid->functionPointer->SAD_Macroblock = &SAD_MB_HTFM_Collect;
629 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
630 encvid->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFM_Collectxh;
631 encvid->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HP_HTFM_Collectyh;
632 encvid->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HP_HTFM_Collectxhyh;
639 // encvid->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM;
640 encvid->functionPointer->SAD_Macroblock = &SAD_MB_HTFM;
641 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
642 encvid->functionPointer
[all...]
H A Davcenc_int.h461 AVCEncFuncPtr *functionPointer; /* store pointers to platform specific functions */ member in struct:tagEncObject
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp151 void (*ComputeMBSum)(UChar *, Int, MOT *) = video->functionPointer->ComputeMBSum;
152 void (*ChooseMode)(UChar*, UChar*, Int, Int) = video->functionPointer->ChooseMode;
559 // video->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM_Collect;
560 video->functionPointer->SAD_Macroblock = &SAD_MB_HTFM_Collect;
561 video->functionPointer->SAD_MB_HalfPel[0] = NULL;
562 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFM_Collectxh;
563 video->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HP_HTFM_Collectyh;
564 video->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HP_HTFM_Collectxhyh;
571 // video->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM;
572 video->functionPointer
[all...]
H A Dfindhalfpel.cpp83 video->functionPointer->SAD_MB_HalfPel;
196 Int(*SAD_Blk_HalfPel)(UChar*, UChar*, Int, Int, Int, Int, Int, void*) = video->functionPointer->SAD_Blk_HalfPel;
H A Dmp4enc_api.cpp1038 video->functionPointer = (FuncPtr*) M4VENC_MALLOC(sizeof(FuncPtr));
1039 if (video->functionPointer == NULL) goto CLEAN_UP;
1041 video->functionPointer->ComputeMBSum = &ComputeMBSum_C;
1042 video->functionPointer->SAD_MB_HalfPel[0] = NULL;
1043 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HalfPel_Cxh;
1044 video->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HalfPel_Cyh;
1045 video->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HalfPel_Cxhyh;
1048 video->functionPointer->SAD_Blk_HalfPel = &SAD_Blk_HalfPel_C;
1049 video->functionPointer->SAD_Block = &SAD_Block_C;
1051 video->functionPointer
[all...]
H A Dmp4lib_int.h425 FuncPtr *functionPointer; /* structure containing platform dependent functions */ member in struct:tagVideoEncData

Completed in 88 milliseconds