summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--sdt.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 2ff351da..e51ab3e0 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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.
diff --git a/sdt.c b/sdt.c
index 1ed9b32a..5f2502b0 100644
--- a/sdt.c
+++ b/sdt.c
@@ -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)];