+2005-06-25 Luca Ognibene <luogni@tin.it>
+
+ * ext/libpostproc/gstpostproc.c: (gst_ffmpeg_log_callback),
+ (plugin_init):
+ * ext/libpostproc/gstpostproc.h:
+ fix debug output
+
2005-06-25 Sebastien Cote <sc5@hermes.usherb.ca>
Reviewed by: Luca Ognibene <luogni@tin.it>
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV("I420"))
);
-GST_DEBUG_CATEGORY (postproc);
-#define GST_CAT_DEFAULT postproc
+GST_DEBUG_CATEGORY (postproc_debug);
+#define GST_CAT_DEFAULT postproc_debug
static void gst_postproc_class_init (GstPostProcClass * klass);
static void gst_postproc_base_init (GstPostProcClass * klass);
break;
}
- gst_debug_log_valist (postproc, gst_level, "", "", 0, NULL, fmt, vl);
+ gst_debug_log_valist (postproc_debug, gst_level, "", "", 0, NULL, fmt, vl);
}
#endif
static gboolean
plugin_init (GstPlugin * plugin)
{
- GST_DEBUG_CATEGORY_INIT (postproc, "postproc", 0, "video postprocessing elements");
+ GST_DEBUG_CATEGORY_INIT (postproc_debug, "postproc", 0, "video postprocessing elements");
#ifndef GST_DISABLE_GST_DEBUG
av_log_set_callback (gst_ffmpeg_log_callback);
#endif
#include <gst/gst.h>
-GST_DEBUG_CATEGORY_EXTERN (postproc);
-#define GST_CAT_DEFAULT postproc
+GST_DEBUG_CATEGORY_EXTERN (postproc_debug);
+#define GST_CAT_DEFAULT postproc_debug
G_BEGIN_DECLS