mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
gtk-doc fixes; trailing-comma-in-enum fix.
Original commit message from CVS: * docs/plugins/gstreamer-plugins-sections.txt: * gst/gstdebugutils.h: * gst/gstxml.h: * plugins/elements/gstqueue.c: gtk-doc fixes; trailing-comma-in-enum fix.
This commit is contained in:
parent
0965b7202c
commit
b150d54e1c
5 changed files with 14 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
2007-11-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/plugins/gstreamer-plugins-sections.txt:
|
||||
* gst/gstdebugutils.h:
|
||||
* gst/gstxml.h:
|
||||
* plugins/elements/gstqueue.c:
|
||||
gtk-doc fixes; trailing-comma-in-enum fix.
|
||||
|
||||
2007-11-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gst.c: (gst_deinit):
|
||||
|
|
|
@ -40,6 +40,7 @@ gst_fake_sink_get_type
|
|||
<TITLE>fdsink</TITLE>
|
||||
GstFdSink
|
||||
<SUBSECTION Standard>
|
||||
GstFdSinkClass
|
||||
GST_FD_SINK
|
||||
GST_IS_FD_SINK
|
||||
GST_TYPE_FD_SINK
|
||||
|
@ -139,6 +140,7 @@ GST_IS_QUEUE_CLASS
|
|||
GST_TYPE_QUEUE
|
||||
<SUBSECTION Private>
|
||||
gst_queue_get_type
|
||||
GST_QUEUE_CLEAR_LEVEL
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
|
|
@ -54,7 +54,7 @@ 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_tmpl);
|
||||
void _gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails details, const gchar *file_name);
|
||||
|
||||
/**
|
||||
* GST_DEBUG_BIN_TO_DOT_FILE:
|
||||
|
@ -84,7 +84,7 @@ 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.
|
||||
*/
|
||||
#define GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(bin, details, file_tmpl) _gst_debug_bin_to_dot_file_with_ts (bin, details, file_tmpl)
|
||||
#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 */
|
||||
|
|
|
@ -43,7 +43,6 @@ typedef struct _GstXMLClass GstXMLClass;
|
|||
|
||||
/**
|
||||
* GstXML:
|
||||
* @object: parent object
|
||||
* @topelements: list of element nodes
|
||||
* @ns: name space
|
||||
*
|
||||
|
|
|
@ -118,7 +118,7 @@ enum
|
|||
ARG_MIN_THRESHOLD_BUFFERS,
|
||||
ARG_MIN_THRESHOLD_BYTES,
|
||||
ARG_MIN_THRESHOLD_TIME,
|
||||
ARG_LEAKY,
|
||||
ARG_LEAKY
|
||||
/* FILL ME */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue