summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-02-20 14:07:52 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-02-20 14:07:52 +0100
commitca4da1845c678afcf886b3dbeb3ebfc414a5c691 (patch)
treec8caac28abfff6838cf3fd43b0d3cce59436d246 /device.h
parente8bd7c2369dfba7c9709fb6589a985c8e0448bf6 (diff)
downloadvdr-ca4da1845c678afcf886b3dbeb3ebfc414a5c691.tar.gz
vdr-ca4da1845c678afcf886b3dbeb3ebfc414a5c691.tar.bz2
Changed MAXDPIDS to 16 (8xAC3 + 8xDTS)
Diffstat (limited to 'device.h')
-rw-r--r--device.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/device.h b/device.h
index 1e747028..02fa35cc 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.56 2005/02/20 11:30:11 kls Exp $
+ * $Id: device.h 1.57 2005/02/20 14:06:28 kls Exp $
*/
#ifndef __DEVICE_H
@@ -68,11 +68,11 @@ enum eTrackType { ttNone,
ttAudioLast = ttAudioFirst + 31, // MAXAPIDS - 1
ttDolby,
ttDolbyFirst = ttDolby,
- ttDolbyLast = ttDolbyFirst + 8, // MAXDPIDS - 1
+ ttDolbyLast = ttDolbyFirst + 15, // MAXDPIDS - 1
/* future...
ttSubtitle,
ttSubtitleFirst = ttSubtitle,
- ttSubtitleLast = ttSubtitleFirst + 8, // MAXSPIDS - 1
+ ttSubtitleLast = ttSubtitleFirst + 7, // MAXSPIDS - 1
*/
ttMaxTrackTypes
};