diff options
author | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2012-09-10 14:31:02 +0200 |
---|---|---|
committer | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2012-09-10 14:39:52 +0200 |
commit | a9f697375b2762e6db5b76f7c64089a9b9c32296 (patch) | |
tree | d3e840b50c5468a63bc55491f5b099ac7e4ce001 /gst/rtp | |
parent | 0ebfa38456fcb227bde08963fc0349e38964d02d (diff) |
gst: adjust comment style
Diffstat (limited to 'gst/rtp')
-rw-r--r-- | gst/rtp/gstrtpqdmdepay.c | 4 | ||||
-rw-r--r-- | gst/rtp/gstrtpsv3vdepay.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gst/rtp/gstrtpqdmdepay.c b/gst/rtp/gstrtpqdmdepay.c index 01397098a..2100b8956 100644 --- a/gst/rtp/gstrtpqdmdepay.c +++ b/gst/rtp/gstrtpqdmdepay.c @@ -121,7 +121,7 @@ gst_rtp_qdm2_depay_finalize (GObject * object) G_OBJECT_CLASS (parent_class)->finalize (object); } -// only on the sink +/* only on the sink */ gboolean gst_rtp_qdm2_depay_setcaps (GstBaseRTPDepayload * filter, GstCaps * caps) { @@ -129,7 +129,7 @@ gst_rtp_qdm2_depay_setcaps (GstBaseRTPDepayload * filter, GstCaps * caps) gint clock_rate; if (!gst_structure_get_int (structure, "clock-rate", &clock_rate)) - clock_rate = 44100; // default + clock_rate = 44100; /* default */ filter->clock_rate = clock_rate; /* will set caps later */ diff --git a/gst/rtp/gstrtpsv3vdepay.c b/gst/rtp/gstrtpsv3vdepay.c index b29fe021d..5b52fc2e2 100644 --- a/gst/rtp/gstrtpsv3vdepay.c +++ b/gst/rtp/gstrtpsv3vdepay.c @@ -116,7 +116,7 @@ gst_rtp_sv3v_depay_finalize (GObject * object) G_OBJECT_CLASS (parent_class)->finalize (object); } -// only on the sink +/* only on the sink */ gboolean gst_rtp_sv3v_depay_setcaps (GstBaseRTPDepayload * filter, GstCaps * caps) { @@ -124,7 +124,7 @@ gst_rtp_sv3v_depay_setcaps (GstBaseRTPDepayload * filter, GstCaps * caps) gint clock_rate; if (!gst_structure_get_int (structure, "clock-rate", &clock_rate)) - clock_rate = 90000; // default + clock_rate = 90000; /* default */ filter->clock_rate = clock_rate; /* will set caps later */ |