diff options
author | jbrjake <[email protected]> | 2008-05-30 18:24:00 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-05-30 18:24:00 +0000 |
commit | aa0cbb2721210cddd010e8e61524dd6ac14e5528 (patch) | |
tree | 5968ba502ab15f079b6fc58013808554f49dba1b /test | |
parent | 5b0a6c2fa7509731584bbd0924b9c5301c218d52 (diff) |
CLI: Use default audio settings of 160kbps @ 48kHz, just like the MacGui and WinGui.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1474 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.c b/test/test.c index 28c39fdaa..f4e415452 100644 --- a/test/test.c +++ b/test/test.c @@ -55,8 +55,8 @@ static char * arates = NULL; static char * abitrates = NULL; static char * acodecs = NULL; static int default_acodec = HB_ACODEC_FAAC; -static int default_arate = 44100; -static int default_abitrate = 128; +static int default_arate = 48000; +static int default_abitrate = 160; static int sub = 0; static int width = 0; static int height = 0; |