summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-05-13 16:16:35 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-05-13 16:16:35 +0000
commit03271f091aca8885e1e5e4c6c550f8f8e9db63ec (patch)
tree080c96e3f2d4944bd75cdaf86c580d374cc4cf89
parentbb04b24eb2abec3afa493e58a87ab78c68026578 (diff)
downloadgstreamer-plugins-bad-03271f091aca8885e1e5e4c6c550f8f8e9db63ec.tar.gz
gst/real/gstrealvideodec.c: Add some debug for where we are searching for libraries.
Original commit message from CVS: * gst/real/gstrealvideodec.c: (open_library): Add some debug for where we are searching for libraries.
-rw-r--r--ChangeLog5
-rw-r--r--gst/real/gstrealvideodec.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a5fe62a6..b69e351b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
+ * gst/real/gstrealvideodec.c: (open_library):
+ Add some debug for where we are searching for libraries.
+
+2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
+
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
Actually add the do-lost property to the object.
diff --git a/gst/real/gstrealvideodec.c b/gst/real/gstrealvideodec.c
index be6292f13..3c471f5d9 100644
--- a/gst/real/gstrealvideodec.c
+++ b/gst/real/gstrealvideodec.c
@@ -432,6 +432,7 @@ open_library (GstRealVideoDec * dec, GstRealVideoDecHooks * hooks,
for (j = 0; split_names[j]; j++) {
gchar *codec = g_strconcat (split_path[i], "/", split_names[j], NULL);
+ GST_DEBUG_OBJECT (dec, "trying %s", codec);
module = g_module_open (codec, G_MODULE_BIND_LAZY);
g_free (codec);
if (module)
@@ -446,6 +447,8 @@ codec_search_done:
if (module == NULL)
goto could_not_open;
+ GST_DEBUG_OBJECT (dec, "module opened, finding symbols");
+
/* First try opening legacy symbols, if that fails try loading new symbols */
if (g_module_symbol (module, "RV20toYUV420Init", &rv_init) &&
g_module_symbol (module, "RV20toYUV420Free", &rv_free) &&