diff options
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index 2cab52034..3f3097485 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -334,7 +334,10 @@ void hb_get_audio_bitrate_limits(uint32_t codec, int samplerate, int mixdown, in if( codec & HB_ACODEC_PASS_FLAG ) { // Bitrates don't apply to "lossless" audio (Passthru, FLAC) - *low = *high = -1; + // ... but may be applied if we fallback to an encoder + // when the source can not be passed. + *high = 768; + *low = 32; return; } switch( codec ) |