summarylogtreecommitdiffstats
path: root/stderr.patch
diff options
context:
space:
mode:
Diffstat (limited to 'stderr.patch')
-rw-r--r--stderr.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/stderr.patch b/stderr.patch
new file mode 100644
index 000000000000..3459d649d34c
--- /dev/null
+++ b/stderr.patch
@@ -0,0 +1,17 @@
+diff -aur a52dec-0.7.4.orig/liba52/imdct.c a52dec-0.7.4/liba52/imdct.c
+--- a52dec-0.7.4.orig/liba52/imdct.c 2016-06-10 02:39:52.984345055 -0700
++++ a52dec-0.7.4/liba52/imdct.c 2016-06-10 02:41:08.304633486 -0700
+@@ -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;
+ }