comparison dsputil.c @ 6056:558c1fd0ee72 libavcodec

Fix typo in macro name: WARPER8_16_SQ --> WRAPPER8_16_SQ.
author diego
date Fri, 21 Dec 2007 12:38:41 +0000
parents de71ee8112f4
children dfdff1ca78a7
comparison
equal deleted inserted replaced
6055:bc22d052c6e5 6056:558c1fd0ee72
3750 for(i=0; i<size; i++) 3750 for(i=0; i<size; i++)
3751 score += (pix1[i]-pix2[i])*(pix1[i]-pix2[i]); 3751 score += (pix1[i]-pix2[i])*(pix1[i]-pix2[i]);
3752 return score; 3752 return score;
3753 } 3753 }
3754 3754
3755 WARPER8_16_SQ(hadamard8_diff8x8_c, hadamard8_diff16_c) 3755 WRAPPER8_16_SQ(hadamard8_diff8x8_c, hadamard8_diff16_c)
3756 WARPER8_16_SQ(hadamard8_intra8x8_c, hadamard8_intra16_c) 3756 WRAPPER8_16_SQ(hadamard8_intra8x8_c, hadamard8_intra16_c)
3757 WARPER8_16_SQ(dct_sad8x8_c, dct_sad16_c) 3757 WRAPPER8_16_SQ(dct_sad8x8_c, dct_sad16_c)
3758 #ifdef CONFIG_GPL 3758 #ifdef CONFIG_GPL
3759 WARPER8_16_SQ(dct264_sad8x8_c, dct264_sad16_c) 3759 WRAPPER8_16_SQ(dct264_sad8x8_c, dct264_sad16_c)
3760 #endif 3760 #endif
3761 WARPER8_16_SQ(dct_max8x8_c, dct_max16_c) 3761 WRAPPER8_16_SQ(dct_max8x8_c, dct_max16_c)
3762 WARPER8_16_SQ(quant_psnr8x8_c, quant_psnr16_c) 3762 WRAPPER8_16_SQ(quant_psnr8x8_c, quant_psnr16_c)
3763 WARPER8_16_SQ(rd8x8_c, rd16_c) 3763 WRAPPER8_16_SQ(rd8x8_c, rd16_c)
3764 WARPER8_16_SQ(bit8x8_c, bit16_c) 3764 WRAPPER8_16_SQ(bit8x8_c, bit16_c)
3765 3765
3766 static void vector_fmul_c(float *dst, const float *src, int len){ 3766 static void vector_fmul_c(float *dst, const float *src, int len){
3767 int i; 3767 int i;
3768 for(i=0; i<len; i++) 3768 for(i=0; i<len; i++)
3769 dst[i] *= src[i]; 3769 dst[i] *= src[i];