From 49d755a02012600ea3cd5a53b7c68b5b452e7b9b Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 30 Jun 2005 09:22:30 +0000 Subject: [PATCH] ext/ogg/gstogmparse.c: Fix build after riff changes. Original commit message from CVS: * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain): Fix build after riff changes. --- ChangeLog | 5 +++++ ext/ogg/gstogmparse.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index eafc7dde10..54afed0874 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-30 Ronald S. Bultje + + * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain): + Fix build after riff changes. + 2005-06-30 Ronald S. Bultje * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), diff --git a/ext/ogg/gstogmparse.c b/ext/ogg/gstogmparse.c index afb4ee7c5b..e5e38930f1 100644 --- a/ext/ogg/gstogmparse.c +++ b/ext/ogg/gstogmparse.c @@ -580,7 +580,8 @@ gst_ogm_parse_chain (GstPad * pad, GstBuffer * buffer) caps = NULL; break; } - caps = gst_riff_create_audio_caps (codec_id, NULL, NULL, NULL); + caps = gst_riff_create_audio_caps (codec_id, + NULL, NULL, NULL, NULL, NULL); gst_caps_set_simple (caps, "channels", G_TYPE_INT, ogm->hdr.s.audio.channels, "rate", G_TYPE_INT, ogm->hdr.samples_per_unit, NULL); @@ -605,7 +606,7 @@ gst_ogm_parse_chain (GstPad * pad, GstBuffer * buffer) ogm->hdr.time_unit, 10000000. / ogm->hdr.time_unit, ogm->hdr.samples_per_unit, ogm->hdr.default_len, ogm->hdr.buffersize, ogm->hdr.bits_per_sample); - caps = gst_riff_create_video_caps (fcc, NULL, NULL, NULL); + caps = gst_riff_create_video_caps (fcc, NULL, NULL, NULL, NULL, NULL); gst_caps_set_simple (caps, "width", G_TYPE_INT, ogm->hdr.s.video.width, "height", G_TYPE_INT, ogm->hdr.s.video.height,