From 3a7f2a7040f0c3861a191884b771086b7dd619a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 10 Apr 2008 19:13:46 +0000 Subject: [PATCH] gst/gstdebugutils.h: Mention GstDebugGraphDetails enum type in doc blurb so we get a link to it in the docs (since th... Original commit message from CVS: * gst/gstdebugutils.h: (GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS), (GST_DEBUG_BIN_TO_DOT_FILE): Mention GstDebugGraphDetails enum type in doc blurb so we get a link to it in the docs (since these are macros the types of the arguments won't be shown in the docs otherwise). --- ChangeLog | 8 ++++++++ gst/gstdebugutils.h | 6 ++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1363b6c059..68e2b280c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-04-10 Tim-Philipp Müller + + * gst/gstdebugutils.h: (GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS), + (GST_DEBUG_BIN_TO_DOT_FILE): + Mention GstDebugGraphDetails enum type in doc blurb so we get a link + to it in the docs (since these are macros the types of the arguments + won't be shown in the docs otherwise). + 2008-04-10 Stefan Kost * gst/gstpad.c: diff --git a/gst/gstdebugutils.h b/gst/gstdebugutils.h index c84643d3ac..9c0d82fa73 100644 --- a/gst/gstdebugutils.h +++ b/gst/gstdebugutils.h @@ -59,7 +59,8 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai /** * GST_DEBUG_BIN_TO_DOT_FILE: * @bin: the top-level pipeline that should be analyzed - * @details: graph-details to show + * @details: details to show in the graph, e.g. #GST_DEBUG_GRAPH_SHOW_ALL or + * one or more other #GstDebugGraphDetails flags. * @file_name: output base filename (e.g. "myplayer") * * To aid debugging applications one can use this method to write out the whole @@ -78,7 +79,8 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai /** * GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS: * @bin: the top-level pipeline that should be analyzed - * @details: graph-details to show + * @details: details to show in the graph, e.g. #GST_DEBUG_GRAPH_SHOW_ALL or + * one or more other #GstDebugGraphDetails flags. * @file_name: output base filename (e.g. "myplayer") * * This works like _gst_debug_bin_to_dot_file(), but adds the current timestamp