ext/mad/gstid3tag.c: that should be !=, not == (fixes #132519)
authorBenjamin Otte <otte@gnome.org>
Wed, 4 Feb 2004 22:17:16 +0000 (22:17 +0000)
committerBenjamin Otte <otte@gnome.org>
Wed, 4 Feb 2004 22:17:16 +0000 (22:17 +0000)
Original commit message from CVS:
2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>

* ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
that should be !=, not == (fixes #132519)

ChangeLog
ext/mad/gstid3tag.c

index 26e77f4..1c6f146 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
+
+       * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
+         that should be !=, not == (fixes #132519)
+
 2004-02-04  David Schleef  <ds@schleef.org>
 
        Make sure set_explicit_caps() is called before adding pad.
index bbd5374..d506e01 100644 (file)
@@ -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;
   }
 }