From: James Almer Date: Sun, 6 Apr 2014 02:46:31 +0000 (-0300) Subject: x86: add missing initializations for high bit-depth variance X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa00925abd6f9ab4e20216ae5a5ad79b67756162;p=libx264 x86: add missing initializations for high bit-depth variance --- diff --git a/common/pixel.c b/common/pixel.c index 7390c983..9541d106 100644 --- a/common/pixel.c +++ b/common/pixel.c @@ -1021,6 +1021,8 @@ void x264_pixel_init( int cpu, x264_pixel_function_t *pixf ) } if( cpu&X264_CPU_XOP ) { + pixf->var[PIXEL_16x16] = x264_pixel_var_16x16_xop; + pixf->var[PIXEL_8x8] = x264_pixel_var_8x8_xop; pixf->vsad = x264_pixel_vsad_xop; pixf->asd8 = x264_pixel_asd8_xop; }