Fix HEVC streams requiring a higher bitrate to enable high quality surround audio

This commit is contained in:
Cameron Gutman
2018-07-27 19:04:25 -07:00
parent 4c47dd74ad
commit 679f6e83bb
3 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -362,7 +362,8 @@ static PSDP_OPTION getAttributesList(char*urlSafeAddr) {
}
if (AppVersionQuad[0] >= 7) {
if (StreamConfig.bitrate > HIGH_BITRATE_THRESHOLD && audioChannelCount > 2) {
// Decide to use HQ audio based on the original video bitrate, not the HEVC-adjusted value
if (OriginalVideoBitrate >= HIGH_BITRATE_THRESHOLD && audioChannelCount > 2) {
// Enable high quality mode for surround sound
err |= addAttributeString(&optionHead, "x-nv-audio.surround.AudioQuality", "1");