[x264-devel] x86: add missing initializations for high bit-depth variance
James Almer
git at videolan.org
Wed Apr 23 00:40:59 CEST 2014
x264 | branch: master | James Almer <jamrial at gmail.com> | Sat Apr 5 23:46:31 2014 -0300| [659e6df4c936137d417a3830d87a5ea12668b380] | committer: Jason Garrett-Glaser
x86: add missing initializations for high bit-depth variance
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=659e6df4c936137d417a3830d87a5ea12668b380
---
common/pixel.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/common/pixel.c b/common/pixel.c
index f164733..caa7555 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;
}
More information about the x264-devel
mailing list