diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/sndfile/gstsf.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-12-30 Jan Schmidt <thaytan@mad.scientist.com> + + * ext/sndfile/gstsf.c: (gst_sf_loop): + Fix warning about discarding const qualifier + 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr> * gst/cutter/gstcutter.c: diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index b9c630c9..6b185b8b 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -695,7 +695,7 @@ gst_sf_loop (GstElement *element) continue; if (!channel->caps_set) { - GstCaps *caps = GST_PAD_CAPS (GST_SF_CHANNEL (l)->pad); + GstCaps *caps = gst_caps_copy (GST_PAD_CAPS (GST_SF_CHANNEL (l)->pad)); if (!caps) caps = gst_caps_copy (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (GST_SF_CHANNEL (l)->pad))); |