mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Changed MAXDPIDS to 16 (8xAC3 + 8xDTS)
This commit is contained in:
parent
e8bd7c2369
commit
ca4da1845c
@ -274,6 +274,7 @@ Werner Fink <werner@suse.de>
|
|||||||
for pointing out that pesAssembler->Reset() needs to be called between subsequent
|
for pointing out that pesAssembler->Reset() needs to be called between subsequent
|
||||||
Transfer Modes
|
Transfer Modes
|
||||||
for suggestions that led to the addition of the 'Id' parameter to cAudio::Play().
|
for suggestions that led to the addition of the 'Id' parameter to cAudio::Play().
|
||||||
|
for pointing out that MAXDPIDS needs to be to 16 (8xAC3 + 8xDTS)
|
||||||
|
|
||||||
Rolf Hakenes <hakenes@hippomi.de>
|
Rolf Hakenes <hakenes@hippomi.de>
|
||||||
for providing 'libdtv' and adapting the EIT mechanisms to it
|
for providing 'libdtv' and adapting the EIT mechanisms to it
|
||||||
|
1
HISTORY
1
HISTORY
@ -3432,3 +3432,4 @@ Video Disk Recorder Revision History
|
|||||||
- Added support for setting the video display mode (thanks to Marco Schlüßler).
|
- Added support for setting the video display mode (thanks to Marco Schlüßler).
|
||||||
- The new setup option "DVB/Video display format" can be used to define which display
|
- The new setup option "DVB/Video display format" can be used to define which display
|
||||||
format to use for playing wide screen video on a 4:3 tv set.
|
format to use for playing wide screen video on a 4:3 tv set.
|
||||||
|
- Changed MAXDPIDS to 16 (8xAC3 + 8xDTS) (thanks to Werner Fink for pointing this out).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: channels.h 1.25 2005/01/16 13:46:41 kls Exp $
|
* $Id: channels.h 1.26 2005/02/20 14:05:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CHANNELS_H
|
#ifndef __CHANNELS_H
|
||||||
@ -31,7 +31,7 @@
|
|||||||
#define CHANNELSMOD_USER 2
|
#define CHANNELSMOD_USER 2
|
||||||
|
|
||||||
#define MAXAPIDS 32 // audio
|
#define MAXAPIDS 32 // audio
|
||||||
#define MAXDPIDS 8 // dolby
|
#define MAXDPIDS 16 // dolby (AC3 + DTS)
|
||||||
#define MAXSPIDS 8 // subtitles
|
#define MAXSPIDS 8 // subtitles
|
||||||
#define MAXCAIDS 8 // conditional access
|
#define MAXCAIDS 8 // conditional access
|
||||||
|
|
||||||
|
6
device.h
6
device.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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
|
#ifndef __DEVICE_H
|
||||||
@ -68,11 +68,11 @@ enum eTrackType { ttNone,
|
|||||||
ttAudioLast = ttAudioFirst + 31, // MAXAPIDS - 1
|
ttAudioLast = ttAudioFirst + 31, // MAXAPIDS - 1
|
||||||
ttDolby,
|
ttDolby,
|
||||||
ttDolbyFirst = ttDolby,
|
ttDolbyFirst = ttDolby,
|
||||||
ttDolbyLast = ttDolbyFirst + 8, // MAXDPIDS - 1
|
ttDolbyLast = ttDolbyFirst + 15, // MAXDPIDS - 1
|
||||||
/* future...
|
/* future...
|
||||||
ttSubtitle,
|
ttSubtitle,
|
||||||
ttSubtitleFirst = ttSubtitle,
|
ttSubtitleFirst = ttSubtitle,
|
||||||
ttSubtitleLast = ttSubtitleFirst + 8, // MAXSPIDS - 1
|
ttSubtitleLast = ttSubtitleFirst + 7, // MAXSPIDS - 1
|
||||||
*/
|
*/
|
||||||
ttMaxTrackTypes
|
ttMaxTrackTypes
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user