summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2009-06-05 17:00:25 +0000
committerjbrjake <[email protected]>2009-06-05 17:00:25 +0000
commit2f9ec40139e97e6c468eb40e608629dab8a7d01f (patch)
treed13a520fc32ff3bf5ff9713992d500c199d2b98c /test
parent259bc9a5dd14e07b3fd6b5e7a6aa3cf06caf9b59 (diff)
CLI: List ca_aac as an the audio encoder in the help, when running in OS X.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2488 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/test.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/test/test.c b/test/test.c
index a175168a3..76d78c330 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1961,11 +1961,22 @@ static void ShowHelp()
" More than one output track can be used for one\n"
" input.\n"
" (\"none\" for no audio, \"1,2,3\" for multiple\n"
- " tracks, default: first one)\n"
+ " tracks, default: first one)\n" );
+
+#ifdef __APPLE_CC__
+ fprintf( out,
+ " -E, --aencoder <string> Audio encoder(s) (ca_aac/faac/lame/vorbis/ac3/dts) \n"
+ " ac3 and dts meaning passthrough\n"
+ " Separated by commas for more than one audio track.\n"
+ " (default: guessed)\n" );
+#else
+ fprintf( out,
" -E, --aencoder <string> Audio encoder(s) (faac/lame/vorbis/ac3/dts) \n"
" ac3 and dts meaning passthrough\n"
" Separated by commas for more than one audio track.\n"
- " (default: guessed)\n"
+ " (default: guessed)\n" );
+#endif
+ fprintf( out,
" -B, --ab <kb/s> Set audio bitrate(s) (default: 160)\n"
" Separated by commas for more than one audio track.\n"
" -6, --mixdown <string> Format(s) for surround sound downmixing\n"