summaryrefslogtreecommitdiff
path: root/dvbplayer.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-03-07 13:27:05 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-03-07 13:27:05 +0100
commita67fe0663d07a6e91bfe22f5a86ce73d73b17563 (patch)
tree681d373abe6b54363026b91c46131f03d5d40e77 /dvbplayer.c
parent16c931453db9723cee36d2b51502558fcd1921c5 (diff)
downloadvdr-a67fe0663d07a6e91bfe22f5a86ce73d73b17563.tar.gz
vdr-a67fe0663d07a6e91bfe22f5a86ce73d73b17563.tar.bz2
Fixed a possible deadlock when changing the audio track while replaying a recording
Diffstat (limited to 'dvbplayer.c')
-rw-r--r--dvbplayer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/dvbplayer.c b/dvbplayer.c
index e936ca2c..a4aa2dd7 100644
--- a/dvbplayer.c
+++ b/dvbplayer.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbplayer.c 2.32 2013/02/25 12:15:58 kls Exp $
+ * $Id: dvbplayer.c 2.33 2013/03/07 13:05:15 kls Exp $
*/
#include "dvbplayer.h"
@@ -810,8 +810,6 @@ void cDvbPlayer::Goto(int Index, bool Still)
void cDvbPlayer::SetAudioTrack(eTrackType Type, const tTrackId *TrackId)
{
- if (isPesRecording)
- return; // for some unknown reason this doesn't work with PES recordings - causes a segfault
if (playMode == pmPlay) {
int Current, Total;
if (GetIndex(Current, Total, true))