From 363df88f12422fa9b2ac2f005745340a6f0fa56d Mon Sep 17 00:00:00 2001 From: jstebbins Date: Fri, 8 Oct 2010 21:51:02 +0000 Subject: [PATCH] allow ca_aac lower limit of 192kbps for 6ch git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3584 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/common.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.40.0