summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-10-08 21:51:02 +0000
committerjstebbins <[email protected]>2010-10-08 21:51:02 +0000
commit363df88f12422fa9b2ac2f005745340a6f0fa56d (patch)
tree62ab8b573d90507868b223dd57dd495521a08e77
parent733d095631957bc9ddcdd30df79761f0171ebd10 (diff)
allow ca_aac lower limit of 192kbps for 6ch
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3584 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--libhb/common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c
index 09f8031ff..43416980f 100644
--- a/libhb/common.c
+++ b/libhb/common.c
@@ -116,6 +116,8 @@ void hb_get_audio_bitrate_limits(uint32_t codec, int samplerate, int mixdown, in
*low = channels * 32;
if (samplerate <= 24000)
*low = channels * 16;
+ if (channels == 6)
+ *low = 192;
*high = hb_audio_bitrates[hb_audio_bitrates_count-1].rate;
break;