From: Stefan Kost Date: Sat, 22 May 2010 20:26:16 +0000 (+0300) Subject: caps: use our macros more often in the code X-Git-Tag: RELEASE-0.10.30~160 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ccaadae49262ccfecdc64d802e9ddc738ec7a3c4;p=platform%2Fupstream%2Fgstreamer.git caps: use our macros more often in the code --- diff --git a/gst/gstcaps.c b/gst/gstcaps.c index 368326d..c8dfcdf 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -1006,7 +1006,7 @@ gst_caps_is_any (const GstCaps * caps) { g_return_val_if_fail (GST_IS_CAPS (caps), FALSE); - return (caps->flags & GST_CAPS_FLAGS_ANY); + return (CAPS_IS_ANY (caps)); } /** @@ -1022,10 +1022,10 @@ gst_caps_is_empty (const GstCaps * caps) { g_return_val_if_fail (GST_IS_CAPS (caps), FALSE); - if (caps->flags & GST_CAPS_FLAGS_ANY) + if (CAPS_IS_ANY (caps)) return FALSE; - return (caps->structs == NULL) || (caps->structs->len == 0); + return CAPS_IS_EMPTY_SIMPLE (caps); } static gboolean