From 2fb5f4a9ef457488ebc2fa6960819195dc7dd9b4 Mon Sep 17 00:00:00 2001 From: Christian Fredrik Kalager Schaller Date: Mon, 9 Jan 2012 15:58:45 +0000 Subject: [PATCH] Also add headerfile --- gst/gstdebugutils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/gstdebugutils.h b/gst/gstdebugutils.h index 1f18308..8420d3b 100644 --- a/gst/gstdebugutils.h +++ b/gst/gstdebugutils.h @@ -53,8 +53,8 @@ typedef enum { /********** pipeline graphs **********/ -void _gst_debug_bin_to_dot_file (GstBin *bin, GstDebugGraphDetails details, const gchar *file_name); -void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails details, const gchar *file_name); +void gst_debug_bin_to_dot_file (GstBin *bin, GstDebugGraphDetails details, const gchar *file_name); +void gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails details, const gchar *file_name); #ifndef GST_DISABLE_GST_DEBUG @@ -78,7 +78,7 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai * * Since: 0.10.15 */ -#define GST_DEBUG_BIN_TO_DOT_FILE(bin, details, file_name) _gst_debug_bin_to_dot_file (bin, details, file_name) +#define GST_DEBUG_BIN_TO_DOT_FILE(bin, details, file_name) gst_debug_bin_to_dot_file (bin, details, file_name) /** * GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS: @@ -92,7 +92,7 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai * * Since: 0.10.15 */ -#define GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(bin, details, file_name) _gst_debug_bin_to_dot_file_with_ts (bin, details, file_name) +#define GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(bin, details, file_name) gst_debug_bin_to_dot_file_with_ts (bin, details, file_name) #else /* GST_DISABLE_GST_DEBUG */ -- 2.7.4