mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
doc: Add some missing doc strings
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8086>
This commit is contained in:
parent
b6d0c57087
commit
b08b49d548
3 changed files with 21 additions and 0 deletions
|
@ -42,6 +42,11 @@ G_BEGIN_DECLS
|
|||
typedef struct _GstLatencyTracer GstLatencyTracer;
|
||||
typedef struct _GstLatencyTracerClass GstLatencyTracerClass;
|
||||
|
||||
/**
|
||||
* GstLatencyTracerFlags:
|
||||
*
|
||||
* Since: 1.16
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
GST_LATENCY_TRACER_FLAG_PIPELINE = 1 << 0,
|
||||
|
@ -53,6 +58,8 @@ typedef enum
|
|||
* GstLatencyTracer:
|
||||
*
|
||||
* Opaque #GstLatencyTracer data structure
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
struct _GstLatencyTracer {
|
||||
GstTracer parent;
|
||||
|
|
|
@ -42,6 +42,14 @@ G_BEGIN_DECLS
|
|||
typedef struct _GstLeaksTracer GstLeaksTracer;
|
||||
typedef struct _GstLeaksTracerClass GstLeaksTracerClass;
|
||||
|
||||
/**
|
||||
* GstLeaksStackTraceFlags:
|
||||
* @GST_LEAKS_STACK_TRACE_DISABLED: no stack trace
|
||||
* @GST_LEAKS_STACK_TRACE_NONE: minimal stack trace
|
||||
* @GST_LEAKS_STACK_TRACE_FULL: full stack trace
|
||||
*
|
||||
* Since: 1.26
|
||||
*/
|
||||
typedef enum {
|
||||
GST_LEAKS_STACK_TRACE_DISABLED = -1,
|
||||
GST_LEAKS_STACK_TRACE_NONE = GST_STACK_TRACE_SHOW_NONE,
|
||||
|
|
|
@ -25,6 +25,12 @@
|
|||
* A tracing module that builds usage statistic for elements and pads.
|
||||
*/
|
||||
|
||||
/**
|
||||
* GstStatsTracer:
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue