summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-02-06 11:44:56 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-02-06 11:44:56 +0100
commit506eb479a567ef00b4c2a332007ba3e03cbe21ef (patch)
tree9f16677ae8287546f620d364984a8ed5980e13a6 /device.h
parent1f677366c4c486eddce517d696d672acfd56db37 (diff)
downloadvdr-506eb479a567ef00b4c2a332007ba3e03cbe21ef.tar.gz
vdr-506eb479a567ef00b4c2a332007ba3e03cbe21ef.tar.bz2
Removed 'flags' from tTrackId
Diffstat (limited to 'device.h')
-rw-r--r--device.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/device.h b/device.h
index 0ded7daf..80587992 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.54 2005/02/06 11:25:37 kls Exp $
+ * $Id: device.h 1.55 2005/02/06 11:43:04 kls Exp $
*/
#ifndef __DEVICE_H
@@ -78,8 +78,6 @@ struct tTrackId {
uint16_t id; // The PES packet id or the PID.
char language[8]; // something like either "eng" or "deu/eng"
char description[32]; // something like "Dolby Digital 5.1"
- // for future use:
- uint32_t flags; // Used to further identify the actual track.
};
class cChannel;
@@ -322,11 +320,11 @@ protected:
///< Sets the current audio track to the given value.
public:
void ClrAvailableTracks(bool DescriptionsOnly = false);
- bool SetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL, uint32_t Flags = 0);
+ bool SetAvailableTrack(eTrackType Type, int Index, uint16_t Id, const char *Language = NULL, const char *Description = NULL);
///< Sets the track of the given Type and Index to the given values.
///< Type must be one of the basic eTrackType values, like ttAudio or ttDolby.
///< Index tells which track of the given basic type is meant.
- ///< If Id is 0 any existing id (and flags) will be left untouched and only the
+ ///< If Id is 0 any existing id will be left untouched and only the
///< given Language and Description will be set.
///< \return Returns true if the track was set correctly, false otherwise.
const tTrackId *GetTrack(eTrackType Type);