Skip to content

Commit

Permalink
Properly initialise HD and HDLL flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jyavenard committed Dec 13, 2010
1 parent 6cb7956 commit f3b05e0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mythtv/libs/libmyth/audiooutputsettings.cpp
Expand Up @@ -331,8 +331,11 @@ AudioOutputSettings* AudioOutputSettings::GetUsers(bool newcopy)
cur_channels = max_channels;

aosettings->SetBestSupportedChannels(cur_channels);
aosettings->m_AC3 = bAC3;
aosettings->m_DTS = bDTS;
aosettings->m_AC3 = bAC3;
aosettings->m_DTS = bDTS;
aosettings->m_HD = bHD;
aosettings->m_HDLL = bHDLL;

aosettings->m_LPCM = bLPCM;

return aosettings;
Expand Down

0 comments on commit f3b05e0

Please sign in to comment.