gst/audioconvert/gstaudioconvert.c: Use gst_pad_try_set_caps_nonfixed().
authorDavid Schleef <ds@schleef.org>
Tue, 27 Jan 2004 09:05:22 +0000 (09:05 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 27 Jan 2004 09:05:22 +0000 (09:05 +0000)
Original commit message from CVS:
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
Use gst_pad_try_set_caps_nonfixed().

ChangeLog
gst/audioconvert/gstaudioconvert.c

index 397fbd8..ff07288 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-2004-01-22  David Schleef  <ds@schleef.org>
+2004-01-27  David Schleef  <ds@schleef.org>
+
+       * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
+       Use gst_pad_try_set_caps_nonfixed().
+
+2004-01-27  David Schleef  <ds@schleef.org>
 
        * gst/ac3parse/gstac3parse.c: update to checklist 5
        * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
index ee3976f..6d6b941 100644 (file)
@@ -330,7 +330,7 @@ gst_audio_convert_link (GstPad *pad, const GstCaps *caps)
     GstStructure *structure = gst_caps_get_structure (othercaps, i);
     gst_structure_set (structure, "rate", G_TYPE_INT, ac_caps.rate, NULL);
   }
-  ret = gst_pad_try_set_caps (otherpad, othercaps);
+  ret = gst_pad_try_set_caps_nonfixed (otherpad, othercaps);
   gst_caps_free (othercaps);
   if (ret < GST_PAD_LINK_OK)
     return ret;