summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gst/pcapparse/gstpcapparse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/pcapparse/gstpcapparse.c b/gst/pcapparse/gstpcapparse.c
index 485ec43d1..d7f8efdf8 100644
--- a/gst/pcapparse/gstpcapparse.c
+++ b/gst/pcapparse/gstpcapparse.c
@@ -624,7 +624,8 @@ gst_pcap_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
break;
case GST_EVENT_FLUSH_STOP:
gst_pcap_parse_reset (self);
- break;
+ /* Push event down the pipeline so that other elements stop flushing */
+ /* fall through */
default:
ret = gst_pad_push_event (self->src_pad, event);
break;