diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | sdt.c | 4 |
3 files changed, 5 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 59b1884d..c1dfecd1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3599,6 +3599,7 @@ Helmut Binder <cco@aon.at> for adding codes for more languages and special audio tracks for adding cMtdCamSlot::TsPostProcess() for adding cMtdHandler::StopDecrypting() + for adding support for detecting new channels broadcast in HEVC Ulrich Eckhardt <uli@uli-eckhardt.de> for reporting a problem with shutdown after user inactivity in case a plugin is @@ -9471,3 +9471,4 @@ Video Disk Recorder Revision History - Added codes for more languages and special audio tracks (thanks to Helmut Binder). - Added cMtdCamSlot::TsPostProcess() (thanks to Helmut Binder). - Added cMtdHandler::StopDecrypting() (thanks to Helmut Binder). +- Added support for detecting new channels broadcast in HEVC (thanks to Helmut Binder). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sdt.c 4.6 2020/05/04 08:50:20 kls Exp $ + * $Id: sdt.c 4.7 2020/06/16 14:41:32 kls Exp $ */ #include "sdt.h" @@ -113,6 +113,8 @@ void cSdtFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length case 0x05: // NVOD time-shifted service case 0x16: // digital SD television service case 0x19: // digital HD television service + case 0x1F: // HEVC digital television service + case 0x20: // HEVC UHD digital television service { char NameBuf[Utf8BufSize(1024)]; char ShortNameBuf[Utf8BufSize(1024)]; |