summaryrefslogtreecommitdiffstats
path: root/abs/core/faac/pipe-output.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-30 23:52:49 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-30 23:52:49 (GMT)
commitef974fb08972483d6852c9d5b2f23e1d33343b76 (patch)
treefa5aad1563681bf14a0fed3cdf8f599f7e8e853c /abs/core/faac/pipe-output.patch
parentba6da4b6e7eab74dd3dcac947a11361b1b9f1eed (diff)
downloadlinhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.zip
linhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.tar.gz
linhes_pkgbuild-ef974fb08972483d6852c9d5b2f23e1d33343b76.tar.bz2
Housekeeping
Diffstat (limited to 'abs/core/faac/pipe-output.patch')
-rw-r--r--abs/core/faac/pipe-output.patch18
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);