diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-25 12:17:19 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-25 12:17:19 +0100 |
commit | 85027db9b986aa1c024048a7171b7e6706c07fb8 (patch) | |
tree | 3241d5fe9aaf97c79ae8186a82b16d0ac4b8a3a1 /dvbplayer.c | |
parent | 9e47d589e29d3bb4be4e533308563ba9c37c999d (diff) | |
download | vdr-85027db9b986aa1c024048a7171b7e6706c07fb8.tar.gz vdr-85027db9b986aa1c024048a7171b7e6706c07fb8.tar.bz2 |
Limited 'Fixed stuttering or asynchronous audio after changing the audio track' to TS recordings to avoid a segfault
Diffstat (limited to 'dvbplayer.c')
-rw-r--r-- | dvbplayer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dvbplayer.c b/dvbplayer.c index fda02158..e936ca2c 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.31 2013/02/20 09:03:49 kls Exp $ + * $Id: dvbplayer.c 2.32 2013/02/25 12:15:58 kls Exp $ */ #include "dvbplayer.h" @@ -810,6 +810,8 @@ 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)) |