[vlc-commits] access: dvb: scan: add missing service types
Francois Cartegnie
git at videolan.org
Mon Apr 18 22:57:36 CEST 2016
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Apr 18 18:04:42 2016 +0200| [48b587bb762d739bfb0cbe83d505f8c8566faac5] | committer: Francois Cartegnie
access: dvb: scan: add missing service types
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=48b587bb762d739bfb0cbe83d505f8c8566faac5
---
modules/access/dvb/scan.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/modules/access/dvb/scan.c b/modules/access/dvb/scan.c
index e372fff..4c9c2d9 100644
--- a/modules/access/dvb/scan.c
+++ b/modules/access/dvb/scan.c
@@ -66,8 +66,10 @@ typedef enum
SERVICE_TYPE_RESERVED = 0x00,
SERVICE_TYPE_DIGITAL_TELEVISION = 0x01,
SERVICE_TYPE_DIGITAL_RADIO = 0x02,
+ SERVICE_TYPE_DIGITAL_MPEG2_HD = 0x11,
SERVICE_TYPE_DIGITAL_TELEVISION_AC_SD = 0x16,
SERVICE_TYPE_DIGITAL_TELEVISION_AC_HD = 0x19,
+ SERVICE_TYPE_DIGITAL_RADIO_AC = 0x0A,
} scan_service_type_t;
typedef struct scan_multiplex_t scan_multiplex_t;
@@ -204,8 +206,10 @@ static int scan_service_type_Supported( scan_service_type_t service_type )
{
case SERVICE_TYPE_DIGITAL_TELEVISION:
case SERVICE_TYPE_DIGITAL_RADIO:
+ case SERVICE_TYPE_DIGITAL_MPEG2_HD:
case SERVICE_TYPE_DIGITAL_TELEVISION_AC_SD:
case SERVICE_TYPE_DIGITAL_TELEVISION_AC_HD:
+ case SERVICE_TYPE_DIGITAL_RADIO_AC:
return true;
default:
break;
More information about the vlc-commits
mailing list