mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
debugutils: Ensure we always expose a bin_to_dot_data implementation
Fixes a linking issue when building with `-Dgst_debug=false`. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5550>
This commit is contained in:
parent
ebd8e160fb
commit
03717697d9
1 changed files with 7 additions and 0 deletions
|
@ -922,6 +922,13 @@ gst_debug_bin_to_dot_file_with_ts (GstBin * bin,
|
||||||
}
|
}
|
||||||
#else /* !GST_DISABLE_GST_DEBUG */
|
#else /* !GST_DISABLE_GST_DEBUG */
|
||||||
#ifndef GST_REMOVE_DISABLED
|
#ifndef GST_REMOVE_DISABLED
|
||||||
|
|
||||||
|
gchar *
|
||||||
|
gst_debug_bin_to_dot_data (GstBin * bin, GstDebugGraphDetails details)
|
||||||
|
{
|
||||||
|
return g_strdup ("");
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
|
gst_debug_bin_to_dot_file (GstBin * bin, GstDebugGraphDetails details,
|
||||||
const gchar * file_name)
|
const gchar * file_name)
|
||||||
|
|
Loading…
Reference in a new issue