diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-09 09:46:28 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-09 09:46:28 +0200 |
commit | 6bed5368e69a777fb4edf5e57109821f4306edb4 (patch) | |
tree | c1c0c1616c05db088e697a15676cc18374ed37ff | |
parent | 4591dcad2c9d3853662051e5dcb26a07523f9c32 (diff) | |
download | vdr-6bed5368e69a777fb4edf5e57109821f4306edb4.tar.gz vdr-6bed5368e69a777fb4edf5e57109821f4306edb4.tar.bz2 |
Changed the legacy delivery system name "DMBTH" to "DTMB", and added names for DVBC_ANNEX_C and DVBC2
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | dvbdevice.c | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -9017,3 +9017,5 @@ Video Disk Recorder Revision History Frank Neumann). - Fixed selecting delivery system names in case of undefined indexes (thanks to Jasmin Jessich). +- Changed the legacy delivery system name "DMBTH" to "DTMB", and added names for + DVBC_ANNEX_C and DVBC2. diff --git a/dvbdevice.c b/dvbdevice.c index d293914b..489ac3cb 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 4.11 2017/05/09 09:42:40 kls Exp $ + * $Id: dvbdevice.c 4.12 2017/05/09 09:44:10 kls Exp $ */ #include "dvbdevice.h" @@ -1291,11 +1291,13 @@ const char *DeliverySystemNames[] = { "ISDBC", "ATSC", "ATSCMH", - "DMBTH", + "DTMB", "CMMB", "DAB", "DVB-T2", "TURBO", + "DVB-C", + "DVB-C2", NULL }; |