mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
gst/gstpluginfeature.c: more meaningful debug output
Original commit message from CVS: * gst/gstpluginfeature.c: (gst_plugin_feature_finalize), (gst_plugin_feature_load): more meaningful debug output * configure.ac: * tests/Makefile.am: * tests/old/examples/Makefile.am: make make distcheck happy again
This commit is contained in:
parent
18361a05a6
commit
86deff7b5b
4 changed files with 16 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2005-12-12 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
|
||||||
|
(gst_plugin_feature_load):
|
||||||
|
more meaningful debug output
|
||||||
|
* configure.ac:
|
||||||
|
* tests/Makefile.am:
|
||||||
|
* tests/old/examples/Makefile.am:
|
||||||
|
make make distcheck happy again
|
||||||
|
|
||||||
2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
|
2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* plugins/elements/gsttypefindelement.c: (stop_typefinding):
|
* plugins/elements/gsttypefindelement.c: (stop_typefinding):
|
||||||
|
|
|
@ -68,7 +68,8 @@ gst_plugin_feature_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstPluginFeature *feature = GST_PLUGIN_FEATURE (object);
|
GstPluginFeature *feature = GST_PLUGIN_FEATURE (object);
|
||||||
|
|
||||||
GST_DEBUG ("finalizing feature %p", feature);
|
GST_DEBUG ("finalizing feature %p: '%s'", feature,
|
||||||
|
GST_PLUGIN_FEATURE_NAME (feature));
|
||||||
g_free (feature->name);
|
g_free (feature->name);
|
||||||
g_free (feature->plugin_name);
|
g_free (feature->plugin_name);
|
||||||
|
|
||||||
|
@ -103,7 +104,8 @@ gst_plugin_feature_load (GstPluginFeature * feature)
|
||||||
g_return_val_if_fail (feature != NULL, FALSE);
|
g_return_val_if_fail (feature != NULL, FALSE);
|
||||||
g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
|
g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
|
||||||
|
|
||||||
GST_DEBUG ("loading plugin for feature %p", feature);
|
GST_DEBUG ("loading plugin for feature %p; '%s'", feature,
|
||||||
|
GST_PLUGIN_FEATURE_NAME (feature));
|
||||||
if (feature->loaded)
|
if (feature->loaded)
|
||||||
return feature;
|
return feature;
|
||||||
|
|
||||||
|
|
|
@ -33,4 +33,3 @@ DIST_SUBDIRS = \
|
||||||
check \
|
check \
|
||||||
examples \
|
examples \
|
||||||
misc
|
misc
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,5 @@ dirs =
|
||||||
|
|
||||||
SUBDIRS = $(dirs)
|
SUBDIRS = $(dirs)
|
||||||
|
|
||||||
DIST_SUBDIRS = $(dirs)
|
DIST_SUBDIRS = $(dirs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue