diff --git a/ChangeLog b/ChangeLog index 397fbd860e..ff0728829a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -2004-01-22 David Schleef +2004-01-27 David Schleef + + * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link): + Use gst_pad_try_set_caps_nonfixed(). + +2004-01-27 David Schleef * gst/ac3parse/gstac3parse.c: update to checklist 5 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5 diff --git a/gst/audioconvert/gstaudioconvert.c b/gst/audioconvert/gstaudioconvert.c index ee3976fad2..6d6b9414ef 100644 --- a/gst/audioconvert/gstaudioconvert.c +++ b/gst/audioconvert/gstaudioconvert.c @@ -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;