diff options
author | dynaflash <[email protected]> | 2007-04-18 19:15:02 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-04-18 19:15:02 +0000 |
commit | 42605214645c734218a013140e1bfa8bcecd8baa (patch) | |
tree | 6a09e993c1bf85e149a3f2a96940ca025c03e771 /libhb | |
parent | ab810e34eafd1b8de8480d623f8e862b290a388e (diff) |
Add 384 kbps to Audio Bitrates selection for use with 6 channel discrete
- We still need to filter out which bitrates are available depending on mixdown. Right now, you can select 320 in gui for a stereo track even though libhb limits it to 160, so its misleading.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@530 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index d1c4cb34a..8f061e1f9 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -31,7 +31,7 @@ hb_rate_t hb_audio_bitrates[] = { { "32", 32 }, { "40", 40 }, { "48", 48 }, { "56", 56 }, { "64", 64 }, { "80", 80 }, { "96", 96 }, { "112", 112 }, { "128", 128 }, { "160", 160 }, { "192", 192 }, { "224", 224 }, - { "256", 256 }, { "320", 320 } }; + { "256", 256 }, { "320", 320 }, { "384", 384 } }; int hb_audio_bitrates_count = sizeof( hb_audio_bitrates ) / sizeof( hb_rate_t ); int hb_audio_bitrates_default = 8; /* 128 kbps */ |