summaryrefslogtreecommitdiff
path: root/gst/videoparsers/gsth263parse.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-02-15 12:56:55 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2012-02-15 12:56:55 +0100
commitf9c99b47136feb4740a82a244651001a7719e2bc (patch)
treeb30430c285719e92cb7059ead8a0346afb959357 /gst/videoparsers/gsth263parse.c
parenteff70374470cdc4459756d15bea61a83bac57ceb (diff)
downloadgstreamer-plugins-bad-f9c99b47136feb4740a82a244651001a7719e2bc.tar.gz
videoparsers: chain up to parent event handler
Chain up to the parent event handler to get the default behaviour instead of returning FALSE.
Diffstat (limited to 'gst/videoparsers/gsth263parse.c')
-rw-r--r--gst/videoparsers/gsth263parse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/videoparsers/gsth263parse.c b/gst/videoparsers/gsth263parse.c
index 3d749b2e4..a0ecb21b4 100644
--- a/gst/videoparsers/gsth263parse.c
+++ b/gst/videoparsers/gsth263parse.c
@@ -122,7 +122,6 @@ static gboolean
gst_h263_parse_sink_event (GstBaseParse * parse, GstEvent * event)
{
GstH263Parse *h263parse;
- gboolean res = FALSE;
h263parse = GST_H263_PARSE (parse);
@@ -138,12 +137,11 @@ gst_h263_parse_sink_event (GstBaseParse * parse, GstEvent * event)
break;
}
-
default:
break;
}
- return res;
+ return GST_BASE_PARSE_CLASS (parent_class)->event (parse, event);
}
static guint