From cdad19fd43e1273992f88769107f65cfc76522ba Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Sat, 23 Nov 2013 22:58:57 +1100 Subject: [PATCH] [860/906] docs: misc updates --- gst-libs/gst/gl/gstgldownload.h | 13 +++++-------- gst-libs/gst/gl/x11/gstglwindow_x11.h | 13 ++++++++++++- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/gst-libs/gst/gl/gstgldownload.h b/gst-libs/gst/gl/gstgldownload.h index 5696a87360..5b6558c898 100644 --- a/gst-libs/gst/gl/gstgldownload.h +++ b/gst-libs/gst/gl/gstgldownload.h @@ -24,7 +24,7 @@ #include #include -#include +#include G_BEGIN_DECLS @@ -37,16 +37,13 @@ GType gst_gl_download_get_type (void); #define GST_GL_DOWNLOAD_CAST(obj) ((GstGLDownload*)(obj)) /** - * GstGLDownload - * @parent: the parent object - * @lock: thread safety - * @display: a #GstGLDisplay - * @info: the output video info + * GstGLDownload: * - * Download information about GL textures + * Opaque #GstGLDownload object */ struct _GstGLDownload { + /* */ GObject parent; GMutex lock; @@ -56,7 +53,6 @@ struct _GstGLDownload /* output data */ GstVideoInfo info; - /* */ gpointer data[GST_VIDEO_MAX_PLANES]; gboolean initted; @@ -81,6 +77,7 @@ struct _GstGLDownload */ struct _GstGLDownloadClass { + /* */ GObjectClass object_class; }; diff --git a/gst-libs/gst/gl/x11/gstglwindow_x11.h b/gst-libs/gst/gl/x11/gstglwindow_x11.h index 97347e0959..68bdc7beb8 100644 --- a/gst-libs/gst/gl/x11/gstglwindow_x11.h +++ b/gst-libs/gst/gl/x11/gstglwindow_x11.h @@ -39,7 +39,13 @@ typedef struct _GstGLWindowX11 GstGLWindowX11; typedef struct _GstGLWindowX11Private GstGLWindowX11Private; typedef struct _GstGLWindowX11Class GstGLWindowX11Class; -struct _GstGLWindowX11 { +/** + * GstGLWindowX11: + * + * Opaque #GstGLWindowX11 object + */ +struct _GstGLWindowX11 +{ /*< private >*/ GstGLWindow parent; @@ -80,6 +86,11 @@ struct _GstGLWindowX11 { gpointer _reserved[GST_PADDING]; }; +/** + * GstGLWindowX11Class: + * + * Opaque #GstGLWindowX11Class object + */ struct _GstGLWindowX11Class { /*< private >*/ GstGLWindowClass parent_class;