From: James Almer Date: Wed, 9 Apr 2014 06:33:03 +0000 (-0300) Subject: x86: add missing initialization for high bit-depth sa8d_satd X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e517399f76b12fe2e73892970fe3aac01a178f8;p=libx264 x86: add missing initialization for high bit-depth sa8d_satd --- diff --git a/common/pixel.c b/common/pixel.c index 9541d106..fc275ea8 100644 --- a/common/pixel.c +++ b/common/pixel.c @@ -1025,6 +1025,9 @@ void x264_pixel_init( int cpu, x264_pixel_function_t *pixf ) pixf->var[PIXEL_8x8] = x264_pixel_var_8x8_xop; pixf->vsad = x264_pixel_vsad_xop; pixf->asd8 = x264_pixel_asd8_xop; +#if ARCH_X86_64 + pixf->sa8d_satd[PIXEL_16x16] = x264_pixel_sa8d_satd_16x16_xop; +#endif } if( cpu&X264_CPU_AVX2 ) {