Skip to content

Commit

Permalink
Rename database settings MultiChannelsPCM to StereoPCM to avoid confl…
Browse files Browse the repository at this point in the history
…icts with behaviour introduced in [27318].

git-svn-id: http://svn.mythtv.org/svn/trunk@27331 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
jyavenard committed Nov 24, 2010
1 parent 975461f commit c72be4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audiooutputsettings.cpp
Expand Up @@ -308,7 +308,7 @@ AudioOutputSettings* AudioOutputSettings::GetUsers(bool newcopy)
gCoreContext->GetNumSetting("DTSPassThru", false);
bool bLPCM = aosettings->m_LPCM &&
(aosettings->m_passthrough == -1 ||
(bAdv && !gCoreContext->GetNumSetting("MultiChannelPCM", false)));
(bAdv && !gCoreContext->GetNumSetting("StereoPCM", false)));

if (max_channels > 2 && !bLPCM)
max_channels = 2;
Expand Down
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -420,8 +420,8 @@ HostCheckBox *AudioConfigSettings::DTSPassThrough()

HostCheckBox *AudioConfigSettings::MPCM()
{
HostCheckBox *gc = new HostCheckBox("MultiChannelPCM");
gc->setLabel(QObject::tr("Stereo PCM"));
HostCheckBox *gc = new HostCheckBox("StereoPCM");
gc->setLabel(QObject::tr("Stereo PCM Only"));
gc->setValue(false);
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
"only supports 2 channels PCM (typically an old HDMI 1.0 "
Expand Down

0 comments on commit c72be4a

Please sign in to comment.