mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
docs: remove library documentation which is non-public now
https://bugzilla.gnome.org/show_bug.cgi?id=759192
This commit is contained in:
parent
71f2f765f6
commit
c8d6febfab
6 changed files with 1 additions and 778 deletions
|
@ -1069,8 +1069,6 @@ AC_CONFIG_FILES([
|
|||
Makefile
|
||||
docs/Makefile
|
||||
docs/reference/Makefile
|
||||
docs/reference/libs/Makefile
|
||||
docs/reference/libs/libs-docs.xml
|
||||
docs/reference/plugins/Makefile
|
||||
docs/reference/plugins/plugins-docs.xml
|
||||
gst-libs/Makefile
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS = libs plugins
|
||||
SUBDIRS = plugins
|
||||
|
||||
-include $(top_srcdir)/git.mk
|
||||
|
|
|
@ -1,126 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
# We require automake 1.6 at least.
|
||||
AUTOMAKE_OPTIONS = 1.6
|
||||
|
||||
# This is a blank Makefile.am for using gtk-doc.
|
||||
# Copy this to your project's API docs directory and modify the variables to
|
||||
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
|
||||
# of using the various options.
|
||||
|
||||
# The name of the module, e.g. 'glib'.
|
||||
DOC_MODULE = libs
|
||||
|
||||
# The top-level SGML file. You can change this if you want to.
|
||||
DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.xml
|
||||
|
||||
# The directory containing the source code. Relative to $(srcdir).
|
||||
# gtk-doc will search all .c & .h files beneath here for inline comments
|
||||
# documenting the functions and macros.
|
||||
# e.g. DOC_SOURCE_DIR=../../../gtk
|
||||
DOC_SOURCE_DIR = $(top_srcdir)/gst-libs/gst/vaapi
|
||||
|
||||
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
|
||||
SCANGOBJ_OPTIONS = --type-init-func="g_type_init()"
|
||||
|
||||
# List files used by scanobj
|
||||
SCANOBJ_TYPES =
|
||||
|
||||
# Extra options to supply to gtkdoc-scan.
|
||||
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
|
||||
SCAN_OPTIONS = --deprecated-guards="GST_VAAPI_DISABLE_DEPRECATED"
|
||||
|
||||
# Extra options to supply to gtkdoc-mkdb.
|
||||
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
|
||||
MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=$(DOC_MODULE)
|
||||
|
||||
# Extra options to supply to gtkdoc-mktmpl
|
||||
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
|
||||
MKTMPL_OPTIONS =
|
||||
|
||||
# Extra options to supply to gtkdoc-fixref. Not normally needed.
|
||||
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
|
||||
FIXXREF_OPTIONS = \
|
||||
--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib \
|
||||
--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gobject \
|
||||
--extra-dir=$(CAIRO_PREFIX)/share/gtk-doc/html/cairo \
|
||||
--extra-dir=$(PANGO_PREFIX)/share/gtk-doc/html/pango
|
||||
|
||||
# Used for dependencies. The docs will be rebuilt if any of these change.
|
||||
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
|
||||
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
|
||||
HFILE_GLOB = $(top_srcdir)/gst-libs/gst/vaapi/*.h
|
||||
CFILE_GLOB = $(top_srcdir)/gst-libs/gst/vaapi/*.c
|
||||
|
||||
# Header files to ignore when scanning.
|
||||
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
|
||||
IGNORE_HFILES = \
|
||||
gstvaapi_priv.h \
|
||||
gstvaapicompat.h \
|
||||
gstvaapidebug.h \
|
||||
gstvaapidecoder_priv.h \
|
||||
gstvaapidisplay_priv.h \
|
||||
gstvaapidisplay_glx_priv.h \
|
||||
gstvaapidisplay_x11_priv.h \
|
||||
gstvaapiobject_priv.h \
|
||||
gstvaapiutils.h \
|
||||
gstvaapiutils_glx.h \
|
||||
gstvaapiutils_gst.h \
|
||||
gstvaapiutils_x11.h \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_HFILES = \
|
||||
$(NULL)
|
||||
|
||||
# Images to copy into HTML directory.
|
||||
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
|
||||
HTML_IMAGES = \
|
||||
$(NULL)
|
||||
|
||||
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
||||
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
|
||||
content_files = \
|
||||
$(NULL)
|
||||
|
||||
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
|
||||
# These files must be listed here *and* in content_files
|
||||
# e.g. expand_content_files=running.sgml
|
||||
expand_content_files = \
|
||||
$(NULL)
|
||||
|
||||
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
|
||||
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
|
||||
# signals and properties.
|
||||
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
|
||||
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
|
||||
|
||||
INCLUDES = \
|
||||
$(GLIB_CFLAGS) \
|
||||
$(GST_CFLAGS) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_srcdir)/gst-libs/gst/vaapi
|
||||
|
||||
GTKDOC_LIBS = \
|
||||
$(GLIB_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi.la
|
||||
|
||||
GTKDOC_LIBS += \
|
||||
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-x11.la
|
||||
|
||||
if USE_GLX
|
||||
GTKDOC_LIBS += \
|
||||
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx.la
|
||||
endif
|
||||
|
||||
# This includes the standard gtk-doc make rules, copied by gtkdocize.
|
||||
include $(top_srcdir)/gtk-doc.make
|
||||
|
||||
# Other files to distribute
|
||||
# e.g. EXTRA_DIST += version.xml.in
|
||||
EXTRA_DIST += \
|
||||
libs-docs.xml.in \
|
||||
$(NULL)
|
||||
|
||||
-include $(top_srcdir)/git.mk
|
|
@ -1,70 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
|
||||
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
|
||||
<bookinfo>
|
||||
<title>GStreamer VA-API Plugins @GST_API_VERSION@ Library Reference Manual</title>
|
||||
</bookinfo>
|
||||
|
||||
<para>
|
||||
To ease the creation of plugins, a Gstreamer-oriented library was created,
|
||||
which wraps <ulink rule="online-location" url="https://wiki.freedesktop.org/www/Software/vaapi/">VA-API</ulink>.
|
||||
</para>
|
||||
|
||||
<chapter>
|
||||
<title>gst-plugins-vaapi Library</title>
|
||||
<xi:include href="xml/videoformat.xml"/>
|
||||
<xi:include href="xml/gstvaapitypes.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay_x11.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay_glx.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay_egl.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay_drm.xml"/>
|
||||
<xi:include href="xml/gstvaapidisplay_wayland.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow_x11.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow_glx.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow_egl.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow_drm.xml"/>
|
||||
<xi:include href="xml/gstvaapiwindow_wayland.xml"/>
|
||||
<xi:include href="xml/gstvaapipixmap.xml"/>
|
||||
<xi:include href="xml/gstvaapipixmap_x11.xml"/>
|
||||
<xi:include href="xml/gstvaapiobject.xml"/>
|
||||
<xi:include href="xml/gstvaapisurface.xml"/>
|
||||
<xi:include href="xml/gstvaapiimage.xml"/>
|
||||
<xi:include href="xml/gstvaapisubpicture.xml"/>
|
||||
<xi:include href="xml/gstvaapitexture.xml"/>
|
||||
<xi:include href="xml/gstvaapitexture_egl.xml"/>
|
||||
<xi:include href="xml/gstvaapitexture_glx.xml"/>
|
||||
<xi:include href="xml/gstvaapiprofile.xml"/>
|
||||
<xi:include href="xml/gstvaapivideopool.xml"/>
|
||||
<xi:include href="xml/gstvaapisurfacepool.xml"/>
|
||||
<xi:include href="xml/gstvaapiimagepool.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_jpeg.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_mpeg2.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_mpeg4.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_h264.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_vc1.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_vp8.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_h265.xml"/>
|
||||
<xi:include href="xml/gstvaapidecoder_unit.xml"/>
|
||||
<xi:include href="xml/gstvaapisurfaceproxy.xml"/>
|
||||
<xi:include href="xml/gstvaapifilter.xml"/>
|
||||
<xi:include href="xml/gstvaapivalue.xml"/>
|
||||
<xi:include href="xml/gstvaapiparser_frame.xml"/>
|
||||
<xi:include href="xml/gstvaapicontext.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter id="object-tree">
|
||||
<title>Object Hierarchy</title>
|
||||
<xi:include href="xml/tree_index.sgml"/>
|
||||
</chapter>
|
||||
|
||||
<index id="api-index-full">
|
||||
<title>API Index</title>
|
||||
<xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
|
||||
</index>
|
||||
|
||||
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
|
||||
</book>
|
|
@ -1,579 +0,0 @@
|
|||
<SECTION>
|
||||
<FILE>videoformat</FILE>
|
||||
<TITLE>GstVideoFormat</TITLE>
|
||||
gst_vaapi_video_format_to_string
|
||||
gst_vaapi_video_format_from_va_fourcc
|
||||
gst_vaapi_video_format_from_va_format
|
||||
gst_vaapi_video_format_get_chroma_type
|
||||
gst_vaapi_video_format_get_score
|
||||
gst_vaapi_video_format_is_rgb
|
||||
gst_vaapi_video_format_is_yuv
|
||||
gst_vaapi_video_format_to_va_format
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapisurfacepool</FILE>
|
||||
<TITLE>GstVaapiSurfacePool</TITLE>
|
||||
GstVaapiSurfacePool
|
||||
gst_vaapi_surface_pool_new
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_SURFACE_POOL
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapivideopool</FILE>
|
||||
<TITLE>GstVaapiVideoPool</TITLE>
|
||||
GstVaapiVideoPool
|
||||
gst_vaapi_video_pool_get_display
|
||||
gst_vaapi_video_pool_get_object_type
|
||||
gst_vaapi_video_pool_get_object
|
||||
gst_vaapi_video_pool_put_object
|
||||
gst_vaapi_video_pool_add_object
|
||||
gst_vaapi_video_pool_add_objects
|
||||
gst_vaapi_video_pool_get_capacity
|
||||
gst_vaapi_video_pool_set_capacity
|
||||
gst_vaapi_video_pool_get_size
|
||||
gst_vaapi_video_pool_reserve
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_VIDEO_POOL
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay_x11</FILE>
|
||||
<TITLE>GstVaapiDisplayX11</TITLE>
|
||||
GstVaapiDisplayX11
|
||||
gst_vaapi_display_x11_new
|
||||
gst_vaapi_display_x11_new_with_display
|
||||
gst_vaapi_display_x11_get_display
|
||||
gst_vaapi_display_x11_get_screen
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DISPLAY_X11
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay_drm</FILE>
|
||||
<TITLE>GstVaapiDisplayDRM</TITLE>
|
||||
gst_vaapi_display_drm_new
|
||||
gst_vaapi_display_drm_new_with_device
|
||||
gst_vaapi_display_drm_get_device
|
||||
gst_vaapi_display_drm_get_device_path
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay_wayland</FILE>
|
||||
<TITLE>GstVaapiDisplayWayland</TITLE>
|
||||
gst_vaapi_display_wayland_new
|
||||
gst_vaapi_display_wayland_new_with_display
|
||||
gst_vaapi_display_wayland_get_display
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay_egl</FILE>
|
||||
<TITLE>GstVaapiDisplayEGL</TITLE>
|
||||
GstVaapiDisplayEGL
|
||||
gst_vaapi_display_egl_new
|
||||
gst_vaapi_display_egl_new_with_native_display
|
||||
gst_vaapi_display_egl_get_gl_display
|
||||
gst_vaapi_display_egl_set_gl_context
|
||||
gst_vaapi_display_egl_get_gl_context
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DISPLAY_EGL
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_x11</FILE>
|
||||
<TITLE>GstVaapiWindowX11</TITLE>
|
||||
GstVaapiWindowX11
|
||||
GST_VAAPI_WINDOW_XWINDOW
|
||||
gst_vaapi_window_x11_new
|
||||
gst_vaapi_window_x11_new_with_xid
|
||||
gst_vaapi_window_x11_get_xid
|
||||
gst_vaapi_window_x11_is_foreign_xid
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_WINDOW_X11
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_wayland</FILE>
|
||||
<TITLE>GstVaapiWindowWayland</TITLE>
|
||||
gst_vaapi_window_wayland_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_drm</FILE>
|
||||
<TITLE>GstVaapiWindowDRM</TITLE>
|
||||
gst_vaapi_window_drm_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_glx</FILE>
|
||||
<TITLE>GstVaapiWindowGLX</TITLE>
|
||||
gst_vaapi_window_glx_new
|
||||
gst_vaapi_window_glx_new_with_xid
|
||||
gst_vaapi_window_glx_get_context
|
||||
gst_vaapi_window_glx_set_context
|
||||
gst_vaapi_window_glx_make_current
|
||||
gst_vaapi_window_glx_swap_buffers
|
||||
gst_vaapi_window_glx_put_texture
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_egl</FILE>
|
||||
<TITLE>GstVaapiWindowEGL</TITLE>
|
||||
gst_vaapi_window_egl_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapipixmap_x11</FILE>
|
||||
<TITLE>GstVaapiPixmapX11</TITLE>
|
||||
GstVaapiPixmapX11
|
||||
GST_VAAPI_PIXMAP_XPIXMAP
|
||||
gst_vaapi_pixmap_x11_new
|
||||
gst_vaapi_pixmap_x11_new_with_xid
|
||||
gst_vaapi_pixmap_x11_get_xid
|
||||
gst_vaapi_pixmap_x11_is_foreign_xid
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_WINDOW_X11
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay_glx</FILE>
|
||||
<TITLE>GstVaapiDisplayGLX</TITLE>
|
||||
GstVaapiDisplayGLX
|
||||
gst_vaapi_display_glx_new
|
||||
gst_vaapi_display_glx_new_with_display
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DISPLAY_GLX
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow_glx</FILE>
|
||||
<TITLE>GstVaapiWindowGLX</TITLE>
|
||||
GstVaapiWindowGLX
|
||||
gst_vaapi_window_glx_new
|
||||
gst_vaapi_window_glx_new_with_xid
|
||||
gst_vaapi_window_glx_get_context
|
||||
gst_vaapi_window_glx_set_context
|
||||
gst_vaapi_window_glx_make_current
|
||||
gst_vaapi_window_glx_swap_buffers
|
||||
gst_vaapi_window_glx_put_texture
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_WINDOW_GLX
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidisplay</FILE>
|
||||
<TITLE>GstVaapiDisplay</TITLE>
|
||||
GstVaapiDisplayType
|
||||
GstVaapiDisplay
|
||||
GstVaapiDisplayInfo
|
||||
gst_vaapi_display_new_with_display
|
||||
gst_vaapi_display_ref
|
||||
gst_vaapi_display_unref
|
||||
gst_vaapi_display_replace
|
||||
gst_vaapi_display_lock
|
||||
gst_vaapi_display_unlock
|
||||
gst_vaapi_display_sync
|
||||
gst_vaapi_display_flush
|
||||
gst_vaapi_display_get_class_type
|
||||
gst_vaapi_display_get_display_type
|
||||
gst_vaapi_display_get_display_name
|
||||
gst_vaapi_display_get_display
|
||||
gst_vaapi_display_get_width
|
||||
gst_vaapi_display_get_height
|
||||
gst_vaapi_display_get_size
|
||||
gst_vaapi_display_get_pixel_aspect_ratio
|
||||
gst_vaapi_display_has_video_processing
|
||||
gst_vaapi_display_get_decode_profiles
|
||||
gst_vaapi_display_has_decoder
|
||||
gst_vaapi_display_get_encode_profiles
|
||||
gst_vaapi_display_has_encoder
|
||||
gst_vaapi_display_get_image_formats
|
||||
gst_vaapi_display_has_image_format
|
||||
gst_vaapi_display_get_subpicture_formats
|
||||
gst_vaapi_display_has_subpicture_format
|
||||
gst_vaapi_display_has_property
|
||||
gst_vaapi_display_get_property
|
||||
gst_vaapi_display_set_property
|
||||
gst_vaapi_display_get_render_mode
|
||||
gst_vaapi_display_set_render_mode
|
||||
gst_vaapi_display_get_rotation
|
||||
gst_vaapi_display_set_rotation
|
||||
gst_vaapi_display_get_vendor_string
|
||||
gst_vaapi_display_has_opengl
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DISPLAY
|
||||
GST_VAAPI_DISPLAY_GET_CLASS_TYPE
|
||||
GST_VAAPI_DISPLAY_VADISPLAY_TYPE
|
||||
GST_VAAPI_DISPLAY_VADISPLAY
|
||||
GST_VAAPI_DISPLAY_LOCK
|
||||
GST_VAAPI_DISPLAY_UNLOCK
|
||||
GST_VAAPI_DISPLAY_PROP_RENDER_MODE
|
||||
GST_VAAPI_DISPLAY_PROP_ROTATION
|
||||
GST_VAAPI_DISPLAY_PROP_HUE
|
||||
GST_VAAPI_DISPLAY_PROP_SATURATION
|
||||
GST_VAAPI_DISPLAY_PROP_BRIGHTNESS
|
||||
GST_VAAPI_DISPLAY_PROP_CONTRAST
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiimagepool</FILE>
|
||||
<TITLE>GstVaapiImagePool</TITLE>
|
||||
GstVaapiImagePool
|
||||
gst_vaapi_image_pool_new
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_IMAGE_POOL
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapitypes</FILE>
|
||||
<TITLE>Basic data structures</TITLE>
|
||||
GstVaapiID
|
||||
GST_VAAPI_ID_FORMAT
|
||||
GST_VAAPI_ID_ARGS
|
||||
GstVaapiPoint
|
||||
GstVaapiRectangle
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapipixmap</FILE>
|
||||
<TITLE>GstVaapiPixmap</TITLE>
|
||||
GstVaapiPixmap
|
||||
gst_vaapi_pixmap_ref
|
||||
gst_vaapi_pixmap_unref
|
||||
gst_vaapi_pixmap_replace
|
||||
gst_vaapi_pixmap_get_format
|
||||
gst_vaapi_pixmap_get_width
|
||||
gst_vaapi_pixmap_get_height
|
||||
gst_vaapi_pixmap_get_size
|
||||
gst_vaapi_pixmap_put_surface
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_PIXMAP
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiwindow</FILE>
|
||||
<TITLE>GstVaapiWindow</TITLE>
|
||||
GstVaapiWindow
|
||||
gst_vaapi_window_get_display
|
||||
gst_vaapi_window_show
|
||||
gst_vaapi_window_hide
|
||||
gst_vaapi_window_get_fullscreen
|
||||
gst_vaapi_window_set_fullscreen
|
||||
gst_vaapi_window_get_width
|
||||
gst_vaapi_window_get_height
|
||||
gst_vaapi_window_get_size
|
||||
gst_vaapi_window_set_width
|
||||
gst_vaapi_window_set_height
|
||||
gst_vaapi_window_set_size
|
||||
gst_vaapi_window_put_pixmap
|
||||
gst_vaapi_window_put_surface
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_WINDOW
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiobject</FILE>
|
||||
<TITLE>GstVaapiObject</TITLE>
|
||||
GstVaapiObject
|
||||
gst_vaapi_object_get_display
|
||||
gst_vaapi_object_lock_display
|
||||
gst_vaapi_object_unlock_display
|
||||
gst_vaapi_object_get_id
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_OBJECT
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiimage</FILE>
|
||||
GST_VAAPI_IMAGE_FORMAT
|
||||
GST_VAAPI_IMAGE_WIDTH
|
||||
GST_VAAPI_IMAGE_HEIGHT
|
||||
<TITLE>GstVaapiImage</TITLE>
|
||||
GstVaapiImage
|
||||
gst_vaapi_image_new
|
||||
gst_vaapi_image_new_with_image
|
||||
gst_vaapi_image_get_id
|
||||
gst_vaapi_image_get_image
|
||||
gst_vaapi_image_get_format
|
||||
gst_vaapi_image_get_width
|
||||
gst_vaapi_image_get_height
|
||||
gst_vaapi_image_get_size
|
||||
gst_vaapi_image_is_linear
|
||||
gst_vaapi_image_is_mapped
|
||||
gst_vaapi_image_map
|
||||
gst_vaapi_image_unmap
|
||||
gst_vaapi_image_get_plane_count
|
||||
gst_vaapi_image_get_plane
|
||||
gst_vaapi_image_get_pitch
|
||||
gst_vaapi_image_get_data_size
|
||||
gst_vaapi_image_get_buffer
|
||||
gst_vaapi_image_update_from_buffer
|
||||
gst_vaapi_image_copy
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_IMAGE
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapisurface</FILE>
|
||||
GstVaapiChromaType
|
||||
GstVaapiSurfaceStatus
|
||||
GstVaapiSurfaceRenderFlags
|
||||
<TITLE>GstVaapiSurface</TITLE>
|
||||
GstVaapiSurface
|
||||
gst_vaapi_surface_new
|
||||
gst_vaapi_surface_new_with_format
|
||||
gst_vaapi_surface_get_id
|
||||
gst_vaapi_surface_get_chroma_type
|
||||
gst_vaapi_surface_get_format
|
||||
gst_vaapi_surface_get_width
|
||||
gst_vaapi_surface_get_height
|
||||
gst_vaapi_surface_get_size
|
||||
gst_vaapi_surface_derive_image
|
||||
gst_vaapi_surface_get_image
|
||||
gst_vaapi_surface_put_image
|
||||
gst_vaapi_surface_associate_subpicture
|
||||
gst_vaapi_surface_deassociate_subpicture
|
||||
gst_vaapi_surface_sync
|
||||
gst_vaapi_surface_query_status
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_SURFACE
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapisubpicture</FILE>
|
||||
<TITLE>GstVaapiSubpicture</TITLE>
|
||||
GstVaapiSubpicture
|
||||
gst_vaapi_subpicture_new
|
||||
gst_vaapi_subpicture_new_from_overlay_rectangle
|
||||
gst_vaapi_subpicture_get_id
|
||||
gst_vaapi_subpicture_get_flags
|
||||
gst_vaapi_subpicture_get_global_alpha
|
||||
gst_vaapi_subpicture_set_global_alpha
|
||||
gst_vaapi_subpicture_get_image
|
||||
gst_vaapi_subpicture_set_image
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_SUBPICTURE
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiprofile</FILE>
|
||||
<TITLE>GstVaapiProfile</TITLE>
|
||||
GstVaapiCodec
|
||||
GstVaapiProfile
|
||||
GstVaapiEntrypoint
|
||||
gst_vaapi_profile
|
||||
gst_vaapi_profile_from_caps
|
||||
gst_vaapi_profile_get_va_profile
|
||||
gst_vaapi_profile_get_caps
|
||||
gst_vaapi_profile_get_codec
|
||||
gst_vaapi_entrypoint
|
||||
gst_vaapi_entrypoint_get_va_entrypoint
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapitexture</FILE>
|
||||
<TITLE>GstVaapiTexture</TITLE>
|
||||
GstVaapiTexture
|
||||
gst_vaapi_texture_new
|
||||
gst_vaapi_texture_new_wrapped
|
||||
gst_vaapi_texture_ref
|
||||
gst_vaapi_texture_unref
|
||||
gst_vaapi_texture_replace
|
||||
gst_vaapi_texture_get_id
|
||||
gst_vaapi_texture_get_target
|
||||
gst_vaapi_texture_get_format
|
||||
gst_vaapi_texture_get_width
|
||||
gst_vaapi_texture_get_height
|
||||
gst_vaapi_texture_get_size
|
||||
gst_vaapi_texture_get_orientation_flags
|
||||
gst_vaapi_texture_set_orientation_flags
|
||||
gst_vaapi_texture_put_surface
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapitexture_egl</FILE>
|
||||
<TITLE>GstVaapiTextureEGL</TITLE>
|
||||
gst_vaapi_texture_egl_new
|
||||
gst_vaapi_texture_egl_new_wrapped
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapitexture_glx</FILE>
|
||||
<TITLE>GstVaapiTextureGLX</TITLE>
|
||||
gst_vaapi_texture_glx_new
|
||||
gst_vaapi_texture_glx_new_wrapped
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder</FILE>
|
||||
GstVaapiDecoderStatus
|
||||
<TITLE>GstVaapiDecoder</TITLE>
|
||||
GstVaapiDecoder
|
||||
gst_vaapi_decoder_get_caps
|
||||
gst_vaapi_decoder_get_codec
|
||||
gst_vaapi_decoder_get_codec_state
|
||||
gst_vaapi_decoder_put_buffer
|
||||
gst_vaapi_decoder_get_surface
|
||||
gst_vaapi_decoder_get_frame
|
||||
gst_vaapi_decoder_get_frame_with_timeout
|
||||
gst_vaapi_decoder_parse
|
||||
gst_vaapi_decoder_decode
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DECODER
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_jpeg</FILE>
|
||||
<TITLE>GstVaapiDecoderJpeg</TITLE>
|
||||
GstVaapiDecoderJpeg
|
||||
gst_vaapi_decoder_jpeg_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_mpeg2</FILE>
|
||||
<TITLE>GstVaapiDecoderMpeg2</TITLE>
|
||||
GstVaapiDecoderMpeg2
|
||||
gst_vaapi_decoder_mpeg2_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_mpeg4</FILE>
|
||||
<TITLE>GstVaapiDecoderMpeg4</TITLE>
|
||||
GstVaapiDecoderMpeg4
|
||||
gst_vaapi_decoder_mpeg4_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_h264</FILE>
|
||||
<TITLE>GstVaapiDecoderH264</TITLE>
|
||||
GstVaapiDecoderH264
|
||||
gst_vaapi_decoder_h264_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_vc1</FILE>
|
||||
<TITLE>GstVaapiDecoderVC1</TITLE>
|
||||
GstVaapiDecoderVC1
|
||||
gst_vaapi_decoder_vc1_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_vp8</FILE>
|
||||
<TITLE>GstVaapiDecoderVp8</TITLE>
|
||||
GstVaapiDecoderVp8
|
||||
gst_vaapi_decoder_vp8_new
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_h265</FILE>
|
||||
<TITLE>GstVaapiDecoderH265</TITLE>
|
||||
GstVaapiDecoderH265
|
||||
GstVaapiStreamAlignH265
|
||||
gst_vaapi_decoder_h265_new
|
||||
gst_vaapi_decoder_h265_set_alignment
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapisurfaceproxy</FILE>
|
||||
<TITLE>GstVaapiSurfaceProxy</TITLE>
|
||||
gst_vaapi_surface_proxy_get_duration
|
||||
gst_vaapi_surface_proxy_get_flags
|
||||
gst_vaapi_surface_proxy_get_surface
|
||||
gst_vaapi_surface_proxy_get_surface_id
|
||||
gst_vaapi_surface_proxy_get_timestamp
|
||||
gst_vaapi_surface_proxy_new_from_pool
|
||||
gst_vaapi_surface_proxy_copy
|
||||
gst_vaapi_surface_proxy_ref
|
||||
gst_vaapi_surface_proxy_replace
|
||||
gst_vaapi_surface_proxy_set_destroy_notify
|
||||
gst_vaapi_surface_proxy_unref
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_SURFACE_PROXY_SURFACE
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapifilter</FILE>
|
||||
<TITLE>GstVaapiFilter</TITLE>
|
||||
GstVaapiFilter
|
||||
GstVaapiFilterOp
|
||||
gst_vaapi_filter_new
|
||||
gst_vaapi_filter_ref
|
||||
gst_vaapi_filter_unref
|
||||
gst_vaapi_filter_replace
|
||||
gst_vaapi_filter_get_operations
|
||||
gst_vaapi_filter_get_formats
|
||||
gst_vaapi_filter_has_operation
|
||||
gst_vaapi_filter_use_operation
|
||||
gst_vaapi_filter_set_operation
|
||||
gst_vaapi_filter_set_format
|
||||
gst_vaapi_filter_set_cropping_rectangle
|
||||
gst_vaapi_filter_set_target_rectangle
|
||||
gst_vaapi_filter_set_denoising_level
|
||||
gst_vaapi_filter_set_sharpening_level
|
||||
gst_vaapi_filter_set_hue
|
||||
gst_vaapi_filter_set_brightness
|
||||
gst_vaapi_filter_set_saturation
|
||||
gst_vaapi_filter_set_deinterlacing
|
||||
gst_vaapi_filter_set_deinterlacing_references
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_FILTER
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapiparser_frame</FILE>
|
||||
<TITLE>GstVaapiParserFrame</TITLE>
|
||||
gst_vaapi_parser_frame_new
|
||||
gst_vaapi_parser_frame_free
|
||||
gst_vaapi_parser_frame_append_unit
|
||||
gst_vaapi_parser_frame_ref
|
||||
gst_vaapi_parser_frame_unref
|
||||
gst_vaapi_parser_frame_replace
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapicontext</FILE>
|
||||
<TITLE>GstVaapiContext</TITLE>
|
||||
GstVaapiConfigInfoEncoder
|
||||
GstVaapiContextInfo
|
||||
GstVaapiContext
|
||||
GstVaapiContextUsage
|
||||
gst_vaapi_context_new
|
||||
gst_vaapi_context_reset
|
||||
gst_vaapi_context_get_id
|
||||
gst_vaapi_context_get_surface_proxy
|
||||
gst_vaapi_context_get_surface_count
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapidecoder_unit</FILE>
|
||||
<TITLE>GstVaapiDecoderUnit</TITLE>
|
||||
GstVaapiDecoderUnitFlags
|
||||
GstVaapiDecoderUnit
|
||||
gst_vaapi_decoder_unit_init
|
||||
gst_vaapi_decoder_unit_clear
|
||||
gst_vaapi_decoder_unit_new
|
||||
gst_vaapi_decoder_unit_set_parsed_info
|
||||
<SUBSECTION Standard>
|
||||
GST_VAAPI_DECODER_UNIT_FLAGS
|
||||
GST_VAAPI_DECODER_UNIT_FLAG_IS_SET
|
||||
GST_VAAPI_DECODER_UNIT_FLAG_SET
|
||||
GST_VAAPI_DECODER_UNIT_FLAG_UNSET
|
||||
GST_VAAPI_DECODER_UNIT_IS_FRAME_START
|
||||
GST_VAAPI_DECODER_UNIT_IS_FRAME_END
|
||||
GST_VAAPI_DECODER_UNIT_IS_STREAM_END
|
||||
GST_VAAPI_DECODER_UNIT_IS_SLICE
|
||||
GST_VAAPI_DECODER_UNIT_IS_SKIPPED
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstvaapivalue</FILE>
|
||||
<TITLE>GstVaapiValue</TITLE>
|
||||
GstVaapiEnumSubset
|
||||
GST_VAAPI_TYPE_POINT
|
||||
GST_VAAPI_TYPE_RECTANGLE
|
||||
GST_VAAPI_TYPE_RENDER_MODE
|
||||
GST_VAAPI_TYPE_ROTATION
|
||||
GST_VAAPI_TYPE_RATE_CONTROL
|
||||
GST_VAAPI_POPCOUNT32
|
||||
</SECTION>
|
Loading…
Reference in a new issue