summaryrefslogtreecommitdiffstats
path: root/abs/core/faac/pipe-output.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/faac/pipe-output.patch')
-rw-r--r--abs/core/faac/pipe-output.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core/faac/pipe-output.patch b/abs/core/faac/pipe-output.patch
new file mode 100644
index 0000000..a8581f3
--- /dev/null
+++ b/abs/core/faac/pipe-output.patch
@@ -0,0 +1,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);