From 2c50be12b43ea60dc1c63747c0bdd25929ec685a Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 6 May 2004 09:21:25 +0000 Subject: ext/mpeg2enc/gstmpeg2enc.cc: Forward events first before deciding that negotiation was not performed. Original commit message from CVS: * ext/mpeg2enc/gstmpeg2enc.cc: Forward events first before deciding that negotiation was not performed. --- ext/mpeg2enc/gstmpeg2enc.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ext/mpeg2enc/gstmpeg2enc.cc') diff --git a/ext/mpeg2enc/gstmpeg2enc.cc b/ext/mpeg2enc/gstmpeg2enc.cc index f3bc8229..587ba55c 100644 --- a/ext/mpeg2enc/gstmpeg2enc.cc +++ b/ext/mpeg2enc/gstmpeg2enc.cc @@ -231,6 +231,12 @@ gst_mpeg2enc_loop (GstElement * element) /* make sure we've had data */ data = gst_pad_pull (enc->sinkpad); + /* forward any events */ + if (GST_IS_EVENT (data)) { + gst_pad_event_default (enc->sinkpad, GST_EVENT (data)); + return; + } + gst_pad_set_element_private (enc->sinkpad, data); if (!(caps = GST_PAD_CAPS (enc->sinkpad))) { -- cgit v1.2.1