Added detecting channels that use service type 0x16

This commit is contained in:
Klaus Schmidinger 2010-05-16 14:25:58 +02:00
parent 7f3d21f867
commit c6d1b4574f
2 changed files with 3 additions and 1 deletions

View File

@ -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.

3
sdt.c
View File

@ -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)];