diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-08 13:47:02 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-08 13:47:02 +0100 |
commit | d08777ed87b68faca08959d561e1134563f91073 (patch) | |
tree | 344e4dd10758d19ff5c25940fb1a55d84a029eb7 /dvbplayer.c | |
parent | f7645402ffd4f79cc92278135bc29f1b477f3682 (diff) | |
download | vdr-d08777ed87b68faca08959d561e1134563f91073.tar.gz vdr-d08777ed87b68faca08959d561e1134563f91073.tar.bz2 |
Limited the Goto() call in cDvbPlayer::SetAudioTrack() to the main thread
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 9f4d97e6..dc206a39 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.34 2013/03/07 14:38:26 kls Exp $ + * $Id: dvbplayer.c 2.35 2013/03/08 13:44:19 kls Exp $ */ #include "dvbplayer.h" @@ -817,6 +817,8 @@ void cDvbPlayer::Goto(int Index, bool Still) void cDvbPlayer::SetAudioTrack(eTrackType Type, const tTrackId *TrackId) { + if (!cThread::IsMainThread()) + return; // only do this upon user interaction if (playMode == pmPlay) { if (!ptsIndex.IsEmpty()) { int Current, Total; |