mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed wrong value for TableIdBAT in libsi/si.h
This commit is contained in:
parent
ad19b83ff2
commit
089b421dca
@ -2371,3 +2371,6 @@ Michael Nork <mnork0@gmx.net>
|
|||||||
for suggesting to remove the compile time option VFAT to allow users of precompiled
|
for suggesting to remove the compile time option VFAT to allow users of precompiled
|
||||||
binary distributions to have full control over whether or not to use the --vfat
|
binary distributions to have full control over whether or not to use the --vfat
|
||||||
option at runtime
|
option at runtime
|
||||||
|
|
||||||
|
Winfried Köhler <w_koehl@gmx.de>
|
||||||
|
for fixing wrong value for TableIdBAT in libsi/si.h
|
||||||
|
2
HISTORY
2
HISTORY
@ -5809,6 +5809,7 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed a problem with calling isyslog() from within the SignalHandler() (thanks
|
- Fixed a problem with calling isyslog() from within the SignalHandler() (thanks
|
||||||
to Udo Richter).
|
to Udo Richter).
|
||||||
- Replaced the Finnish language code "smi" with "suo" (thanks to Rolf Ahrenberg).
|
- Replaced the Finnish language code "smi" with "suo" (thanks to Rolf Ahrenberg).
|
||||||
|
- Fixed wrong value for TableIdBAT in libsi/si.h (thanks to Winfried Köhler).
|
||||||
|
|
||||||
2008-09-06: Version 1.6.0-2
|
2008-09-06: Version 1.6.0-2
|
||||||
|
|
||||||
@ -5824,3 +5825,4 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed a problem with calling isyslog() from within the SignalHandler() (thanks
|
- Fixed a problem with calling isyslog() from within the SignalHandler() (thanks
|
||||||
to Udo Richter).
|
to Udo Richter).
|
||||||
- Replaced the Finnish language code "smi" with "suo" (thanks to Rolf Ahrenberg).
|
- Replaced the Finnish language code "smi" with "suo" (thanks to Rolf Ahrenberg).
|
||||||
|
- Fixed wrong value for TableIdBAT in libsi/si.h (thanks to Winfried Köhler).
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* the Free Software Foundation; either version 2 of the License, or *
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* $Id: si.h 1.17 2007/04/22 13:32:09 kls Exp $
|
* $Id: si.h 2.1 2008/09/06 12:44:06 kls Exp $
|
||||||
* *
|
* *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ enum TableId { TableIdPAT = 0x00, //program association section
|
|||||||
TableIdNIT_other = 0x41, //network information section, other network
|
TableIdNIT_other = 0x41, //network information section, other network
|
||||||
TableIdSDT = 0x42, //service description section
|
TableIdSDT = 0x42, //service description section
|
||||||
TableIdSDT_other = 0x46,
|
TableIdSDT_other = 0x46,
|
||||||
TableIdBAT = 0x46, //bouquet association section
|
TableIdBAT = 0x4A, //bouquet association section
|
||||||
TableIdEIT_presentFollowing = 0x4E, //event information section
|
TableIdEIT_presentFollowing = 0x4E, //event information section
|
||||||
TableIdEIT_presentFollowing_other = 0x4F,
|
TableIdEIT_presentFollowing_other = 0x4F,
|
||||||
//range from 0x50 to 0x5F
|
//range from 0x50 to 0x5F
|
||||||
|
Loading…
Reference in New Issue
Block a user