From 629772f735902e81d511ba3c39821b7e178184db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 28 Jan 2013 22:42:25 +0000 Subject: [PATCH] rtpmanager: use C89-style comments --- gst/rtpmanager/gstrtpssrcdemux.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/rtpmanager/gstrtpssrcdemux.c b/gst/rtpmanager/gstrtpssrcdemux.c index f4a5f22495..540558f7de 100644 --- a/gst/rtpmanager/gstrtpssrcdemux.c +++ b/gst/rtpmanager/gstrtpssrcdemux.c @@ -646,11 +646,11 @@ gst_rtp_ssrc_demux_chain (GstPad * pad, GstObject * parent, GstBuffer * buf) ret = gst_pad_push (srcpad, buf); if (ret != GST_FLOW_OK) { - // check if the ssrc still there, may have been removed + /* check if the ssrc still there, may have been removed */ GST_PAD_LOCK (demux); dpad = find_demux_pad_for_ssrc (demux, ssrc); if (dpad == NULL || dpad->rtp_pad != srcpad) { - // SSRC was removed during the push ... ignore the error + /* SSRC was removed during the push ... ignore the error */ ret = GST_FLOW_OK; } GST_PAD_UNLOCK (demux); @@ -723,11 +723,11 @@ gst_rtp_ssrc_demux_rtcp_chain (GstPad * pad, GstObject * parent, ret = gst_pad_push (srcpad, buf); if (ret != GST_FLOW_OK) { - // check if the ssrc still there, may have been removed + /* check if the ssrc still there, may have been removed */ GST_PAD_LOCK (demux); dpad = find_demux_pad_for_ssrc (demux, ssrc); if (dpad == NULL || dpad->rtcp_pad != srcpad) { - // SSRC was removed during the push ... ignore the error + /* SSRC was removed during the push ... ignore the error */ ret = GST_FLOW_OK; } GST_PAD_UNLOCK (demux);