@@ -26,8 +26,8 @@ void ff_add_int16_mmx(uint16_t *dst, const uint16_t *src, unsigned mask, int w);
2626void ff_add_int16_sse2 (uint16_t * dst , const uint16_t * src , unsigned mask , int w );
2727void ff_diff_int16_mmx (uint16_t * dst , const uint16_t * src1 , const uint16_t * src2 , unsigned mask , int w );
2828void ff_diff_int16_sse2 (uint16_t * dst , const uint16_t * src1 , const uint16_t * src2 , unsigned mask , int w );
29- int ff_add_hfyu_left_prediction_int16_ssse3 (uint16_t * dst , const uint16_t * src , unsigned mask , int w , unsigned acc );
30- int ff_add_hfyu_left_prediction_int16_sse4 (uint16_t * dst , const uint16_t * src , unsigned mask , int w , unsigned acc );
29+ int ff_add_hfyu_left_pred_int16_ssse3 (uint16_t * dst , const uint16_t * src , unsigned mask , int w , unsigned acc );
30+ int ff_add_hfyu_left_pred_int16_sse4 (uint16_t * dst , const uint16_t * src , unsigned mask , int w , unsigned acc );
3131void ff_add_hfyu_median_pred_int16_mmxext (uint16_t * dst , const uint16_t * top , const uint16_t * diff , unsigned mask , int w , int * left , int * left_top );
3232void ff_sub_hfyu_median_pred_int16_mmxext (uint16_t * dst , const uint16_t * src1 , const uint16_t * src2 , unsigned mask , int w , int * left , int * left_top );
3333
@@ -53,10 +53,10 @@ void ff_llviddsp_init_x86(LLVidDSPContext *c, AVCodecContext *avctx)
5353 }
5454
5555 if (EXTERNAL_SSSE3 (cpu_flags )) {
56- c -> add_hfyu_left_prediction_int16 = ff_add_hfyu_left_prediction_int16_ssse3 ;
56+ c -> add_hfyu_left_pred_int16 = ff_add_hfyu_left_pred_int16_ssse3 ;
5757 }
5858
5959 if (EXTERNAL_SSE4 (cpu_flags )) {
60- c -> add_hfyu_left_prediction_int16 = ff_add_hfyu_left_prediction_int16_sse4 ;
60+ c -> add_hfyu_left_pred_int16 = ff_add_hfyu_left_pred_int16_sse4 ;
6161 }
6262}
0 commit comments