[FFmpeg-cvslog] avutil/ppc/float_dsp_init: Disable duplicate functions

Michael Niedermayer git at videolan.org
Sun May 31 23:43:28 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun May 31 23:31:06 2015 +0200| [1046b6b09326f143f0785cbec461dc7726eece8c] | committer: Michael Niedermayer

avutil/ppc/float_dsp_init: Disable duplicate functions

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1046b6b09326f143f0785cbec461dc7726eece8c
---

 libavutil/ppc/float_dsp_init.c |   13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/libavutil/ppc/float_dsp_init.c b/libavutil/ppc/float_dsp_init.c
index c10d7fb..1d490bd 100644
--- a/libavutil/ppc/float_dsp_init.c
+++ b/libavutil/ppc/float_dsp_init.c
@@ -37,13 +37,16 @@ av_cold void ff_float_dsp_init_ppc(AVFloatDSPContext *fdsp, int bit_exact)
             fdsp->vector_fmul_window = ff_vector_fmul_window_altivec;
         }
     }
+
+    // The disabled function below are near identical to altivec and have
+    // been disabled to reduce code duplication
     if (PPC_VSX(av_get_cpu_flags())) {
-        fdsp->vector_fmul = ff_vector_fmul_vsx;
+//         fdsp->vector_fmul = ff_vector_fmul_vsx;
         fdsp->vector_fmul_add = ff_vector_fmul_add_vsx;
-        fdsp->vector_fmul_reverse = ff_vector_fmul_reverse_vsx;
+//         fdsp->vector_fmul_reverse = ff_vector_fmul_reverse_vsx;
 
-        if (!bit_exact) {
-            fdsp->vector_fmul_window = ff_vector_fmul_window_vsx;
-        }
+//         if (!bit_exact) {
+//             fdsp->vector_fmul_window = ff_vector_fmul_window_vsx;
+//         }
     }
 }



More information about the ffmpeg-cvslog mailing list