From ccaadae49262ccfecdc64d802e9ddc738ec7a3c4 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Sat, 22 May 2010 23:26:16 +0300 Subject: [PATCH] caps: use our macros more often in the code --- gst/gstcaps.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gstcaps.c b/gst/gstcaps.c index 368326d009..c8dfcdf3dd 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