OSDN Git Service

allow ca_aac lower limit of 192kbps for 6ch
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Fri, 8 Oct 2010 21:51:02 +0000 (21:51 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Fri, 8 Oct 2010 21:51:02 +0000 (21:51 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@3584 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/common.c

index 09f8031..4341698 100644 (file)
@@ -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;