summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>2016-02-02 17:50:19 +0100
committerVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>2016-02-03 12:20:37 +0100
commit02c0e6c183531ebc4c05c782d95c7c2f5b629da9 (patch)
treef2c60b0e027f6061334ed226eda8218b9e3e9e01
parenta0b325c19afe0e67bb8093606425dda2723f0c2e (diff)
downloadgst-vaapi-02c0e6c183531ebc4c05c782d95c7c2f5b629da9.tar.gz
libs: trivial comment style fixes
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
-rw-r--r--gst-libs/gst/vaapi/gstvaapicodedbufferpool.c2
-rw-r--r--gst-libs/gst/vaapi/gstvaapidecoder_vp8.c4
-rw-r--r--gst-libs/gst/vaapi/gstvaapiimagepool.c2
-rw-r--r--gst-libs/gst/vaapi/gstvaapisurfacepool.c2
-rw-r--r--gst-libs/gst/vaapi/gstvaapitexture_egl.c4
-rw-r--r--gst-libs/gst/vaapi/gstvaapitexture_glx.c4
-rw-r--r--gst-libs/gst/vaapi/gstvaapiwindow_drm.c4
-rw-r--r--gst-libs/gst/vaapi/gstvaapiwindow_glx.c4
-rw-r--r--gst-libs/gst/vaapi/gstvaapiwindow_wayland.c4
9 files changed, 15 insertions, 15 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapicodedbufferpool.c b/gst-libs/gst/vaapi/gstvaapicodedbufferpool.c
index ef128495..9b09ec65 100644
--- a/gst-libs/gst/vaapi/gstvaapicodedbufferpool.c
+++ b/gst-libs/gst/vaapi/gstvaapicodedbufferpool.c
@@ -36,7 +36,7 @@
*/
struct _GstVaapiCodedBufferPool
{
- /*< private >*/
+ /*< private > */
GstVaapiVideoPool parent_instance;
GstVaapiContext *context;
diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_vp8.c b/gst-libs/gst/vaapi/gstvaapidecoder_vp8.c
index 3e078b02..3641a61b 100644
--- a/gst-libs/gst/vaapi/gstvaapidecoder_vp8.c
+++ b/gst-libs/gst/vaapi/gstvaapidecoder_vp8.c
@@ -69,7 +69,7 @@ struct _GstVaapiDecoderVp8Private
*/
struct _GstVaapiDecoderVp8
{
- /*< private >*/
+ /*< private > */
GstVaapiDecoder parent_instance;
GstVaapiDecoderVp8Private priv;
@@ -82,7 +82,7 @@ struct _GstVaapiDecoderVp8
*/
struct _GstVaapiDecoderVp8Class
{
- /*< private >*/
+ /*< private > */
GstVaapiDecoderClass parent_class;
};
diff --git a/gst-libs/gst/vaapi/gstvaapiimagepool.c b/gst-libs/gst/vaapi/gstvaapiimagepool.c
index 377f050c..a6b0b58f 100644
--- a/gst-libs/gst/vaapi/gstvaapiimagepool.c
+++ b/gst-libs/gst/vaapi/gstvaapiimagepool.c
@@ -41,7 +41,7 @@
*/
struct _GstVaapiImagePool
{
- /*< private >*/
+ /*< private > */
GstVaapiVideoPool parent_instance;
GstVideoFormat format;
diff --git a/gst-libs/gst/vaapi/gstvaapisurfacepool.c b/gst-libs/gst/vaapi/gstvaapisurfacepool.c
index 65bc65c6..c777194b 100644
--- a/gst-libs/gst/vaapi/gstvaapisurfacepool.c
+++ b/gst-libs/gst/vaapi/gstvaapisurfacepool.c
@@ -41,7 +41,7 @@
*/
struct _GstVaapiSurfacePool
{
- /*< private >*/
+ /*< private > */
GstVaapiVideoPool parent_instance;
GstVaapiChromaType chroma_type;
diff --git a/gst-libs/gst/vaapi/gstvaapitexture_egl.c b/gst-libs/gst/vaapi/gstvaapitexture_egl.c
index b350b22f..1df21e3a 100644
--- a/gst-libs/gst/vaapi/gstvaapitexture_egl.c
+++ b/gst-libs/gst/vaapi/gstvaapitexture_egl.c
@@ -50,7 +50,7 @@ typedef struct _GstVaapiTextureEGLClass GstVaapiTextureEGLClass;
*/
struct _GstVaapiTextureEGL
{
- /*< private >*/
+ /*< private > */
GstVaapiTexture parent_instance;
EglContext *egl_context;
@@ -66,7 +66,7 @@ struct _GstVaapiTextureEGL
*/
struct _GstVaapiTextureEGLClass
{
- /*< private >*/
+ /*< private > */
GstVaapiTextureClass parent_class;
};
diff --git a/gst-libs/gst/vaapi/gstvaapitexture_glx.c b/gst-libs/gst/vaapi/gstvaapitexture_glx.c
index dc931f74..b1e641bf 100644
--- a/gst-libs/gst/vaapi/gstvaapitexture_glx.c
+++ b/gst-libs/gst/vaapi/gstvaapitexture_glx.c
@@ -54,7 +54,7 @@ typedef struct _GstVaapiTextureGLXClass GstVaapiTextureGLXClass;
*/
struct _GstVaapiTextureGLX
{
- /*< private >*/
+ /*< private > */
GstVaapiTexture parent_instance;
GLContextState *gl_context;
@@ -69,7 +69,7 @@ struct _GstVaapiTextureGLX
*/
struct _GstVaapiTextureGLXClass
{
- /*< private >*/
+ /*< private > */
GstVaapiTextureClass parent_class;
};
diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_drm.c b/gst-libs/gst/vaapi/gstvaapiwindow_drm.c
index ae49a07c..fdbdd2d8 100644
--- a/gst-libs/gst/vaapi/gstvaapiwindow_drm.c
+++ b/gst-libs/gst/vaapi/gstvaapiwindow_drm.c
@@ -42,7 +42,7 @@ typedef struct _GstVaapiWindowDRMClass GstVaapiWindowDRMClass;
*/
struct _GstVaapiWindowDRM
{
- /*< private >*/
+ /*< private > */
GstVaapiWindow parent_instance;
};
@@ -53,7 +53,7 @@ struct _GstVaapiWindowDRM
*/
struct _GstVaapiWindowDRMClass
{
- /*< private >*/
+ /*< private > */
GstVaapiWindowClass parent_instance;
};
diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_glx.c b/gst-libs/gst/vaapi/gstvaapiwindow_glx.c
index 13eac3f4..32d3b7a0 100644
--- a/gst-libs/gst/vaapi/gstvaapiwindow_glx.c
+++ b/gst-libs/gst/vaapi/gstvaapiwindow_glx.c
@@ -64,7 +64,7 @@ struct _GstVaapiWindowGLXPrivate
*/
struct _GstVaapiWindowGLX
{
- /*< private >*/
+ /*< private > */
GstVaapiWindowX11 parent_instance;
GstVaapiWindowGLXPrivate priv;
@@ -77,7 +77,7 @@ struct _GstVaapiWindowGLX
*/
struct _GstVaapiWindowGLXClass
{
- /*< private >*/
+ /*< private > */
GstVaapiWindowX11Class parent_class;
GstVaapiObjectFinalizeFunc parent_finalize;
diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c b/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c
index aab48793..0b4dd2fa 100644
--- a/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c
+++ b/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c
@@ -120,7 +120,7 @@ struct _GstVaapiWindowWaylandPrivate
*/
struct _GstVaapiWindowWayland
{
- /*< private >*/
+ /*< private > */
GstVaapiWindow parent_instance;
GstVaapiWindowWaylandPrivate priv;
@@ -133,7 +133,7 @@ struct _GstVaapiWindowWayland
*/
struct _GstVaapiWindowWaylandClass
{
- /*< private >*/
+ /*< private > */
GstVaapiWindowClass parent_class;
};