diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-19 12:18:18 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-19 12:18:18 +0100 |
commit | f226c845835e6174f2635b63cf1f045cb437d1c6 (patch) | |
tree | aa075eb6d358f7c2d0b41440883b757e6f45e1b3 /dvbdevice.c | |
parent | f714ee0f55920c09738abf37d61d7f1295b5d2e7 (diff) | |
download | vdr-f226c845835e6174f2635b63cf1f045cb437d1c6.tar.gz vdr-f226c845835e6174f2635b63cf1f045cb437d1c6.tar.bz2 |
Avoiding unnecessary calls to SetPid() in cDvbDevice::SetAudioTrackDevice()
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 741848a8..83469339 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.120 2005/02/13 14:26:37 kls Exp $ + * $Id: dvbdevice.c 1.121 2005/02/19 11:52:44 kls Exp $ */ #include "dvbdevice.h" @@ -872,7 +872,7 @@ void cDvbDevice::SetAudioTrackDevice(eTrackType Type) const tTrackId *TrackId = GetTrack(Type); if (TrackId && TrackId->id) { if (IS_AUDIO_TRACK(Type)) { - if (pidHandles[ptAudio].pid) { + if (pidHandles[ptAudio].pid && pidHandles[ptAudio].pid != TrackId->id) { pidHandles[ptAudio].pid = TrackId->id; SetPid(&pidHandles[ptAudio], ptAudio, true); } |