diff options
author | sr55 <[email protected]> | 2018-12-11 20:07:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-12-11 20:07:36 +0000 |
commit | 962b4f29851bb56b6a696823c00e38a01a38a209 (patch) | |
tree | 283d8a1aa4cd1904e814516e3f700c6dcfc6f4a2 /libhb | |
parent | bd255afee7160ea58c15cef0acff7987885c68ec (diff) |
Extend the range of allowed bitrate inputs to allow Opus to go down as low as 6kbit #1725
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
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, }, |