From 611d3c3d2363023b59953b5eecfbfe64d41f09b5 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 ++++++++++ gst/matroska/matroska-demux.c | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 47dc62ec88..d5d8893539 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/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index f0acf6f9e5..19e9ef2c55 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -1099,7 +1099,9 @@ gst_matroska_demux_handle_seek_event (GstMatroskaDemux * demux) if (!(event = gst_ebml_read_seek (ebml, entry->pos + demux->segment_start))) return FALSE; gst_event_unref (event); /* byte - we want time */ - event = gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, entry->time); + event = + gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, entry->time, + GST_FORMAT_UNDEFINED); /* forward to all src pads */ for (i = 0; i < demux->num_streams; i++) {