AC_SUBST(XML_CFLAGS)
GST_CHECK_LIBHEADER(POPT, popt, poptAddItem,, popt.h, POPT_LIBS="-lpopt",
- AC_MSG_ERROR(
-[popt 1.6.3 or newer is required to build gstreamer. You can download the latest
-version from ftp://people.redhat.com/sopwith/popt/]))
+ AC_MSG_ERROR([popt 1.6.3 or newer is required to build gstreamer. You can
+download the latest version from ftp://people.redhat.com/sopwith/popt/]))
dnl Check for atomic.h
dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
void
gst_debug_set_categories (guint32 categories) {
_gst_debug_categories = categories;
- if (categories)
- GST_INFO (0, "setting DEBUG categories to 0x%08X",categories);
}
/**
void
gst_debug_enable_category (gint category) {
_gst_debug_categories |= (1 << category);
- if (_gst_debug_categories)
- GST_INFO (0, "setting DEBUG categories to 0x%08X",_gst_debug_categories);
}
/**
void
gst_debug_disable_category (gint category) {
_gst_debug_categories &= ~ (1 << category);
- if (_gst_debug_categories)
- GST_INFO (0, "setting DEBUG categories to 0x%08X",_gst_debug_categories);
}
void
gst_info_set_categories (guint32 categories) {
_gst_info_categories = categories;
- if (categories)
- GST_INFO (0, "setting INFO categories to 0x%08X",categories);
}
/**
void
gst_info_enable_category (gint category) {
_gst_info_categories |= (1 << category);
- if (_gst_info_categories)
- GST_INFO (0, "setting INFO categories to 0x%08X",_gst_info_categories);
}
/**
void
gst_info_disable_category (gint category) {
_gst_info_categories &= ~ (1 << category);
- if (_gst_info_categories)
- GST_INFO (0, "setting INFO categories to 0x%08X",_gst_info_categories);
}