summaryrefslogtreecommitdiff
path: root/sys/dvb/parsechannels.c
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-10-23 21:37:46 -0700
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-10-23 21:46:27 -0700
commit3551d61af5519151641d5a309293edb0f398f219 (patch)
tree3efa0349d4e1428b0141e2d3bdd92a2d63682f43 /sys/dvb/parsechannels.c
parent67d0eefb8154f34c19a65bab6730819e0d6486c5 (diff)
downloadgstreamer-plugins-bad-3551d61af5519151641d5a309293edb0f398f219.tar.gz
dvb: fix gtk-doc syntax for wrongly formatted comments
Diffstat (limited to 'sys/dvb/parsechannels.c')
-rw-r--r--sys/dvb/parsechannels.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/dvb/parsechannels.c b/sys/dvb/parsechannels.c
index 70bb53b44..e683992ca 100644
--- a/sys/dvb/parsechannels.c
+++ b/sys/dvb/parsechannels.c
@@ -515,10 +515,8 @@ parse_channels_conf_from_file (GstElement * dvbbasebin, const gchar * filename,
g_hash_table_insert (params, g_strdup (satellite[j - 2]),
g_strdup (fields[j]));
}
- /**
- * Some ZAP format variations store freqs in MHz
- * but we internally use kHz for DVB-S/S2.
- */
+ /* Some ZAP format variations store freqs in MHz
+ * but we internally use kHz for DVB-S/S2. */
if (strlen (fields[1]) < 6) {
g_hash_table_insert (params, g_strdup ("frequency"),
g_strdup_printf ("%d", atoi (fields[1]) * 1000));
@@ -600,16 +598,14 @@ parse_and_configure_from_zap_conf_file (GstElement * dvbbasebin,
GHashTable *channels, *params;
gchar *type;
- /**
- * Assumptions are made here about a format that is loosely
+ /* Assumptions are made here about a format that is loosely
* defined. Particularly, we assume a given delivery system
* out of counting the number of fields per line. dvbsrc has
* smarter code to auto-detect a delivery system based on
* known-correct combinations of parameters so if you ever
* encounter cases where the delivery system is being
* wrongly set here, just remove the offending
- * g_object_set line and let dvbsrc work his magic out.
- */
+ * g_object_set line and let dvbsrc work his magic out. */
channels = parse_channels_conf_from_file (dvbbasebin, filename, error);