From c8d6febfab1ccfc46ec6cf70b9cb62761c9cf075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 25 Jan 2016 12:43:15 +0000 Subject: docs: remove library documentation which is non-public now https://bugzilla.gnome.org/show_bug.cgi?id=759192 --- configure.ac | 2 - docs/reference/Makefile.am | 2 +- docs/reference/libs/Makefile.am | 126 ------- docs/reference/libs/libs-docs.xml.in | 70 ---- docs/reference/libs/libs-overrides.txt | 0 docs/reference/libs/libs-sections.txt | 579 --------------------------------- 6 files changed, 1 insertion(+), 778 deletions(-) delete mode 100644 docs/reference/libs/Makefile.am delete mode 100644 docs/reference/libs/libs-docs.xml.in delete mode 100644 docs/reference/libs/libs-overrides.txt delete mode 100644 docs/reference/libs/libs-sections.txt diff --git a/configure.ac b/configure.ac index c16e5346..a698884d 100644 --- a/configure.ac +++ b/configure.ac @@ -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 diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 28657ac1..41143a19 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = libs plugins +SUBDIRS = plugins -include $(top_srcdir)/git.mk diff --git a/docs/reference/libs/Makefile.am b/docs/reference/libs/Makefile.am deleted file mode 100644 index 6298a5c1..00000000 --- a/docs/reference/libs/Makefile.am +++ /dev/null @@ -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 diff --git a/docs/reference/libs/libs-docs.xml.in b/docs/reference/libs/libs-docs.xml.in deleted file mode 100644 index 84228ff9..00000000 --- a/docs/reference/libs/libs-docs.xml.in +++ /dev/null @@ -1,70 +0,0 @@ - - - - - GStreamer VA-API Plugins @GST_API_VERSION@ Library Reference Manual - - - - To ease the creation of plugins, a Gstreamer-oriented library was created, - which wraps VA-API. - - - - gst-plugins-vaapi Library - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Object Hierarchy - - - - - API Index - - - - - diff --git a/docs/reference/libs/libs-overrides.txt b/docs/reference/libs/libs-overrides.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/docs/reference/libs/libs-sections.txt b/docs/reference/libs/libs-sections.txt deleted file mode 100644 index 4cdc2f8d..00000000 --- a/docs/reference/libs/libs-sections.txt +++ /dev/null @@ -1,579 +0,0 @@ -
-videoformat -GstVideoFormat -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 -
- -
-gstvaapisurfacepool -GstVaapiSurfacePool -GstVaapiSurfacePool -gst_vaapi_surface_pool_new - -GST_VAAPI_SURFACE_POOL -
- -
-gstvaapivideopool -GstVaapiVideoPool -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 - -GST_VAAPI_VIDEO_POOL -
- -
-gstvaapidisplay_x11 -GstVaapiDisplayX11 -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 - -GST_VAAPI_DISPLAY_X11 -
- -
-gstvaapidisplay_drm -GstVaapiDisplayDRM -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 -
- -
-gstvaapidisplay_wayland -GstVaapiDisplayWayland -gst_vaapi_display_wayland_new -gst_vaapi_display_wayland_new_with_display -gst_vaapi_display_wayland_get_display -
- -
-gstvaapidisplay_egl -GstVaapiDisplayEGL -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 - -GST_VAAPI_DISPLAY_EGL -
- -
-gstvaapiwindow_x11 -GstVaapiWindowX11 -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 - -GST_VAAPI_WINDOW_X11 -
- -
-gstvaapiwindow_wayland -GstVaapiWindowWayland -gst_vaapi_window_wayland_new -
- -
-gstvaapiwindow_drm -GstVaapiWindowDRM -gst_vaapi_window_drm_new -
- -
-gstvaapiwindow_glx -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 -
- -
-gstvaapiwindow_egl -GstVaapiWindowEGL -gst_vaapi_window_egl_new -
- -
-gstvaapipixmap_x11 -GstVaapiPixmapX11 -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 - -GST_VAAPI_WINDOW_X11 -
- -
-gstvaapidisplay_glx -GstVaapiDisplayGLX -GstVaapiDisplayGLX -gst_vaapi_display_glx_new -gst_vaapi_display_glx_new_with_display - -GST_VAAPI_DISPLAY_GLX -
- -
-gstvaapiwindow_glx -GstVaapiWindowGLX -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 - -GST_VAAPI_WINDOW_GLX -
- -
-gstvaapidisplay -GstVaapiDisplay -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 - -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 -
- -
-gstvaapiimagepool -GstVaapiImagePool -GstVaapiImagePool -gst_vaapi_image_pool_new - -GST_VAAPI_IMAGE_POOL -
- -
-gstvaapitypes -Basic data structures -GstVaapiID -GST_VAAPI_ID_FORMAT -GST_VAAPI_ID_ARGS -GstVaapiPoint -GstVaapiRectangle -
- -
-gstvaapipixmap -GstVaapiPixmap -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 - -GST_VAAPI_PIXMAP -
- -
-gstvaapiwindow -GstVaapiWindow -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 - -GST_VAAPI_WINDOW -
- -
-gstvaapiobject -GstVaapiObject -GstVaapiObject -gst_vaapi_object_get_display -gst_vaapi_object_lock_display -gst_vaapi_object_unlock_display -gst_vaapi_object_get_id - -GST_VAAPI_OBJECT -
- -
-gstvaapiimage -GST_VAAPI_IMAGE_FORMAT -GST_VAAPI_IMAGE_WIDTH -GST_VAAPI_IMAGE_HEIGHT -GstVaapiImage -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 - -GST_VAAPI_IMAGE -
- -
-gstvaapisurface -GstVaapiChromaType -GstVaapiSurfaceStatus -GstVaapiSurfaceRenderFlags -GstVaapiSurface -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 - -GST_VAAPI_SURFACE -
- -
-gstvaapisubpicture -GstVaapiSubpicture -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 - -GST_VAAPI_SUBPICTURE -
- -
-gstvaapiprofile -GstVaapiProfile -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 -
- -
-gstvaapitexture -GstVaapiTexture -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 -
- -
-gstvaapitexture_egl -GstVaapiTextureEGL -gst_vaapi_texture_egl_new -gst_vaapi_texture_egl_new_wrapped -
- -
-gstvaapitexture_glx -GstVaapiTextureGLX -gst_vaapi_texture_glx_new -gst_vaapi_texture_glx_new_wrapped -
- -
-gstvaapidecoder -GstVaapiDecoderStatus -GstVaapiDecoder -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 - -GST_VAAPI_DECODER -
- -
-gstvaapidecoder_jpeg -GstVaapiDecoderJpeg -GstVaapiDecoderJpeg -gst_vaapi_decoder_jpeg_new -
- -
-gstvaapidecoder_mpeg2 -GstVaapiDecoderMpeg2 -GstVaapiDecoderMpeg2 -gst_vaapi_decoder_mpeg2_new -
- -
-gstvaapidecoder_mpeg4 -GstVaapiDecoderMpeg4 -GstVaapiDecoderMpeg4 -gst_vaapi_decoder_mpeg4_new -
- -
-gstvaapidecoder_h264 -GstVaapiDecoderH264 -GstVaapiDecoderH264 -gst_vaapi_decoder_h264_new -
- -
-gstvaapidecoder_vc1 -GstVaapiDecoderVC1 -GstVaapiDecoderVC1 -gst_vaapi_decoder_vc1_new -
- -
-gstvaapidecoder_vp8 -GstVaapiDecoderVp8 -GstVaapiDecoderVp8 -gst_vaapi_decoder_vp8_new -
- -
-gstvaapidecoder_h265 -GstVaapiDecoderH265 -GstVaapiDecoderH265 -GstVaapiStreamAlignH265 -gst_vaapi_decoder_h265_new -gst_vaapi_decoder_h265_set_alignment -
- -
-gstvaapisurfaceproxy -GstVaapiSurfaceProxy -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 - -GST_VAAPI_SURFACE_PROXY_SURFACE -
- -
-gstvaapifilter -GstVaapiFilter -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 - -GST_VAAPI_FILTER -
- -
-gstvaapiparser_frame -GstVaapiParserFrame -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 -
- -
-gstvaapicontext -GstVaapiContext -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 -
- -
-gstvaapidecoder_unit -GstVaapiDecoderUnit -GstVaapiDecoderUnitFlags -GstVaapiDecoderUnit -gst_vaapi_decoder_unit_init -gst_vaapi_decoder_unit_clear -gst_vaapi_decoder_unit_new -gst_vaapi_decoder_unit_set_parsed_info - -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 -
- -
-gstvaapivalue -GstVaapiValue -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 -
-- cgit v1.2.1