From 63006375b0a856647c72f97b3432c375d46cdde6 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 3 Apr 2004 13:59:57 +0000 Subject: [PATCH] ext/mad/gstid3tag.c: add missing 'new_media' argument (fixes #138168) Original commit message from CVS: reviewed by Benjamin Otte * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event): add missing 'new_media' argument (fixes #138168) * gst/matroska/matroska-demux.c: (gst_matroska_demux_handle_seek_event): add vararg terminator (fixes #138169) --- ChangeLog | 10 ++++++++++ ext/mad/gstid3tag.c | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 47dc62e..d5d8893 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2004-04-03 Tim-Phillip Müller + + reviewed by Benjamin Otte + + * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event): + add missing 'new_media' argument (fixes #138168) + * gst/matroska/matroska-demux.c: + (gst_matroska_demux_handle_seek_event): + add vararg terminator (fixes #138169) + 2004-04-02 David Schleef * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is diff --git a/ext/mad/gstid3tag.c b/ext/mad/gstid3tag.c index f9058a2..2d8c598 100644 --- a/ext/mad/gstid3tag.c +++ b/ext/mad/gstid3tag.c @@ -727,7 +727,8 @@ gst_id3_tag_handle_event (GstPad * pad, GstEvent * event) if (gst_event_discont_get_value (event, GST_FORMAT_BYTES, &value)) { value += tag->v1tag_size; - new = gst_event_new_discontinuous (GST_FORMAT_BYTES, value, 0); + new = + gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, value, 0); gst_data_unref (GST_DATA (event)); gst_pad_push (tag->srcpad, GST_DATA (new)); } else { -- 2.7.4