summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/faac/pipe-output.patch
blob: a8581f3922730a6fe045ed7125584e76e7c832cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- faac/frontend/main.c	2004-12-08 11:07:17.000000000 +0000
+++ faac-patched/frontend/main.c	2007-01-29 19:17:26.000000000 +0000
@@ -918,7 +918,14 @@
     {
 #endif
         /* open the aac output file */
-        outfile = fopen(aacFileName, "wb");
+	if (aacFileName[0] == '-')
+	{
+		outfile = stdout;
+	}
+	else
+	{
+		outfile = fopen(aacFileName, "wb");
+	}
         if (!outfile)
         {
             fprintf(stderr, "Couldn't create output file %s\n", aacFileName);