From 38d25c65c34aef67f90e50f0e35d01f1a72cf6a9 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Wed, 29 May 2019 01:35:17 +0200 Subject: [PATCH] doc: fix some incorrect gtk-doc links --- gst-libs/gst/vaapi/gstvaapiutils_x11.c | 2 +- gst-libs/gst/vaapi/gstvaapiwindow_glx.c | 8 ++++---- gst-libs/gst/vaapi/gstvaapiwindow_wayland.c | 2 +- gst-libs/gst/vaapi/gstvaapiwindow_x11.c | 8 ++++---- gst-libs/gst/vaapi/gstvaapiwindow_x11.h | 2 +- gst-libs/gst/vaapi/gstvaapiwindow_x11_priv.h | 4 ++-- gst/vaapi/gstvaapidecodebin.c | 2 +- gst/vaapi/gstvaapisink.c | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/gst-libs/gst/vaapi/gstvaapiutils_x11.c b/gst-libs/gst/vaapi/gstvaapiutils_x11.c index 0f3f4d9..741b9b3 100644 --- a/gst-libs/gst/vaapi/gstvaapiutils_x11.c +++ b/gst-libs/gst/vaapi/gstvaapiutils_x11.c @@ -70,7 +70,7 @@ static const int x11_event_mask = (KeyPressMask | KeyReleaseMask * %None, no specific colormap will be bound to the window. Also note * the default background color is black. * - * Return value: the newly created X #Window. + * Return value: the newly created X Window. */ Window x11_create_window (Display * dpy, guint w, guint h, guint vid, Colormap cmap) diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_glx.c b/gst-libs/gst/vaapi/gstvaapiwindow_glx.c index d2003df..245235e 100644 --- a/gst-libs/gst/vaapi/gstvaapiwindow_glx.c +++ b/gst-libs/gst/vaapi/gstvaapiwindow_glx.c @@ -58,7 +58,7 @@ struct _GstVaapiWindowGLXPrivate /** * GstVaapiWindowGLX: * - * An X11 #Window suitable for GLX rendering. + * An X11 Window suitable for GLX rendering. */ struct _GstVaapiWindowGLX { @@ -69,7 +69,7 @@ struct _GstVaapiWindowGLX /** * GstVaapiWindowGLXClass: * - * An X11 #Window suitable for GLX rendering. + * An X11 Window suitable for GLX rendering. */ struct _GstVaapiWindowGLXClass { @@ -361,9 +361,9 @@ error: /** * gst_vaapi_window_glx_new_with_xid: * @display: a #GstVaapiDisplay - * @xid: an X11 #Window id + * @xid: an X11 Window id * - * Creates a #GstVaapiWindow using the X11 #Window @xid. The caller + * Creates a #GstVaapiWindow using the X11 Window @xid. The caller * still owns the window and must call XDestroyWindow() when all * #GstVaapiWindow references are released. Doing so too early can * yield undefined behaviour. diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c b/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c index adb8a75..39a5e02 100644 --- a/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c +++ b/gst-libs/gst/vaapi/gstvaapiwindow_wayland.c @@ -128,7 +128,7 @@ struct _GstVaapiWindowWayland /** * GstVaapiWindowWaylandClass: * - * An Wayland #Window wrapper class. + * An Wayland Window wrapper class. */ struct _GstVaapiWindowWaylandClass { diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_x11.c b/gst-libs/gst/vaapi/gstvaapiwindow_x11.c index 217815c..7d9eea7 100644 --- a/gst-libs/gst/vaapi/gstvaapiwindow_x11.c +++ b/gst-libs/gst/vaapi/gstvaapiwindow_x11.c @@ -652,9 +652,9 @@ gst_vaapi_window_x11_new (GstVaapiDisplay * display, guint width, guint height) /** * gst_vaapi_window_x11_new_with_xid: * @display: a #GstVaapiDisplay - * @xid: an X11 #Window id + * @xid: an X11 Window id * - * Creates a #GstVaapiWindow using the X11 #Window @xid. The caller + * Creates a #GstVaapiWindow using the X11 Window @xid. The caller * still owns the window and must call XDestroyWindow() when all * #GstVaapiWindow references are released. Doing so too early can * yield undefined behaviour. @@ -675,11 +675,11 @@ gst_vaapi_window_x11_new_with_xid (GstVaapiDisplay * display, Window xid) * gst_vaapi_window_x11_get_xid: * @window: a #GstVaapiWindowX11 * - * Returns the underlying X11 #Window that was created by + * Returns the underlying X11 Window that was created by * gst_vaapi_window_x11_new() or that was bound with * gst_vaapi_window_x11_new_with_xid(). * - * Return value: the underlying X11 #Window bound to @window. + * Return value: the underlying X11 Window bound to @window. */ Window gst_vaapi_window_x11_get_xid (GstVaapiWindowX11 * window) diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_x11.h b/gst-libs/gst/vaapi/gstvaapiwindow_x11.h index 095a267..8626cb9 100644 --- a/gst-libs/gst/vaapi/gstvaapiwindow_x11.h +++ b/gst-libs/gst/vaapi/gstvaapiwindow_x11.h @@ -42,7 +42,7 @@ G_BEGIN_DECLS * GST_VAAPI_WINDOW_XWINDOW: * @window: a #GstVaapiWindow * - * Macro that evaluates to the underlying X11 #Window of @window + * Macro that evaluates to the underlying X11 Window of @window */ #define GST_VAAPI_WINDOW_XWINDOW(window) \ gst_vaapi_window_x11_get_xid (GST_VAAPI_WINDOW_X11 (window)) diff --git a/gst-libs/gst/vaapi/gstvaapiwindow_x11_priv.h b/gst-libs/gst/vaapi/gstvaapiwindow_x11_priv.h index 08bc074..06ce2e5 100644 --- a/gst-libs/gst/vaapi/gstvaapiwindow_x11_priv.h +++ b/gst-libs/gst/vaapi/gstvaapiwindow_x11_priv.h @@ -59,7 +59,7 @@ struct _GstVaapiWindowX11Private /** * GstVaapiWindowX11: * - * An X11 #Window wrapper. + * An X11 Window wrapper. */ struct _GstVaapiWindowX11 { @@ -70,7 +70,7 @@ struct _GstVaapiWindowX11 /** * GstVaapiWindowX11Class: * - * An X11 #Window wrapper class. + * An X11 Window wrapper class. */ struct _GstVaapiWindowX11Class { diff --git a/gst/vaapi/gstvaapidecodebin.c b/gst/vaapi/gstvaapidecodebin.c index 5b3f699..f807223 100644 --- a/gst/vaapi/gstvaapidecodebin.c +++ b/gst/vaapi/gstvaapidecodebin.c @@ -30,7 +30,7 @@ * the unregistered vaapidecode, a #GstQueue, and the * #GstVaapiPostproc, if it is available and functional in the setup. * - * It offers the functionality of #GstVaapiDecode and the many options + * It offers the functionality of GstVaapiDecoder and the many options * of #GstVaapiPostproc. * * diff --git a/gst/vaapi/gstvaapisink.c b/gst/vaapi/gstvaapisink.c index 06d5d67..e820f2c 100644 --- a/gst/vaapi/gstvaapisink.c +++ b/gst/vaapi/gstvaapisink.c @@ -26,7 +26,7 @@ * SECTION:element-vaapisink * @short_description: A VA-API based video sink * - * vaapisink renders video frames to a drawable (X #Window) on a local + * vaapisink renders video frames to a drawable (X Window) on a local * display using the Video Acceleration (VA) API. The element will * create its own internal window and render into it. * -- 2.7.4