[x264-devel] mips: Fix incorrect pointers to msa optimized functions
Anton Mitrofanov
git at videolan.org
Mon Dec 25 20:39:29 CET 2017
x264 | branch: master | Anton Mitrofanov <BugMaster at narod.ru> | Sun Oct 22 16:18:29 2017 +0300| [45e6eb6006d1d23b6f69a1cfb62a86dc67092a81] | committer: Anton Mitrofanov
mips: Fix incorrect pointers to msa optimized functions
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=45e6eb6006d1d23b6f69a1cfb62a86dc67092a81
---
common/pixel.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/pixel.c b/common/pixel.c
index 00c14125..d668491b 100644
--- a/common/pixel.c
+++ b/common/pixel.c
@@ -1501,8 +1501,8 @@ void x264_pixel_init( int cpu, x264_pixel_function_t *pixf )
pixf->var[PIXEL_8x8] = x264_pixel_var_8x8_msa;
//pixf->var2[PIXEL_8x16] = x264_pixel_var2_8x16_msa;
//pixf->var2[PIXEL_8x8] = x264_pixel_var2_8x8_msa;
- pixf->sa8d[PIXEL_16x16] = x264_pixel_sa8d_16x16;
- pixf->sa8d[PIXEL_8x8] = x264_pixel_sa8d_8x8;
+ pixf->sa8d[PIXEL_16x16] = x264_pixel_sa8d_16x16_msa;
+ pixf->sa8d[PIXEL_8x8] = x264_pixel_sa8d_8x8_msa;
}
#endif // HAVE_MSA
More information about the x264-devel
mailing list