summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/mpeg2enc/gstmpeg2enc.cc6
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 41dccb0d..4c79522d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-05-06 Wim Taymans <wim@fluendo.com>
+ * ext/mpeg2enc/gstmpeg2enc.cc:
+ Forward events first before deciding that negotiation was
+ not performed.
+
+2004-05-06 Wim Taymans <wim@fluendo.com>
+
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
First process the events before deciding that negotiation
was not performed.
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))) {