summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-08 10:13:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-08 10:13:38 +0100
commitb464dc407d5fba192abb0c9d4ca2f35fb438adcc (patch)
tree5de0d83cca2e323f706a2a5d91b42569d74dcdc8 /device.h
parentf7bf9b4090bb5b32a40133cc3b0fd3457efff262 (diff)
downloadvdr-b464dc407d5fba192abb0c9d4ca2f35fb438adcc.tar.gz
vdr-b464dc407d5fba192abb0c9d4ca2f35fb438adcc.tar.bz2
Added a mutex to synchronize cDevice::PlayPesPacket() and SetCurrentAudioTrack()
Diffstat (limited to 'device.h')
-rw-r--r--device.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/device.h b/device.h
index 6e1df435..eb409f9c 100644
--- a/device.h
+++ b/device.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.h 1.69 2006/01/07 14:50:45 kls Exp $
+ * $Id: device.h 1.70 2006/01/08 10:10:26 kls Exp $
*/
#ifndef __DEVICE_H
@@ -344,6 +344,7 @@ public:
private:
tTrackId availableTracks[ttMaxTrackTypes];
eTrackType currentAudioTrack;
+ cMutex mutexCurrentAudioTrack;
int currentAudioTrackMissingCount;
bool pre_1_3_19_PrivateStream;
protected: