From: sr55 Date: Tue, 11 Dec 2018 20:07:36 +0000 (+0000) Subject: Extend the range of allowed bitrate inputs to allow Opus to go down as low as 6kbit... X-Git-Tag: 1.2.0~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=962b4f29851bb56b6a696823c00e38a01a38a209;p=handbrake Extend the range of allowed bitrate inputs to allow Opus to go down as low as 6kbit #1725 --- diff --git a/libhb/common.c b/libhb/common.c index 16085bb44..8d80806c6 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -147,6 +147,9 @@ hb_rate_t *hb_audio_bitrates_last_item = NULL; hb_rate_internal_t hb_audio_bitrates[] = { // AC3-compatible bitrates + { { "6", 6, }, NULL, 1, }, + { { "12", 12, }, NULL, 1, }, + { { "24", 24, }, NULL, 1, }, { { "32", 32, }, NULL, 1, }, { { "40", 40, }, NULL, 1, }, { { "48", 48, }, NULL, 1, },