doc: fix some incorrect gtk-doc links

This commit is contained in:
Mathieu Duponchelle 2019-05-29 01:35:17 +02:00
parent 879e1081a0
commit 38d25c65c3
8 changed files with 15 additions and 15 deletions

View file

@ -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)

View file

@ -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.

View file

@ -128,7 +128,7 @@ struct _GstVaapiWindowWayland
/**
* GstVaapiWindowWaylandClass:
*
* An Wayland #Window wrapper class.
* An Wayland Window wrapper class.
*/
struct _GstVaapiWindowWaylandClass
{

View file

@ -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)

View file

@ -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))

View file

@ -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
{

View file

@ -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.
*
* <refsect2>

View file

@ -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.
*