Skip to content

Commit

Permalink
Comment out unused variable in AudioConfigSettings.
Browse files Browse the repository at this point in the history
One less warning.  jya, I only commented out bDTS instead of removing
it entirely in case you have an intended use for it in the future.
  • Loading branch information
gigem committed Jun 19, 2013
1 parent cfd2ee8 commit 0c3f72f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/programs/mythfrontend/audiogeneralsettings.cpp
Expand Up @@ -276,7 +276,7 @@ AudioOutputSettings AudioConfigSettings::UpdateCapabilities(
return settings;

bool bAC3 = true;
bool bDTS = true;
//bool bDTS = true;
bool bLPCM = true;
bool bEAC3 = true;
bool bTRUEHD = true;
Expand All @@ -302,8 +302,8 @@ AudioOutputSettings AudioConfigSettings::UpdateCapabilities(

bAC3 = settingsdigital.canFeature(FEATURE_AC3) &&
m_AC3PassThrough->boolValue();
bDTS = settingsdigital.canFeature(FEATURE_DTS) &&
m_DTSPassThrough->boolValue();
//bDTS = settingsdigital.canFeature(FEATURE_DTS) &&
// m_DTSPassThrough->boolValue();
bLPCM = settings.canFeature(FEATURE_LPCM) &&
!gCoreContext->GetNumSetting("StereoPCM", false);
bEAC3 = settingsdigital.canFeature(FEATURE_EAC3) &&
Expand Down

0 comments on commit 0c3f72f

Please sign in to comment.