[FFmpeg-devel] [PATCH 08/33] Disable optimizations which I haven't ported yet.

Ronald S. Bultje rsbultje at gmail.com
Wed Feb 6 04:27:21 CET 2013


From: "Ronald S. Bultje" <rsbultje at gmail.com>

---
 libavcodec/hpeldsp.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index a9139bf..3705d43 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -53,6 +53,7 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags)
     hpel_funcs(avg, [3],  2);
     hpel_funcs(avg_no_rnd,, 16);
 
+#if 0
     if (ARCH_X86)        ff_hpeldsp_init_x86   (c, flags);
     if (ARCH_ARM)        ff_hpeldsp_init_arm   (c, flags);
     if (HAVE_VIS)        ff_hpeldsp_init_vis   (c, flags);
@@ -60,4 +61,5 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags)
     if (ARCH_PPC)        ff_hpeldsp_init_ppc   (c, flags);
     if (ARCH_SH4)        ff_hpeldsp_init_sh4   (c, flags);
     if (ARCH_BFIN)       ff_hpeldsp_init_bfin  (c, flags);
+#endif
 }
-- 
1.7.11.3



More information about the ffmpeg-devel mailing list