diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | sdt.c | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -6462,3 +6462,4 @@ Video Disk Recorder Revision History and "ISO/IEC 13818-7 Audio with ADTS transport sytax" (suggested by Luis Fernandes). See man vdr(5) on how the APID section of channels has been extended to store this information. +- Added detecting channels that use service type 0x16. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sdt.c 2.4 2009/12/23 16:02:47 kls Exp $ + * $Id: sdt.c 2.5 2010/05/16 14:23:21 kls Exp $ */ #include "sdt.h" @@ -55,6 +55,7 @@ void cSdtFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length case 0x02: // digital radio sound service case 0x04: // NVOD reference service case 0x05: // NVOD time-shifted service + case 0x16: // digital SD television service case 0x19: // digital HD television service { char NameBuf[Utf8BufSize(1024)]; |