summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeeshan.ali@nokia.com <zeeshan.ali@nokia.com>2007-03-22 16:15:52 +0000
committerEdward Hervey <bilboed@bilboed.com>2009-02-21 17:48:52 +0100
commita7afa08394e06d6b3b0981b1a15ae966b3aa1074 (patch)
tree08bfdaddad194011ce935a20a103af91ae4f2513
parent7b99c695aa59d5a18394b0ab2960f2c52a04c1b3 (diff)
downloadgst-plugins-bad-a7afa08394e06d6b3b0981b1a15ae966b3aa1074.tar.gz
gst-plugins-bad-a7afa08394e06d6b3b0981b1a15ae966b3aa1074.tar.bz2
gst-plugins-bad-a7afa08394e06d6b3b0981b1a15ae966b3aa1074.zip
[MOVED FROM GST-P-FARSIGHT] Some more code-cleanups
20070322161552-65035-bda96165e146b4f1d5fea1cc9576a7ab3abebc9e.gz
-rw-r--r--gst/rtpmux/gstrtpdtmfmux.c28
1 files changed, 9 insertions, 19 deletions
diff --git a/gst/rtpmux/gstrtpdtmfmux.c b/gst/rtpmux/gstrtpdtmfmux.c
index 93b99663..c03803ad 100644
--- a/gst/rtpmux/gstrtpdtmfmux.c
+++ b/gst/rtpmux/gstrtpdtmfmux.c
@@ -156,18 +156,13 @@ static GstFlowReturn
gst_rtp_dtmf_mux_chain (GstPad * pad, GstBuffer * buffer)
{
GstRTPDTMFMux *mux;
- gboolean drop = FALSE;
GstFlowReturn ret;
mux = GST_RTP_DTMF_MUX (gst_pad_get_parent (pad));
GST_OBJECT_LOCK (mux);
- if (mux->special_pad != NULL &&
- mux->special_pad != pad) {
- drop = TRUE;
- }
-
- if (drop) {
+ if (mux->special_pad != NULL && mux->special_pad != pad) {
+ /* Drop the buffer */
gst_buffer_unref (buffer);
ret = GST_FLOW_OK;
GST_OBJECT_UNLOCK (mux);
@@ -188,11 +183,10 @@ gst_rtp_dtmf_mux_chain (GstPad * pad, GstBuffer * buffer)
static void
gst_rtp_dtmf_mux_lock_stream (GstRTPDTMFMux *mux, GstPad * pad)
{
- if (mux->special_pad != NULL) {
+ if (mux->special_pad != NULL)
GST_WARNING_OBJECT (mux,
"Stream lock already acquired by pad %s",
GST_ELEMENT_NAME (mux->special_pad));
- }
else
mux->special_pad = gst_object_ref (pad);
@@ -201,18 +195,15 @@ gst_rtp_dtmf_mux_lock_stream (GstRTPDTMFMux *mux, GstPad * pad)
static void
gst_rtp_dtmf_mux_unlock_stream (GstRTPDTMFMux *mux, GstPad * pad)
{
- if (mux->special_pad == NULL) {
+ if (mux->special_pad == NULL)
GST_WARNING_OBJECT (mux,
"Stream lock not acquired, can't release it");
- }
- else if (pad != mux->special_pad) {
+ else if (pad != mux->special_pad)
GST_WARNING_OBJECT (mux,
"pad %s attempted to release Stream lock"
" which was acquired by pad %s", GST_ELEMENT_NAME (pad),
GST_ELEMENT_NAME (mux->special_pad));
- }
-
else {
gst_object_unref (mux->special_pad);
mux->special_pad = NULL;
@@ -239,16 +230,16 @@ gst_rtp_dtmf_mux_handle_stream_lock_event (GstRTPDTMFMux *mux, GstPad * pad,
}
static gboolean
-gst_rtp_dtmf_mux_handle_downstream_event (GstRTPDTMFMux *mux, GstPad * pad, GstEvent * event)
+gst_rtp_dtmf_mux_handle_downstream_event (GstRTPDTMFMux *mux,
+ GstPad * pad, GstEvent * event)
{
const GstStructure *structure;
gboolean ret = FALSE;
structure = gst_event_get_structure (event);
/* FIXME: is this event generic enough to be given a generic name? */
- if (structure && gst_structure_has_name (structure, "stream-lock")) {
+ if (structure && gst_structure_has_name (structure, "stream-lock"))
ret = gst_rtp_dtmf_mux_handle_stream_lock_event (mux, pad, structure);
- }
return ret;
}
@@ -258,10 +249,9 @@ gst_rtp_dtmf_mux_ignore_event (GstPad * pad, GstEvent * event)
{
gboolean ret;
- if (parent_class->sink_event_func) {
+ if (parent_class->sink_event_func)
/* Give the parent a chance to handle the event first */
ret = parent_class->sink_event_func (pad, event);
- }
else
ret = gst_pad_event_default (pad, event);