diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 08:05:46 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 08:05:46 +0000 |
commit | f27d6d2bec7f86fda07e775a523fd1affcba028e (patch) | |
tree | 604945e9526d4a3182fd0ab8fd9177f90ec1fa26 /liba52-silence.patch | |
parent | 0102b2a2505a94491225c566ad688596074e2171 (diff) |
automatic import of a52decopeneuler24.03_LTS
Diffstat (limited to 'liba52-silence.patch')
-rw-r--r-- | liba52-silence.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/liba52-silence.patch b/liba52-silence.patch new file mode 100644 index 0000000..a739966 --- /dev/null +++ b/liba52-silence.patch @@ -0,0 +1,17 @@ +diff -ru a52dec.orig/liba52/imdct.c a52dec/liba52/imdct.c +--- a52dec.orig/liba52/imdct.c 2012-02-06 19:40:21.000000000 +0200 ++++ a52dec/liba52/imdct.c 2012-02-06 19:40:53.000000000 +0200 +@@ -419,13 +419,11 @@ + + #ifdef LIBA52_DJBFFT + if (mm_accel & MM_ACCEL_DJBFFT) { +- fprintf (stderr, "Using djbfft for IMDCT transform\n"); + ifft128 = (void (*) (complex_t *)) fftc4_un128; + ifft64 = (void (*) (complex_t *)) fftc4_un64; + } else + #endif + { +- fprintf (stderr, "No accelerated IMDCT transform found\n"); + ifft128 = ifft128_c; + ifft64 = ifft64_c; + } |