ext/ogg/gstogmparse.c: Fix build after riff changes.
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 30 Jun 2005 09:22:30 +0000 (09:22 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 30 Jun 2005 09:22:30 +0000 (09:22 +0000)
Original commit message from CVS:
* ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
Fix build after riff changes.

ChangeLog
ext/ogg/gstogmparse.c

index eafc7dd..54afed0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
 
+       * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
+         Fix build after riff changes.
+
+2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
+
        * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
        (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
        (gst_riff_create_video_template_caps),
index afb4ee7..e5e3893 100644 (file)
@@ -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,