Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb type: add support also for short names (without minus)
  • Loading branch information
perexg committed Dec 9, 2015
1 parent 8a2eab8 commit fe7ac7f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/input/mpegts/dvb_support.c
Expand Up @@ -859,7 +859,13 @@ const static struct strtab typetab[] = {
{"DVB-C", DVB_TYPE_C},
{"DVB-S", DVB_TYPE_S},
{"ATSC-T", DVB_TYPE_ATSC_T},
{"ATSC-C", DVB_TYPE_ATSC_C}
{"ATSC-C", DVB_TYPE_ATSC_C},
{"DVBT", DVB_TYPE_T},
{"DVBC", DVB_TYPE_C},
{"DVBS", DVB_TYPE_S},
{"ATSC", DVB_TYPE_ATSC_T},
{"ATSCT", DVB_TYPE_ATSC_T},
{"ATSCC", DVB_TYPE_ATSC_C}
};
dvb_str2val(type);

Expand Down

0 comments on commit fe7ac7f

Please sign in to comment.