From 962b4f29851bb56b6a696823c00e38a01a38a209 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 11 Dec 2018 20:07:36 +0000 Subject: [PATCH] Extend the range of allowed bitrate inputs to allow Opus to go down as low as 6kbit #1725 --- libhb/common.c | 3 +++ 1 file changed, 3 insertions(+) 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, }, -- 2.40.0