projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63a2fac
)
watchdog: fix event handling
author
David Schleef
<ds@schleef.org>
Wed, 27 Mar 2013 23:49:05 +0000
(16:49 -0700)
committer
David Schleef
<ds@schleef.org>
Tue, 9 Apr 2013 22:43:35 +0000
(15:43 -0700)
gst/debugutils/gstwatchdog.c
patch
|
blob
|
history
diff --git
a/gst/debugutils/gstwatchdog.c
b/gst/debugutils/gstwatchdog.c
index a3e5534d6dd1cb58055145c42dc508bf4400157a..3f245f6a95398ffbaf68aec550e214acdfd2fb1b 100644
(file)
--- a/
gst/debugutils/gstwatchdog.c
+++ b/
gst/debugutils/gstwatchdog.c
@@
-285,7
+285,9
@@
gst_watchdog_sink_event (GstBaseTransform * trans, GstEvent * event)
gst_watchdog_feed (watchdog);
- return TRUE;
+ return
+ GST_BASE_TRANSFORM_CLASS (gst_watchdog_parent_class)->sink_event (trans,
+ event);
}
static gboolean
@@
-297,7
+299,8
@@
gst_watchdog_src_event (GstBaseTransform * trans, GstEvent * event)
gst_watchdog_feed (watchdog);
- return TRUE;
+ return GST_BASE_TRANSFORM_CLASS (gst_watchdog_parent_class)->src_event (trans,
+ event);
}
static GstFlowReturn