]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mpegts: move dvb_fe_delivery_system_t outside ENABLE_MPEGTS_DVB (it's used in tables...
authorJaroslav Kysela <perex@perex.cz>
Mon, 4 May 2015 18:08:39 +0000 (20:08 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 4 May 2015 18:08:39 +0000 (20:08 +0200)
src/input/mpegts/dvb.h

index dce993fb1251310efd89c5d557eb00d089f41bb9..513061dde31210395d65df51c10998d3efee88cf 100644 (file)
@@ -306,19 +306,7 @@ int dvb_table_remux
 
 extern htsmsg_t *satellites;
 
-/*
- *
- */
-#if ENABLE_MPEGTS_DVB
-
-typedef enum dvb_fe_type {
-  DVB_TYPE_NONE = 0,
-  DVB_TYPE_T = 1,              /* terrestrial */
-  DVB_TYPE_C,                  /* cable */
-  DVB_TYPE_S,                  /* satellite */
-  DVB_TYPE_ATSC,               /* terrestrial - north america */
-  DVB_TYPE_LAST = DVB_TYPE_ATSC
-} dvb_fe_type_t;
+/* Delivery systems */
 
 typedef enum dvb_fe_delivery_system {
   DVB_SYS_NONE            =    0,
@@ -345,6 +333,20 @@ typedef enum dvb_fe_delivery_system {
   DVB_SYS_UNKNOWN         = 9999
 } dvb_fe_delivery_system_t;
 
+/*
+ *
+ */
+#if ENABLE_MPEGTS_DVB
+
+typedef enum dvb_fe_type {
+  DVB_TYPE_NONE = 0,
+  DVB_TYPE_T = 1,              /* terrestrial */
+  DVB_TYPE_C,                  /* cable */
+  DVB_TYPE_S,                  /* satellite */
+  DVB_TYPE_ATSC,               /* terrestrial - north america */
+  DVB_TYPE_LAST = DVB_TYPE_ATSC
+} dvb_fe_type_t;
+
 typedef enum dvb_fe_spectral_inversion {
   DVB_INVERSION_UNDEFINED,
   DVB_INVERSION_AUTO,