gst/gstdebugutils.h: Add missing Since' markers to gtk-doc blurbs.

Original commit message from CVS:
* gst/gstdebugutils.h: (GstDebugGraphDetails),
(GST_DEBUG_BIN_TO_DOT_FILE):
Add missing Since' markers to gtk-doc blurbs.
This commit is contained in:
Tim-Philipp Müller 2008-06-26 12:24:08 +00:00
parent e123c66377
commit 890dd8b468
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2008-06-26 Tim-Philipp Müller <tim.muller at collabora co uk>
* gst/gstdebugutils.h: (GstDebugGraphDetails),
(GST_DEBUG_BIN_TO_DOT_FILE):
Add missing Since' markers to gtk-doc blurbs.
2008-06-26 Wim Taymans <wim.taymans@collabora.co.uk>
* tests/check/libs/transform1.c: (buffer_alloc_pt1),

View file

@ -39,6 +39,8 @@ G_BEGIN_DECLS
*
* Available details for pipeline graphs produced by GST_DEBUG_BIN_TO_DOT_FILE()
* and GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS().
*
* Since: 0.10.15
*/
typedef enum {
GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE = (1<<0),
@ -73,6 +75,8 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai
* The macro is only active if gstreamer is configured with
* &quot;--gst-enable-gst-debug&quot; and the environment variable
* GST_DEBUG_DUMP_DOT_DIR is set to a basepath (e.g. /tmp).
*
* 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)
@ -85,6 +89,8 @@ void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detai
*
* This works like _gst_debug_bin_to_dot_file(), but adds the current timestamp
* to the filename, so that it can be used to take multiple snapshots.
*
* 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)