aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-10-29 21:36:04 +0800
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-10-29 21:36:04 +0800
commite701e1e8f6881ec4b162f18257322aea3023efac (patch)
tree2360cf7a8b2045582817727541ab07dd2682f2cd /src
parent5be490424430b0ab1425ac25f344a95b4b2d08c8 (diff)
downloadgsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar.gz
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar.bz2
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar.lz
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar.xz
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.tar.zst
gsoc2013-empathy-e701e1e8f6881ec4b162f18257322aea3023efac.zip
Fix build with gst 0.10
In gstreamer 0.10 gst_debug_bin_to_dot_file() does not exists, it is called _gst_debug_bin_to_dot_file(). However in both 0.10 and 1.0 there is GST_DEBUG_BIN_TO_DOT_FILE() macro that is no-op if gst is not build with --gst-enable-gst-debug.
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 95b01d3d1..6c7f4f2f0 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1393,7 +1393,7 @@ empathy_call_window_debug_gst_cb (GtkAction *action,
filename = g_strdup_printf ("%s-%" G_GINT64_FORMAT, prgname,
g_date_time_to_unix (date_time));
- gst_debug_bin_to_dot_file (GST_BIN (priv->pipeline),
+ GST_DEBUG_BIN_TO_DOT_FILE (GST_BIN (priv->pipeline),
GST_DEBUG_GRAPH_SHOW_ALL, filename);
dot_dir = g_getenv ("GST_DEBUG_DUMP_DOT_DIR");