diff --git a/ChangeLog b/ChangeLog index 26e77f4bf0..1c6f14699c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-02-04 Benjamin Otte + + * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego): + that should be !=, not == (fixes #132519) + 2004-02-04 David Schleef Make sure set_explicit_caps() is called before adding pad. diff --git a/ext/mad/gstid3tag.c b/ext/mad/gstid3tag.c index bbd537458f..d506e017f9 100644 --- a/ext/mad/gstid3tag.c +++ b/ext/mad/gstid3tag.c @@ -766,7 +766,7 @@ gst_id3_tag_do_caps_nego (GstID3Tag *tag, GstBuffer *buffer) tag->parse_mode = GST_ID3_TAG_PARSE_TAG; return TRUE; } else { - return gst_pad_renegotiate (tag->srcpad) == GST_PAD_LINK_REFUSED; + return gst_pad_renegotiate (tag->srcpad) != GST_PAD_LINK_REFUSED; } }