diff options
Diffstat (limited to 'gst-libs/gst')
-rw-r--r-- | gst-libs/gst/media-info/media-info.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gst-libs/gst/media-info/media-info.c b/gst-libs/gst/media-info/media-info.c index 4e8f56b3..634a9f45 100644 --- a/gst-libs/gst/media-info/media-info.c +++ b/gst-libs/gst/media-info/media-info.c @@ -22,8 +22,21 @@ #include "media-info.h" static gboolean _gst_media_info_debug = TRUE; + +#ifdef G_HAVE_ISO_VARARGS +#define GMI_DEBUG(...) \ + G_STMT_START { \ + if (_gst_media_info_debug) { g_print ( __VA_ARGS__ ); } \ + } G_STMT_END +#elif defined(G_HAVE_GNUC_VARARGS) #define GMI_DEBUG(format, args...) \ - { if (_gst_media_info_debug) { g_print ( format , ## args ); }} + G_STMT_START { \ + if (_gst_media_info_debug) { g_print ( format , ## args ); } \ + } G_STMT_END +#else +#error Variable argument macros not supported by compiler +#endif + struct GstMediaInfoPriv { |