From: Benjamin Otte Date: Mon, 24 Nov 2003 23:11:42 +0000 (+0000) Subject: License is GST_LICENSE, make own debugging category and fix some debug statements X-Git-Tag: CAPS-ROOT~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4db301b2e5f6e57fd188e392c8e0e66321345f94;p=platform%2Fupstream%2Fgst-plugins-good.git License is GST_LICENSE, make own debugging category and fix some debug statements Original commit message from CVS: License is GST_LICENSE, make own debugging category and fix some debug statements --- diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index 30d69d6..56fd5ad 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -27,6 +27,9 @@ #include "gstavidemux.h" #include "gstavimux.h" +GST_DEBUG_CATEGORY_STATIC (avidemux_debug); +#define GST_CAT_DEFAULT avidemux_debug + /* AviDemux signals and args */ enum { /* FILL ME */ @@ -1818,7 +1821,7 @@ gst_avi_demux_loop (GstElement *element) stream = &avi_demux->stream[stream_id]; - GST_DEBUG ("gst_avi_demux_chain: tag found %08x size %08x stream_id %d", + GST_LOG_OBJECT (avi_demux, "gst_avi_demux_chain: tag found %08x size %08x stream_id %d", chunk.id, chunk.size, stream_id); format = GST_FORMAT_TIME; @@ -1858,7 +1861,8 @@ gst_avi_demux_loop (GstElement *element) /* FIXME, do some flush event here */ stream->need_flush = FALSE; } - GST_DEBUG ("send stream %d: %" G_GINT64_FORMAT " %d %" G_GINT64_FORMAT " %08x", + GST_LOG_OBJECT (avi_demux, "send stream %d: %" + G_GINT64_FORMAT " %d %" G_GINT64_FORMAT " %08x", stream_id, next_ts, stream->current_frame - 1, stream->delay, chunk.size); @@ -1967,6 +1971,8 @@ plugin_init (GstPlugin *plugin) if (!gst_library_load("gstvideo")) return FALSE; + GST_DEBUG_CATEGORY_INIT (avidemux_debug, "avidemux", 0, "Demuxer for AVI video"); + if (!gst_element_register (plugin, "avidemux", GST_RANK_PRIMARY, GST_TYPE_AVI_DEMUX)) { return FALSE; @@ -1988,7 +1994,7 @@ GST_PLUGIN_DEFINE ( "AVI stream handling", plugin_init, VERSION, - "LGPL", + GST_LICENSE, GST_COPYRIGHT, GST_PACKAGE, GST_ORIGIN