Skip to content

Commit

Permalink
Do not activate 5.1 audio if only DTS is active
Browse files Browse the repository at this point in the history
DTS only isn't properly handled by the audio class, plus an amp supporting DTS but not AC3 must be an extreme rarity these days anyway
  • Loading branch information
jyavenard authored and daniel-kristjansson committed Apr 5, 2012
1 parent 77e12eb commit 4221c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/audiogeneralsettings.cpp
Expand Up @@ -315,7 +315,7 @@ AudioOutputSettings AudioConfigSettings::UpdateCapabilities(

if (max_speakers > 2 && !bLPCM)
max_speakers = 2;
if (max_speakers == 2 && (bAC3 || bDTS))
if (max_speakers == 2 && bAC3)
max_speakers = 6;
}

Expand Down

0 comments on commit 4221c1c

Please sign in to comment.