Home | History | Annotate | Download | only in src

Lines Matching refs:functionPointer

1038     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->SAD_Macroblock = &SAD_Macroblock_C;
1052 video->functionPointer->ChooseMode = &ChooseMode_C;
1053 video->functionPointer->GetHalfPelMBRegion = &GetHalfPelMBRegion_C;
1054 // video->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING; /* 4/21/01 */
1254 if (video->functionPointer) M4VENC_FREE(video->functionPointer);