summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraustriancoder <austriancoder>2004-08-12 21:38:43 +0000
committeraustriancoder <austriancoder>2004-08-12 21:38:43 +0000
commit89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8 (patch)
treee71a448ab6be42dcc2b8175ad9076dea7b7756f0
parentea4d7c6dd0db6f0ed224a240a65bbbbaffedfb33 (diff)
downloadvdr-plugin-dxr3-89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8.tar.gz
vdr-plugin-dxr3-89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8.tar.bz2
fixed cDxr3Interface::SetAudioDigitalPCM()
-rw-r--r--HISTORY1
-rw-r--r--dxr3interface.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 7dbbe0c..684676e 100644
--- a/HISTORY
+++ b/HISTORY
@@ -235,3 +235,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- fixed output of anamorphic video, if tv aspect is configured to 16:9 in DVB setup menu
thanks Seppo Ingalsuo <seppo.ingalsuo@iki.fi>
- rewrote i18n support
+- fixed void cDxr3Interface::SetAudioDigitalPCM() - thanks to Stephan Skrodzki <skrodzki@contcast.de> for patch \ No newline at end of file
diff --git a/dxr3interface.c b/dxr3interface.c
index 052cd43..23437b1 100644
--- a/dxr3interface.c
+++ b/dxr3interface.c
@@ -174,7 +174,7 @@ void cDxr3Interface::SetAudioDigitalPCM()
int ioval = 0;
Lock();
- if (m_ExternalReleased && m_audioMode != EM8300_AUDIOMODE_DIGITALPCM)
+ if (!m_ExternalReleased && m_audioMode != EM8300_AUDIOMODE_DIGITALPCM)
{
int prevMode = m_audioMode;
m_audioMode = ioval = EM8300_AUDIOMODE_DIGITALPCM;