caps: gst_caps_is_any() should return TRUE or FALSE

Not some flag value instead of TRUE. Fixes code like
gst_caps_is_any() == TRUE.

https://bugzilla.gnome.org//show_bug.cgi?id=731704
This commit is contained in:
Tim-Philipp Müller 2014-06-22 12:50:42 +01:00
parent 2092754ed1
commit 8e30a9462c

View file

@ -92,7 +92,7 @@ typedef struct _GstCapsImpl
/* same as gst_caps_is_any () */
#define CAPS_IS_ANY(caps) \
(GST_CAPS_FLAGS(caps) & GST_CAPS_FLAG_ANY)
(!!(GST_CAPS_FLAGS(caps) & GST_CAPS_FLAG_ANY))
/* same as gst_caps_is_empty () */
#define CAPS_IS_EMPTY(caps) \