File: 50_fix_imdct_error_msg.diff

package info (click to toggle)
a52dec 0.7.4-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,468 kB
  • sloc: sh: 6,772; ansic: 4,948; makefile: 167
file content (19 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: This patch removes annoying (useless) message on stderr. This is a
vendor patch for eveyone that derives from Ubuntu.
Origin: https://bugs.edge.launchpad.net/ubuntu/+source/a52dec/+bug/124951/comments/1
Bug-Ubuntu: https://bugs.edge.launchpad.net/ubuntu/+source/a52dec/+bug/124951
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=441693
Forwarded: not-needed
Index: lucid/liba52/imdct.c
===================================================================
--- lucid.orig/liba52/imdct.c	2009-12-24 06:49:48.000000000 +0200
+++ lucid/liba52/imdct.c	2009-12-24 07:06:26.000000000 +0200
@@ -425,7 +425,7 @@
     } else
 #endif
     {
-	fprintf (stderr, "No accelerated IMDCT transform found\n");
+	// fprintf (stderr, "No accelerated IMDCT transform found\n");
 	ifft128 = ifft128_c;
 	ifft64 = ifft64_c;
     }