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