diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-29 13:34:50 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-29 13:34:50 +0200 |
commit | ce67b0e539766275ba9d6bc6d4e41825e50eb791 (patch) | |
tree | 5bcd3c6e4bd4cb61ca0c059d8192f882325b0619 /gst/gstpad.h | |
parent | 9aa97519382b3723ff49e785c96f5caf7e650e48 (diff) |
docs: update more documentation
Diffstat (limited to 'gst/gstpad.h')
-rw-r--r-- | gst/gstpad.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gst/gstpad.h b/gst/gstpad.h index 218132360..df6679446 100644 --- a/gst/gstpad.h +++ b/gst/gstpad.h @@ -29,6 +29,7 @@ typedef struct _GstPad GstPad; typedef struct _GstPadPrivate GstPadPrivate; typedef struct _GstPadClass GstPadClass; +typedef struct _GstPadProbeInfo GstPadProbeInfo; /** * GstPadDirection: @@ -527,7 +528,7 @@ typedef enum * * Info passed in the #GstPadProbeCallback. */ -typedef struct +struct _GstPadProbeInfo { GstPadProbeType type; gulong id; @@ -535,8 +536,9 @@ typedef struct guint64 offset; guint size; + /*< private >*/ gpointer _gst_reserved[GST_PADDING]; -} GstPadProbeInfo; +}; #define GST_PAD_PROBE_INFO_TYPE(d) ((d)->type) #define GST_PAD_PROBE_INFO_ID(d) ((d)->id) |