VDPAU
vdpau.h
Go to the documentation of this file.
1 /*
2  * This source file is documented using Doxygen markup.
3  * See http://www.stack.nl/~dimitri/doxygen/
4  */
5 
6 /*
7  * This copyright notice applies to this header file:
8  *
9  * Copyright (c) 2008-2015 NVIDIA Corporation
10  *
11  * Permission is hereby granted, free of charge, to any person
12  * obtaining a copy of this software and associated documentation
13  * files (the "Software"), to deal in the Software without
14  * restriction, including without limitation the rights to use,
15  * copy, modify, merge, publish, distribute, sublicense, and/or sell
16  * copies of the Software, and to permit persons to whom the
17  * Software is furnished to do so, subject to the following
18  * conditions:
19  *
20  * The above copyright notice and this permission notice shall be
21  * included in all copies or substantial portions of the Software.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
25  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
30  * OTHER DEALINGS IN THE SOFTWARE.
31  */
32 
779 #ifndef _VDPAU_H
780 #define _VDPAU_H
781 
782 #include <stdint.h>
783 
784 #ifdef __cplusplus
785 extern "C" {
786 #endif
787 
806 #define VDP_TRUE 1
807 
808 #define VDP_FALSE 0
809 
813 typedef int VdpBool;
814 
833 #define VDP_INVALID_HANDLE 0xffffffffU
834 
839 typedef uint32_t VdpChromaType;
840 
849 #define VDP_CHROMA_TYPE_420 ((VdpChromaType)0)
850 
858 #define VDP_CHROMA_TYPE_422 ((VdpChromaType)1)
859 
867 #define VDP_CHROMA_TYPE_444 ((VdpChromaType)2)
868 
873 #define VDP_CHROMA_TYPE_420_FIELD ((VdpChromaType)3)
874 
878 #define VDP_CHROMA_TYPE_422_FIELD ((VdpChromaType)4)
879 
883 #define VDP_CHROMA_TYPE_444_FIELD ((VdpChromaType)5)
884 
889 #define VDP_CHROMA_TYPE_420_FRAME ((VdpChromaType)6)
890 
894 #define VDP_CHROMA_TYPE_422_FRAME ((VdpChromaType)7)
895 
899 #define VDP_CHROMA_TYPE_444_FRAME ((VdpChromaType)8)
900 
908 #define VDP_CHROMA_TYPE_420_16 ((VdpChromaType)9)
909 
917 #define VDP_CHROMA_TYPE_422_16 ((VdpChromaType)10)
918 
926 #define VDP_CHROMA_TYPE_444_16 ((VdpChromaType)11)
927 
932 #define VDP_CHROMA_TYPE_420_FIELD_16 ((VdpChromaType)12)
933 
937 #define VDP_CHROMA_TYPE_422_FIELD_16 ((VdpChromaType)13)
938 
942 #define VDP_CHROMA_TYPE_444_FIELD_16 ((VdpChromaType)14)
943 
948 #define VDP_CHROMA_TYPE_420_FRAME_16 ((VdpChromaType)15)
949 
953 #define VDP_CHROMA_TYPE_422_FRAME_16 ((VdpChromaType)16)
954 
958 #define VDP_CHROMA_TYPE_444_FRAME_16 ((VdpChromaType)17)
959 
963 typedef uint32_t VdpYCbCrFormat;
964 
978 #define VDP_YCBCR_FORMAT_NV12 ((VdpYCbCrFormat)0)
979 
990 #define VDP_YCBCR_FORMAT_YV12 ((VdpYCbCrFormat)1)
991 
1004 #define VDP_YCBCR_FORMAT_UYVY ((VdpYCbCrFormat)2)
1018 #define VDP_YCBCR_FORMAT_YUYV ((VdpYCbCrFormat)3)
1031 #define VDP_YCBCR_FORMAT_Y8U8V8A8 ((VdpYCbCrFormat)4)
1044 #define VDP_YCBCR_FORMAT_V8U8Y8A8 ((VdpYCbCrFormat)5)
1058 #define VDP_YCBCR_FORMAT_Y_UV_444 ((VdpYCbCrFormat)6)
1070 #define VDP_YCBCR_FORMAT_Y_U_V_444 ((VdpYCbCrFormat)7)
1088 #define VDP_YCBCR_FORMAT_P010 ((VdpYCbCrFormat)8)
1102 #define VDP_YCBCR_FORMAT_P016 ((VdpYCbCrFormat)9)
1114  #define VDP_YCBCR_FORMAT_Y_U_V_444_16 ((VdpYCbCrFormat)11)
1119 typedef uint32_t VdpRGBAFormat;
1120 
1133 #define VDP_RGBA_FORMAT_B8G8R8A8 ((VdpRGBAFormat)0)
1146 #define VDP_RGBA_FORMAT_R8G8B8A8 ((VdpRGBAFormat)1)
1159 #define VDP_RGBA_FORMAT_R10G10B10A2 ((VdpRGBAFormat)2)
1172 #define VDP_RGBA_FORMAT_B10G10R10A2 ((VdpRGBAFormat)3)
1183 #define VDP_RGBA_FORMAT_A8 ((VdpRGBAFormat)4)
1188 typedef uint32_t VdpIndexedFormat;
1189 
1201 #define VDP_INDEXED_FORMAT_A4I4 ((VdpIndexedFormat)0)
1213 #define VDP_INDEXED_FORMAT_I4A4 ((VdpIndexedFormat)1)
1225 #define VDP_INDEXED_FORMAT_A8I8 ((VdpIndexedFormat)2)
1237 #define VDP_INDEXED_FORMAT_I8A8 ((VdpIndexedFormat)3)
1246 typedef struct {
1248  uint32_t x;
1250  uint32_t y;
1251 } VdpPoint;
1252 
1263 typedef struct {
1265  uint32_t x0;
1267  uint32_t y0;
1269  uint32_t x1;
1271  uint32_t y1;
1272 } VdpRect;
1273 
1282 typedef struct {
1283  float red;
1284  float green;
1285  float blue;
1286  float alpha;
1287 } VdpColor;
1288 
1301 typedef enum {
1433 } VdpStatus;
1434 
1444 typedef char const * VdpGetErrorString(
1445  VdpStatus status
1446 );
1447 
1472 #define VDPAU_INTERFACE_VERSION 1
1485 #define VDPAU_VERSION 1
1493  /* output parameters follow */
1494  uint32_t * api_version
1495 );
1496 
1515  /* output parameters follow */
1516  char const * * information_string
1517 );
1518 
1538 typedef uint32_t VdpDevice;
1539 
1546  VdpDevice device
1547 );
1548 
1587 typedef float VdpCSCMatrix[3][4];
1588 
1589 #define VDP_PROCAMP_VERSION 0
1599 typedef struct {
1603  uint32_t struct_version;
1608  float brightness;
1613  float contrast;
1618  float saturation;
1623  float hue;
1624 } VdpProcamp;
1625 
1632 typedef uint32_t VdpColorStandard;
1633 
1635 #define VDP_COLOR_STANDARD_ITUR_BT_601 ((VdpColorStandard)0)
1637 #define VDP_COLOR_STANDARD_ITUR_BT_709 ((VdpColorStandard)1)
1639 #define VDP_COLOR_STANDARD_SMPTE_240M ((VdpColorStandard)2)
1650  VdpProcamp * procamp,
1651  VdpColorStandard standard,
1652  /* output parameters follow */
1653  VdpCSCMatrix * csc_matrix
1654 );
1655 
1701  VdpDevice device,
1702  VdpChromaType surface_chroma_type,
1703  /* output parameters follow */
1704  VdpBool * is_supported,
1705  uint32_t * max_width,
1706  uint32_t * max_height
1707 );
1708 
1721  VdpDevice device,
1722  VdpChromaType surface_chroma_type,
1723  VdpYCbCrFormat bits_ycbcr_format,
1724  /* output parameters follow */
1725  VdpBool * is_supported
1726 );
1727 
1732 typedef uint32_t VdpVideoSurface;
1733 
1780  VdpDevice device,
1781  VdpChromaType chroma_type,
1782  uint32_t width,
1783  uint32_t height,
1784  /* output parameters follow */
1785  VdpVideoSurface * surface
1786 );
1787 
1794  VdpVideoSurface surface
1795 );
1796 
1807  VdpVideoSurface surface,
1808  /* output parameters follow */
1809  VdpChromaType * chroma_type,
1810  uint32_t * width,
1811  uint32_t * height
1812 );
1813 
1833  VdpVideoSurface surface,
1834  VdpYCbCrFormat destination_ycbcr_format,
1835  void * const * destination_data,
1836  uint32_t const * destination_pitches
1837 );
1838 
1858  VdpVideoSurface surface,
1859  VdpYCbCrFormat source_ycbcr_format,
1860  void const * const * source_data,
1861  uint32_t const * source_pitches
1862 );
1863 
1898 typedef uint32_t VdpColorTableFormat;
1899 
1911 #define VDP_COLOR_TABLE_FORMAT_B8G8R8X8 ((VdpColorTableFormat)0)
1927  VdpDevice device,
1928  VdpRGBAFormat surface_rgba_format,
1929  /* output parameters follow */
1930  VdpBool * is_supported,
1931  uint32_t * max_width,
1932  uint32_t * max_height
1933 );
1934 
1946  VdpDevice device,
1947  VdpRGBAFormat surface_rgba_format,
1948  /* output parameters follow */
1949  VdpBool * is_supported
1950 );
1951 
1967  VdpDevice device,
1968  VdpRGBAFormat surface_rgba_format,
1969  VdpIndexedFormat bits_indexed_format,
1970  VdpColorTableFormat color_table_format,
1971  /* output parameters follow */
1972  VdpBool * is_supported
1973 );
1974 
1988  VdpDevice device,
1989  VdpRGBAFormat surface_rgba_format,
1990  VdpYCbCrFormat bits_ycbcr_format,
1991  /* output parameters follow */
1992  VdpBool * is_supported
1993 );
1994 
1999 typedef uint32_t VdpOutputSurface;
2000 
2014  VdpDevice device,
2015  VdpRGBAFormat rgba_format,
2016  uint32_t width,
2017  uint32_t height,
2018  /* output parameters follow */
2019  VdpOutputSurface * surface
2020 );
2021 
2028  VdpOutputSurface surface
2029 );
2030 
2041  VdpOutputSurface surface,
2042  /* output parameters follow */
2043  VdpRGBAFormat * rgba_format,
2044  uint32_t * width,
2045  uint32_t * height
2046 );
2047 
2068  VdpOutputSurface surface,
2069  VdpRect const * source_rect,
2070  void * const * destination_data,
2071  uint32_t const * destination_pitches
2072 );
2073 
2094  VdpOutputSurface surface,
2095  void const * const * source_data,
2096  uint32_t const * source_pitches,
2097  VdpRect const * destination_rect
2098 );
2099 
2126  VdpOutputSurface surface,
2127  VdpIndexedFormat source_indexed_format,
2128  void const * const * source_data,
2129  uint32_t const * source_pitch,
2130  VdpRect const * destination_rect,
2131  VdpColorTableFormat color_table_format,
2132  void const * color_table
2133 );
2134 
2161  VdpOutputSurface surface,
2162  VdpYCbCrFormat source_ycbcr_format,
2163  void const * const * source_data,
2164  uint32_t const * source_pitches,
2165  VdpRect const * destination_rect,
2166  VdpCSCMatrix const * csc_matrix
2167 );
2168 
2220  VdpDevice device,
2221  VdpRGBAFormat surface_rgba_format,
2222  /* output parameters follow */
2223  VdpBool * is_supported,
2224  uint32_t * max_width,
2225  uint32_t * max_height
2226 );
2227 
2232 typedef uint32_t VdpBitmapSurface;
2233 
2252  VdpDevice device,
2253  VdpRGBAFormat rgba_format,
2254  uint32_t width,
2255  uint32_t height,
2256  VdpBool frequently_accessed,
2257  /* output parameters follow */
2258  VdpBitmapSurface * surface
2259 );
2260 
2267  VdpBitmapSurface surface
2268 );
2269 
2282  VdpBitmapSurface surface,
2283  /* output parameters follow */
2284  VdpRGBAFormat * rgba_format,
2285  uint32_t * width,
2286  uint32_t * height,
2287  VdpBool * frequently_accessed
2288 );
2289 
2310  VdpBitmapSurface surface,
2311  void const * const * source_data,
2312  uint32_t const * source_pitches,
2313  VdpRect const * destination_rect
2314 );
2315 
2332 typedef enum {
2349 
2354 typedef enum {
2361 
2362 #define VDP_OUTPUT_SURFACE_RENDER_BLEND_STATE_VERSION 0
2383 typedef struct {
2387  uint32_t struct_version;
2396 
2401 #define VDP_OUTPUT_SURFACE_RENDER_ROTATE_0 0
2408 #define VDP_OUTPUT_SURFACE_RENDER_ROTATE_90 1
2415 #define VDP_OUTPUT_SURFACE_RENDER_ROTATE_180 2
2422 #define VDP_OUTPUT_SURFACE_RENDER_ROTATE_270 3
2431 #define VDP_OUTPUT_SURFACE_RENDER_COLOR_PER_VERTEX (1 << 2)
2504  VdpOutputSurface destination_surface,
2505  VdpRect const * destination_rect,
2506  VdpOutputSurface source_surface,
2507  VdpRect const * source_rect,
2508  VdpColor const * colors,
2509  VdpOutputSurfaceRenderBlendState const * blend_state,
2510  uint32_t flags
2511 );
2512 
2584  VdpOutputSurface destination_surface,
2585  VdpRect const * destination_rect,
2586  VdpBitmapSurface source_surface,
2587  VdpRect const * source_rect,
2588  VdpColor const * colors,
2589  VdpOutputSurfaceRenderBlendState const * blend_state,
2590  uint32_t flags
2591 );
2592 
2613 typedef uint32_t VdpDecoderProfile;
2614 
2616 #define VDP_DECODER_PROFILE_MPEG1 ((VdpDecoderProfile)0)
2618 #define VDP_DECODER_PROFILE_MPEG2_SIMPLE ((VdpDecoderProfile)1)
2620 #define VDP_DECODER_PROFILE_MPEG2_MAIN ((VdpDecoderProfile)2)
2623 #define VDP_DECODER_PROFILE_H264_BASELINE ((VdpDecoderProfile)6)
2625 #define VDP_DECODER_PROFILE_H264_MAIN ((VdpDecoderProfile)7)
2627 #define VDP_DECODER_PROFILE_H264_HIGH ((VdpDecoderProfile)8)
2629 #define VDP_DECODER_PROFILE_VC1_SIMPLE ((VdpDecoderProfile)9)
2631 #define VDP_DECODER_PROFILE_VC1_MAIN ((VdpDecoderProfile)10)
2633 #define VDP_DECODER_PROFILE_VC1_ADVANCED ((VdpDecoderProfile)11)
2635 #define VDP_DECODER_PROFILE_MPEG4_PART2_SP ((VdpDecoderProfile)12)
2637 #define VDP_DECODER_PROFILE_MPEG4_PART2_ASP ((VdpDecoderProfile)13)
2639 #define VDP_DECODER_PROFILE_DIVX4_QMOBILE ((VdpDecoderProfile)14)
2641 #define VDP_DECODER_PROFILE_DIVX4_MOBILE ((VdpDecoderProfile)15)
2643 #define VDP_DECODER_PROFILE_DIVX4_HOME_THEATER ((VdpDecoderProfile)16)
2645 #define VDP_DECODER_PROFILE_DIVX4_HD_1080P ((VdpDecoderProfile)17)
2647 #define VDP_DECODER_PROFILE_DIVX5_QMOBILE ((VdpDecoderProfile)18)
2649 #define VDP_DECODER_PROFILE_DIVX5_MOBILE ((VdpDecoderProfile)19)
2651 #define VDP_DECODER_PROFILE_DIVX5_HOME_THEATER ((VdpDecoderProfile)20)
2653 #define VDP_DECODER_PROFILE_DIVX5_HD_1080P ((VdpDecoderProfile)21)
2655 #define VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE ((VdpDecoderProfile)22)
2657 #define VDP_DECODER_PROFILE_H264_EXTENDED ((VdpDecoderProfile)23)
2659 #define VDP_DECODER_PROFILE_H264_PROGRESSIVE_HIGH ((VdpDecoderProfile)24)
2661 #define VDP_DECODER_PROFILE_H264_CONSTRAINED_HIGH ((VdpDecoderProfile)25)
2664 #define VDP_DECODER_PROFILE_H264_HIGH_444_PREDICTIVE ((VdpDecoderProfile)26)
2666 #define VDP_DECODER_PROFILE_VP9_PROFILE_0 ((VdpDecoderProfile)27)
2668 #define VDP_DECODER_PROFILE_VP9_PROFILE_1 ((VdpDecoderProfile)28)
2670 #define VDP_DECODER_PROFILE_VP9_PROFILE_2 ((VdpDecoderProfile)29)
2672 #define VDP_DECODER_PROFILE_VP9_PROFILE_3 ((VdpDecoderProfile)30)
2675 #define VDP_DECODER_PROFILE_HEVC_MAIN ((VdpDecoderProfile)100)
2677 #define VDP_DECODER_PROFILE_HEVC_MAIN_10 ((VdpDecoderProfile)101)
2679 #define VDP_DECODER_PROFILE_HEVC_MAIN_STILL ((VdpDecoderProfile)102)
2681 #define VDP_DECODER_PROFILE_HEVC_MAIN_12 ((VdpDecoderProfile)103)
2683 #define VDP_DECODER_PROFILE_HEVC_MAIN_444 ((VdpDecoderProfile)104)
2685 #define VDP_DECODER_PROFILE_HEVC_MAIN_444_10 ((VdpDecoderProfile)105)
2687 #define VDP_DECODER_PROFILE_HEVC_MAIN_444_12 ((VdpDecoderProfile)106)
2690 #define VDP_DECODER_LEVEL_MPEG1_NA 0
2693 #define VDP_DECODER_LEVEL_MPEG2_LL 0
2695 #define VDP_DECODER_LEVEL_MPEG2_ML 1
2697 #define VDP_DECODER_LEVEL_MPEG2_HL14 2
2699 #define VDP_DECODER_LEVEL_MPEG2_HL 3
2702 #define VDP_DECODER_LEVEL_H264_1 10
2704 #define VDP_DECODER_LEVEL_H264_1b 9
2706 #define VDP_DECODER_LEVEL_H264_1_1 11
2708 #define VDP_DECODER_LEVEL_H264_1_2 12
2710 #define VDP_DECODER_LEVEL_H264_1_3 13
2712 #define VDP_DECODER_LEVEL_H264_2 20
2714 #define VDP_DECODER_LEVEL_H264_2_1 21
2716 #define VDP_DECODER_LEVEL_H264_2_2 22
2718 #define VDP_DECODER_LEVEL_H264_3 30
2720 #define VDP_DECODER_LEVEL_H264_3_1 31
2722 #define VDP_DECODER_LEVEL_H264_3_2 32
2724 #define VDP_DECODER_LEVEL_H264_4 40
2726 #define VDP_DECODER_LEVEL_H264_4_1 41
2728 #define VDP_DECODER_LEVEL_H264_4_2 42
2730 #define VDP_DECODER_LEVEL_H264_5 50
2732 #define VDP_DECODER_LEVEL_H264_5_1 51
2735 #define VDP_DECODER_LEVEL_VC1_SIMPLE_LOW 0
2737 #define VDP_DECODER_LEVEL_VC1_SIMPLE_MEDIUM 1
2740 #define VDP_DECODER_LEVEL_VC1_MAIN_LOW 0
2742 #define VDP_DECODER_LEVEL_VC1_MAIN_MEDIUM 1
2744 #define VDP_DECODER_LEVEL_VC1_MAIN_HIGH 2
2747 #define VDP_DECODER_LEVEL_VC1_ADVANCED_L0 0
2749 #define VDP_DECODER_LEVEL_VC1_ADVANCED_L1 1
2751 #define VDP_DECODER_LEVEL_VC1_ADVANCED_L2 2
2753 #define VDP_DECODER_LEVEL_VC1_ADVANCED_L3 3
2755 #define VDP_DECODER_LEVEL_VC1_ADVANCED_L4 4
2758 #define VDP_DECODER_LEVEL_MPEG4_PART2_SP_L0 0
2760 #define VDP_DECODER_LEVEL_MPEG4_PART2_SP_L1 1
2762 #define VDP_DECODER_LEVEL_MPEG4_PART2_SP_L2 2
2764 #define VDP_DECODER_LEVEL_MPEG4_PART2_SP_L3 3
2767 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L0 0
2769 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L1 1
2771 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L2 2
2773 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L3 3
2775 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L4 4
2777 #define VDP_DECODER_LEVEL_MPEG4_PART2_ASP_L5 5
2780 #define VDP_DECODER_LEVEL_DIVX_NA 0
2783 #define VDP_DECODER_LEVEL_VP9_L1 1
2791 #define VDP_DECODER_LEVEL_HEVC_1 30
2793 #define VDP_DECODER_LEVEL_HEVC_2 60
2795 #define VDP_DECODER_LEVEL_HEVC_2_1 63
2797 #define VDP_DECODER_LEVEL_HEVC_3 90
2799 #define VDP_DECODER_LEVEL_HEVC_3_1 93
2801 #define VDP_DECODER_LEVEL_HEVC_4 120
2803 #define VDP_DECODER_LEVEL_HEVC_4_1 123
2805 #define VDP_DECODER_LEVEL_HEVC_5 150
2807 #define VDP_DECODER_LEVEL_HEVC_5_1 153
2809 #define VDP_DECODER_LEVEL_HEVC_5_2 156
2811 #define VDP_DECODER_LEVEL_HEVC_6 180
2813 #define VDP_DECODER_LEVEL_HEVC_6_1 183
2815 #define VDP_DECODER_LEVEL_HEVC_6_2 186
2817 typedef enum {
2821 
2822 typedef enum {
2837 
2850  VdpDevice device,
2851  VdpDecoderProfile profile,
2852  /* output parameters follow */
2853  VdpDecoderCapability capability,
2854  void * capability_value
2855 );
2856 
2876  VdpDevice device,
2877  VdpDecoderProfile profile,
2878  /* output parameters follow */
2879  VdpBool * is_supported,
2880  uint32_t * max_level,
2881  uint32_t * max_macroblocks,
2882  uint32_t * max_width,
2883  uint32_t * max_height
2884 );
2885 
2889 typedef uint32_t VdpDecoder;
2890 
2908  VdpDevice device,
2909  VdpDecoderProfile profile,
2910  uint32_t width,
2911  uint32_t height,
2912  uint32_t max_references,
2913  /* output parameters follow */
2914  VdpDecoder * decoder
2915 );
2916 
2923  VdpDecoder decoder
2924 );
2925 
2939  VdpDecoder decoder,
2940  /* output parameters follow */
2941  VdpDecoderProfile * profile,
2942  uint32_t * width,
2943  uint32_t * height
2944 );
2945 
2946 #define VDP_BITSTREAM_BUFFER_VERSION 0
2952 typedef struct {
2956  uint32_t struct_version;
2958  void const * bitstream;
2962 
2973 typedef void VdpPictureInfo;
2974 
2983 typedef struct {
2995  uint32_t slice_count;
2996 
3008  uint8_t q_scale_type;
3015  uint8_t f_code[2][2];
3017  uint8_t intra_quantizer_matrix[64];
3019  uint8_t non_intra_quantizer_matrix[64];
3022 
3030 typedef struct {
3049  int32_t field_order_cnt[2];
3055  uint16_t frame_idx;
3057 
3080 typedef struct {
3082  uint32_t slice_count;
3084  int32_t field_order_cnt[2];
3087 
3092  uint16_t frame_num;
3117  uint8_t scaling_lists_4x4[6][16];
3119  uint8_t scaling_lists_8x8[2][64];
3123  VdpReferenceFrameH264 referenceFrames[16];
3125 
3136 typedef struct {
3139 
3156 
3164 typedef struct {
3175 
3177  uint32_t slice_count;
3179  uint8_t picture_type;
3182 
3188  uint8_t postprocflag;
3190  uint8_t pulldown;
3192  uint8_t interlace;
3194  uint8_t tfcntrflag;
3196  uint8_t finterpflag;
3198  uint8_t psf;
3200  uint8_t dquant;
3202  uint8_t panscan_flag;
3204  uint8_t refdist_flag;
3206  uint8_t quantizer;
3208  uint8_t extended_mv;
3210  uint8_t extended_dmv;
3212  uint8_t overlap;
3214  uint8_t vstransform;
3216  uint8_t loopfilter;
3218  uint8_t fastuvmc;
3221  uint8_t range_mapy;
3224  uint8_t range_mapuv;
3225 
3230  uint8_t multires;
3235  uint8_t syncmarker;
3242  uint8_t rangered;
3247  uint8_t maxbframes;
3255  uint8_t deblockEnable;
3261  uint8_t pquant;
3263 
3271 typedef struct {
3282 
3287  int32_t trd[2];
3288  int32_t trb[2];
3294  uint8_t interlaced;
3295  uint8_t quant_type;
3302  uint8_t intra_quantizer_matrix[64];
3303  uint8_t non_intra_quantizer_matrix[64];
3306 
3314 
3322 
3323 typedef struct
3324 {
3325  unsigned int width;
3326  unsigned int height;
3327 
3328  //Frame Indices
3332 
3333  unsigned char colorSpace;
3334 
3335  unsigned short profile;
3336  unsigned short frameContextIdx;
3337  unsigned short keyFrame;
3338  unsigned short showFrame;
3339  unsigned short errorResilient;
3340  unsigned short frameParallelDecoding;
3341  unsigned short subSamplingX;
3342  unsigned short subSamplingY;
3343  unsigned short intraOnly;
3344  unsigned short allowHighPrecisionMv;
3345  unsigned short refreshEntropyProbs;
3346 
3347  unsigned char refFrameSignBias[4];
3348 
3349  unsigned char bitDepthMinus8Luma;
3350  unsigned char bitDepthMinus8Chroma;
3351  unsigned char loopFilterLevel;
3352  unsigned char loopFilterSharpness;
3353 
3354  unsigned char modeRefLfEnabled;
3355  unsigned char log2TileColumns;
3356  unsigned char log2TileRows;
3357 
3358  unsigned char segmentEnabled;
3359  unsigned char segmentMapUpdate;
3361  unsigned char segmentFeatureMode;
3362 
3363  unsigned char segmentFeatureEnable[8][4];
3364  short segmentFeatureData[8][4];
3365  unsigned char mbSegmentTreeProbs[7];
3366  unsigned char segmentPredProbs[3];
3367  unsigned char reservedSegment16Bits[2];
3368 
3369  int qpYAc;
3370  int qpYDc;
3371  int qpChDc;
3372  int qpChAc;
3373 
3374  unsigned int activeRefIdx[3];
3375  unsigned int resetFrameContext;
3376  unsigned int mcompFilterType;
3377  unsigned int mbRefLfDelta[4];
3378  unsigned int mbModeLfDelta[2];
3380  unsigned int compressedHeaderSize;
3382 
3400 typedef struct {
3426  uint8_t ScalingList4x4[6][16];
3429  uint8_t ScalingList8x8[6][64];
3432  uint8_t ScalingList16x16[6][64];
3435  uint8_t ScalingList32x32[2][64];
3438  uint8_t ScalingListDCCoeff16x16[6];
3441  uint8_t ScalingListDCCoeff32x32[2];
3500  uint16_t column_width_minus1[20];
3504  uint16_t row_height_minus1[22];
3534  uint8_t IDRPicFlag;
3537  uint8_t RAPPicFlag;
3539  uint8_t CurrRpsIdx;
3565 
3569  VdpVideoSurface RefPics[16];
3572  int32_t PicOrderCntVal[16];
3576  uint8_t IsLongTerm[16];
3585  uint8_t NumPocLtCurr;
3588  uint8_t RefPicSetStCurrBefore[8];
3591  uint8_t RefPicSetStCurrAfter[8];
3594  uint8_t RefPicSetLtCurr[8];
3596 
3604 typedef struct {
3607 
3608  /* SPS Range Extensions for Main 444, Main 10, etc. */
3610  /* sps extension for transform_skip_rotation_enabled_flag */
3612  /* sps extension for transform_skip_context_enabled_flag */
3614  /* sps implicit_rdpcm_enabled_flag */
3616  /* sps explicit_rdpcm_enabled_flag */
3618  /* sps extended_precision_processing_flag,always 0 in current profile */
3620  /* sps intra_smoothing_disabled_flag */
3622  /* sps high_precision_offsets_enabled_flag */
3624  /* sps persistent_rice_adaptation_enabled_flag */
3626  /* sps cabac_bypass_alignment_enabled_flag, always 0 in current profile */
3628  /* sps intraBlockCopyEnableFlag, always 0 not used by the spec as of now */
3630 
3631  /* PPS Range Extensions for Main 444, Main 10, etc. */
3633  /* pps extension log2_max_transform_skip_block_size_minus2, 0...5 */
3635  /* pps cross_component_prediction_enabled_flag */
3637  /* pps chroma_qp_adjustment_enabled_flag */
3639  /* pps diff_cu_chroma_qp_adjustment_depth, 0...3 */
3641  /* pps chroma_qp_adjustment_table_size_minus1+1, 1...6 */
3643  /* pps log2_sao_offset_scale_luma, max(0,bitdepth-10), */
3644  /* maxBitdepth 16 for future. */
3646  /* pps log2_sao_offset_scale_chroma */
3648  /* -[12,+12] */
3649  int8_t cb_qp_adjustment[6];
3650  /* -[12,+12] */
3651  int8_t cr_qp_adjustment[6];
3652 
3654 
3664 
3684  VdpDecoder decoder,
3685  VdpVideoSurface target,
3686  VdpPictureInfo const * picture_info,
3687  uint32_t bitstream_buffer_count,
3688  VdpBitstreamBuffer const * bitstream_buffers
3689 );
3690 
3769 typedef uint32_t VdpVideoMixerFeature;
3770 
3782 #define VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL ((VdpVideoMixerFeature)0)
3795 #define VDP_VIDEO_MIXER_FEATURE_DEINTERLACE_TEMPORAL_SPATIAL ((VdpVideoMixerFeature)1)
3804 #define VDP_VIDEO_MIXER_FEATURE_INVERSE_TELECINE ((VdpVideoMixerFeature)2)
3812 #define VDP_VIDEO_MIXER_FEATURE_NOISE_REDUCTION ((VdpVideoMixerFeature)3)
3820 #define VDP_VIDEO_MIXER_FEATURE_SHARPNESS ((VdpVideoMixerFeature)4)
3833 #define VDP_VIDEO_MIXER_FEATURE_LUMA_KEY ((VdpVideoMixerFeature)5)
3855 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1 ((VdpVideoMixerFeature)11)
3862 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L2 ((VdpVideoMixerFeature)12)
3869 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L3 ((VdpVideoMixerFeature)13)
3876 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L4 ((VdpVideoMixerFeature)14)
3883 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L5 ((VdpVideoMixerFeature)15)
3890 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L6 ((VdpVideoMixerFeature)16)
3897 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L7 ((VdpVideoMixerFeature)17)
3904 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L8 ((VdpVideoMixerFeature)18)
3911 #define VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L9 ((VdpVideoMixerFeature)19)
3925 typedef uint32_t VdpVideoMixerParameter;
3926 
3939 #define VDP_VIDEO_MIXER_PARAMETER_VIDEO_SURFACE_WIDTH ((VdpVideoMixerParameter)0)
3952 #define VDP_VIDEO_MIXER_PARAMETER_VIDEO_SURFACE_HEIGHT ((VdpVideoMixerParameter)1)
3966 #define VDP_VIDEO_MIXER_PARAMETER_CHROMA_TYPE ((VdpVideoMixerParameter)2)
3985 #define VDP_VIDEO_MIXER_PARAMETER_LAYERS ((VdpVideoMixerParameter)3)
3999 typedef uint32_t VdpVideoMixerAttribute;
4000 
4014 #define VDP_VIDEO_MIXER_ATTRIBUTE_BACKGROUND_COLOR ((VdpVideoMixerAttribute)0)
4042 #define VDP_VIDEO_MIXER_ATTRIBUTE_CSC_MATRIX ((VdpVideoMixerAttribute)1)
4055 #define VDP_VIDEO_MIXER_ATTRIBUTE_NOISE_REDUCTION_LEVEL ((VdpVideoMixerAttribute)2)
4071 #define VDP_VIDEO_MIXER_ATTRIBUTE_SHARPNESS_LEVEL ((VdpVideoMixerAttribute)3)
4083 #define VDP_VIDEO_MIXER_ATTRIBUTE_LUMA_KEY_MIN_LUMA ((VdpVideoMixerAttribute)4)
4095 #define VDP_VIDEO_MIXER_ATTRIBUTE_LUMA_KEY_MAX_LUMA ((VdpVideoMixerAttribute)5)
4110 #define VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE ((VdpVideoMixerAttribute)6)
4122  VdpDevice device,
4123  VdpVideoMixerFeature feature,
4124  /* output parameters follow */
4125  VdpBool * is_supported
4126 );
4127 
4139  VdpDevice device,
4140  VdpVideoMixerParameter parameter,
4141  /* output parameters follow */
4142  VdpBool * is_supported
4143 );
4144 
4155  VdpDevice device,
4156  VdpVideoMixerAttribute attribute,
4157  /* output parameters follow */
4158  VdpBool * is_supported
4159 );
4160 
4172  VdpDevice device,
4173  VdpVideoMixerParameter parameter,
4174  /* output parameters follow */
4175  void * min_value,
4176  void * max_value
4177 );
4178 
4190  VdpDevice device,
4191  VdpVideoMixerAttribute attribute,
4192  /* output parameters follow */
4193  void * min_value,
4194  void * max_value
4195 );
4196 
4200 typedef uint32_t VdpVideoMixer;
4201 
4223  VdpDevice device,
4224  // The set of features to request
4225  uint32_t feature_count,
4226  VdpVideoMixerFeature const * features,
4227  // The parameters used during creation
4228  uint32_t parameter_count,
4229  VdpVideoMixerParameter const * parameters,
4230  void const * const * parameter_values,
4231  /* output parameters follow */
4232  VdpVideoMixer * mixer
4233 );
4234 
4246  VdpVideoMixer mixer,
4247  uint32_t feature_count,
4248  VdpVideoMixerFeature const * features,
4249  VdpBool const * feature_enables
4250 );
4251 
4265  VdpVideoMixer mixer,
4266  uint32_t attribute_count,
4267  VdpVideoMixerAttribute const * attributes,
4268  void const * const * attribute_values
4269 );
4270 
4283  VdpVideoMixer mixer,
4284  uint32_t feature_count,
4285  VdpVideoMixerFeature const * features,
4286  /* output parameters follow */
4287  VdpBool * feature_supports
4288 );
4289 
4300  VdpVideoMixer mixer,
4301  uint32_t feature_count,
4302  VdpVideoMixerFeature const * features,
4303  /* output parameters follow */
4304  VdpBool * feature_enables
4305 );
4306 
4320  VdpVideoMixer mixer,
4321  uint32_t parameter_count,
4322  VdpVideoMixerParameter const * parameters,
4323  /* output parameters follow */
4324  void * const * parameter_values
4325 );
4326 
4340  VdpVideoMixer mixer,
4341  uint32_t attribute_count,
4342  VdpVideoMixerAttribute const * attributes,
4343  /* output parameters follow */
4344  void * const * attribute_values
4345 );
4346 
4353  VdpVideoMixer mixer
4354 );
4355 
4361 typedef enum {
4376 
4377 #define VDP_LAYER_VERSION 0
4383 typedef struct {
4387  uint32_t struct_version;
4406 } VdpLayer;
4407 
4475  VdpVideoMixer mixer,
4476  VdpOutputSurface background_surface,
4477  VdpRect const * background_source_rect,
4478  VdpVideoMixerPictureStructure current_picture_structure,
4479  uint32_t video_surface_past_count,
4480  VdpVideoSurface const * video_surface_past,
4481  VdpVideoSurface video_surface_current,
4482  uint32_t video_surface_future_count,
4483  VdpVideoSurface const * video_surface_future,
4484  VdpRect const * video_source_rect,
4485  VdpOutputSurface destination_surface,
4486  VdpRect const * destination_rect,
4487  VdpRect const * destination_video_rect,
4488  uint32_t layer_count,
4489  VdpLayer const * layers
4490 );
4491 
4542 typedef uint64_t VdpTime;
4543 
4553 
4560  VdpPresentationQueueTarget presentation_queue_target
4561 );
4562 
4567 typedef uint32_t VdpPresentationQueue;
4568 
4581  VdpDevice device,
4582  VdpPresentationQueueTarget presentation_queue_target,
4583  /* output parameters follow */
4584  VdpPresentationQueue * presentation_queue
4585 );
4586 
4593  VdpPresentationQueue presentation_queue
4594 );
4595 
4606  VdpPresentationQueue presentation_queue,
4607  VdpColor * const background_color
4608 );
4609 
4616  VdpPresentationQueue presentation_queue,
4617  VdpColor * background_color
4618 );
4619 
4628  VdpPresentationQueue presentation_queue,
4629  /* output parameters follow */
4630  VdpTime * current_time
4631 );
4632 
4674  VdpPresentationQueue presentation_queue,
4675  VdpOutputSurface surface,
4676  uint32_t clip_width,
4677  uint32_t clip_height,
4678  VdpTime earliest_presentation_time
4679 );
4680 
4697  VdpPresentationQueue presentation_queue,
4698  VdpOutputSurface surface,
4699  /* output parameters follow */
4700  VdpTime * first_presentation_time
4701 );
4702 
4707 typedef enum {
4715 
4728  VdpPresentationQueue presentation_queue,
4729  VdpOutputSurface surface,
4730  /* output parameters follow */
4731  VdpPresentationQueueStatus * status,
4732  VdpTime * first_presentation_time
4733 );
4734 
4790  VdpDevice device,
4791  void * context
4792 );
4793 
4805  VdpDevice device,
4806  VdpPreemptionCallback callback,
4807  void * context
4808 );
4809 
4827 typedef uint32_t VdpFuncId;
4828 
4830 #define VDP_FUNC_ID_GET_ERROR_STRING ((VdpFuncId)0)
4832 #define VDP_FUNC_ID_GET_PROC_ADDRESS ((VdpFuncId)1)
4834 #define VDP_FUNC_ID_GET_API_VERSION ((VdpFuncId)2)
4836 #define VDP_FUNC_ID_GET_INFORMATION_STRING ((VdpFuncId)4)
4838 #define VDP_FUNC_ID_DEVICE_DESTROY ((VdpFuncId)5)
4840 #define VDP_FUNC_ID_GENERATE_CSC_MATRIX ((VdpFuncId)6)
4842 #define VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES ((VdpFuncId)7)
4844 #define VDP_FUNC_ID_VIDEO_SURFACE_QUERY_GET_PUT_BITS_Y_CB_CR_CAPABILITIES ((VdpFuncId)8)
4846 #define VDP_FUNC_ID_VIDEO_SURFACE_CREATE ((VdpFuncId)9)
4848 #define VDP_FUNC_ID_VIDEO_SURFACE_DESTROY ((VdpFuncId)10)
4850 #define VDP_FUNC_ID_VIDEO_SURFACE_GET_PARAMETERS ((VdpFuncId)11)
4852 #define VDP_FUNC_ID_VIDEO_SURFACE_GET_BITS_Y_CB_CR ((VdpFuncId)12)
4854 #define VDP_FUNC_ID_VIDEO_SURFACE_PUT_BITS_Y_CB_CR ((VdpFuncId)13)
4856 #define VDP_FUNC_ID_OUTPUT_SURFACE_QUERY_CAPABILITIES ((VdpFuncId)14)
4858 #define VDP_FUNC_ID_OUTPUT_SURFACE_QUERY_GET_PUT_BITS_NATIVE_CAPABILITIES ((VdpFuncId)15)
4860 #define VDP_FUNC_ID_OUTPUT_SURFACE_QUERY_PUT_BITS_INDEXED_CAPABILITIES ((VdpFuncId)16)
4862 #define VDP_FUNC_ID_OUTPUT_SURFACE_QUERY_PUT_BITS_Y_CB_CR_CAPABILITIES ((VdpFuncId)17)
4864 #define VDP_FUNC_ID_OUTPUT_SURFACE_CREATE ((VdpFuncId)18)
4866 #define VDP_FUNC_ID_OUTPUT_SURFACE_DESTROY ((VdpFuncId)19)
4868 #define VDP_FUNC_ID_OUTPUT_SURFACE_GET_PARAMETERS ((VdpFuncId)20)
4870 #define VDP_FUNC_ID_OUTPUT_SURFACE_GET_BITS_NATIVE ((VdpFuncId)21)
4872 #define VDP_FUNC_ID_OUTPUT_SURFACE_PUT_BITS_NATIVE ((VdpFuncId)22)
4874 #define VDP_FUNC_ID_OUTPUT_SURFACE_PUT_BITS_INDEXED ((VdpFuncId)23)
4876 #define VDP_FUNC_ID_OUTPUT_SURFACE_PUT_BITS_Y_CB_CR ((VdpFuncId)24)
4878 #define VDP_FUNC_ID_BITMAP_SURFACE_QUERY_CAPABILITIES ((VdpFuncId)25)
4880 #define VDP_FUNC_ID_BITMAP_SURFACE_CREATE ((VdpFuncId)26)
4882 #define VDP_FUNC_ID_BITMAP_SURFACE_DESTROY ((VdpFuncId)27)
4884 #define VDP_FUNC_ID_BITMAP_SURFACE_GET_PARAMETERS ((VdpFuncId)28)
4886 #define VDP_FUNC_ID_BITMAP_SURFACE_PUT_BITS_NATIVE ((VdpFuncId)29)
4888 #define VDP_FUNC_ID_OUTPUT_SURFACE_RENDER_OUTPUT_SURFACE ((VdpFuncId)33)
4890 #define VDP_FUNC_ID_OUTPUT_SURFACE_RENDER_BITMAP_SURFACE ((VdpFuncId)34)
4892 #define VDP_FUNC_ID_OUTPUT_SURFACE_RENDER_VIDEO_SURFACE_LUMA ((VdpFuncId)35)
4894 #define VDP_FUNC_ID_DECODER_QUERY_CAPABILITIES ((VdpFuncId)36)
4896 #define VDP_FUNC_ID_DECODER_CREATE ((VdpFuncId)37)
4898 #define VDP_FUNC_ID_DECODER_DESTROY ((VdpFuncId)38)
4900 #define VDP_FUNC_ID_DECODER_GET_PARAMETERS ((VdpFuncId)39)
4902 #define VDP_FUNC_ID_DECODER_RENDER ((VdpFuncId)40)
4904 #define VDP_FUNC_ID_VIDEO_MIXER_QUERY_FEATURE_SUPPORT ((VdpFuncId)41)
4906 #define VDP_FUNC_ID_VIDEO_MIXER_QUERY_PARAMETER_SUPPORT ((VdpFuncId)42)
4908 #define VDP_FUNC_ID_VIDEO_MIXER_QUERY_ATTRIBUTE_SUPPORT ((VdpFuncId)43)
4910 #define VDP_FUNC_ID_VIDEO_MIXER_QUERY_PARAMETER_VALUE_RANGE ((VdpFuncId)44)
4912 #define VDP_FUNC_ID_VIDEO_MIXER_QUERY_ATTRIBUTE_VALUE_RANGE ((VdpFuncId)45)
4914 #define VDP_FUNC_ID_VIDEO_MIXER_CREATE ((VdpFuncId)46)
4916 #define VDP_FUNC_ID_VIDEO_MIXER_SET_FEATURE_ENABLES ((VdpFuncId)47)
4918 #define VDP_FUNC_ID_VIDEO_MIXER_SET_ATTRIBUTE_VALUES ((VdpFuncId)48)
4920 #define VDP_FUNC_ID_VIDEO_MIXER_GET_FEATURE_SUPPORT ((VdpFuncId)49)
4922 #define VDP_FUNC_ID_VIDEO_MIXER_GET_FEATURE_ENABLES ((VdpFuncId)50)
4924 #define VDP_FUNC_ID_VIDEO_MIXER_GET_PARAMETER_VALUES ((VdpFuncId)51)
4926 #define VDP_FUNC_ID_VIDEO_MIXER_GET_ATTRIBUTE_VALUES ((VdpFuncId)52)
4928 #define VDP_FUNC_ID_VIDEO_MIXER_DESTROY ((VdpFuncId)53)
4930 #define VDP_FUNC_ID_VIDEO_MIXER_RENDER ((VdpFuncId)54)
4932 #define VDP_FUNC_ID_PRESENTATION_QUEUE_TARGET_DESTROY ((VdpFuncId)55)
4934 #define VDP_FUNC_ID_PRESENTATION_QUEUE_CREATE ((VdpFuncId)56)
4936 #define VDP_FUNC_ID_PRESENTATION_QUEUE_DESTROY ((VdpFuncId)57)
4938 #define VDP_FUNC_ID_PRESENTATION_QUEUE_SET_BACKGROUND_COLOR ((VdpFuncId)58)
4940 #define VDP_FUNC_ID_PRESENTATION_QUEUE_GET_BACKGROUND_COLOR ((VdpFuncId)59)
4942 #define VDP_FUNC_ID_PRESENTATION_QUEUE_GET_TIME ((VdpFuncId)62)
4944 #define VDP_FUNC_ID_PRESENTATION_QUEUE_DISPLAY ((VdpFuncId)63)
4946 #define VDP_FUNC_ID_PRESENTATION_QUEUE_BLOCK_UNTIL_SURFACE_IDLE ((VdpFuncId)64)
4948 #define VDP_FUNC_ID_PRESENTATION_QUEUE_QUERY_SURFACE_STATUS ((VdpFuncId)65)
4950 #define VDP_FUNC_ID_PREEMPTION_CALLBACK_REGISTER ((VdpFuncId)66)
4952 #define VDP_FUNC_ID_DECODER_QUERY_CAPABILITY ((VdpFuncId)67)
4954 #define VDP_FUNC_ID_BASE_WINSYS 0x1000
4966  VdpDevice device,
4967  VdpFuncId function_id,
4968  /* output parameters follow */
4969  void * * function_pointer
4970 );
4971 
4982 #ifdef __cplusplus
4983 }
4984 #endif
4985 
4986 #endif
4987 
VdpPresentationQueueCreate
VdpStatus VdpPresentationQueueCreate(VdpDevice device, VdpPresentationQueueTarget presentation_queue_target, VdpPresentationQueue *presentation_queue)
Create a VdpPresentationQueue.
Definition: vdpau.h:4580
VdpPictureInfoHEVC::CurrRpsIdx
uint8_t CurrRpsIdx
Definition: vdpau.h:3539
VdpColorStandard
uint32_t VdpColorStandard
YCbCr color space specification.
Definition: vdpau.h:1632
VdpPictureInfoVC1::loopfilter
uint8_t loopfilter
Definition: vdpau.h:3216
VdpPictureInfoVP9::loopFilterSharpness
unsigned char loopFilterSharpness
Definition: vdpau.h:3352
VDP_STATUS_INVALID_VIDEO_MIXER_FEATURE
@ VDP_STATUS_INVALID_VIDEO_MIXER_FEATURE
Definition: vdpau.h:1373
VdpPictureInfoMPEG4Part2::forward_reference
VdpVideoSurface forward_reference
Definition: vdpau.h:3276
VdpVideoMixerPictureStructure
VdpVideoMixerPictureStructure
The structure of the picture present in a VdpVideoSurface.
Definition: vdpau.h:4361
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE
Definition: vdpau.h:2334
VdpPictureInfoHEVC444::explicitRdpcmEnableFlag
uint8_t explicitRdpcmEnableFlag
Definition: vdpau.h:3617
VdpPictureInfoVP9::qpChDc
int qpChDc
Definition: vdpau.h:3371
VdpPictureInfoHEVC444::extendedPrecisionProcessingFlag
uint8_t extendedPrecisionProcessingFlag
Definition: vdpau.h:3619
VDP_STATUS_RESOURCES
@ VDP_STATUS_RESOURCES
Definition: vdpau.h:1418
VdpPictureInfoHEVC::tiles_enabled_flag
uint8_t tiles_enabled_flag
Definition: vdpau.h:3489
VdpPictureInfoH264
Picture parameter information for an H.264 picture.
Definition: vdpau.h:3080
VdpColorTableFormat
uint32_t VdpColorTableFormat
The set of all known color table formats, for use with VdpOutputSurfacePutBitsIndexed.
Definition: vdpau.h:1898
VdpPictureInfoHEVC444::intraSmoothingDisabledFlag
uint8_t intraSmoothingDisabledFlag
Definition: vdpau.h:3621
VdpReferenceFrameH264::is_long_term
VdpBool is_long_term
Definition: vdpau.h:3037
VDP_STATUS_INVALID_CHROMA_TYPE
@ VDP_STATUS_INVALID_CHROMA_TYPE
Definition: vdpau.h:1331
VdpPictureInfoVP9::intraOnly
unsigned short intraOnly
Definition: vdpau.h:3343
VdpPictureInfoVP9::errorResilient
unsigned short errorResilient
Definition: vdpau.h:3339
VdpPictureInfoHEVC::pps_tc_offset_div2
int8_t pps_tc_offset_div2
Definition: vdpau.h:3521
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_TOP_FIELD
@ VDP_VIDEO_MIXER_PICTURE_STRUCTURE_TOP_FIELD
Definition: vdpau.h:4365
VdpPictureInfoMPEG1Or2::intra_dc_precision
uint8_t intra_dc_precision
Definition: vdpau.h:3003
VdpPresentationQueue
uint32_t VdpPresentationQueue
An opaque handle representing a presentation queue object.
Definition: vdpau.h:4567
VdpPictureInfoH264::mb_adaptive_frame_field_flag
uint8_t mb_adaptive_frame_field_flag
Definition: vdpau.h:3096
VdpPictureInfoHEVC444
Picture parameter information for an HEVC 444 picture.
Definition: vdpau.h:3604
VdpPictureInfoHEVC::pcm_enabled_flag
uint8_t pcm_enabled_flag
Definition: vdpau.h:3444
VdpPictureInfoVP9::profile
unsigned short profile
Definition: vdpau.h:3335
VdpPictureInfoMPEG4Part2::quarter_sample
uint8_t quarter_sample
Definition: vdpau.h:3296
VdpPictureInfoH264::direct_8x8_inference_flag
uint8_t direct_8x8_inference_flag
Definition: vdpau.h:3111
VdpPictureInfoVP9::modeRefLfEnabled
unsigned char modeRefLfEnabled
Definition: vdpau.h:3354
VdpDecoderQueryCapabilities
VdpStatus VdpDecoderQueryCapabilities(VdpDevice device, VdpDecoderProfile profile, VdpBool *is_supported, uint32_t *max_level, uint32_t *max_macroblocks, uint32_t *max_width, uint32_t *max_height)
Query the implementation's VdpDecoder capabilities.
Definition: vdpau.h:2875
VdpPictureInfoHEVC::sps_max_dec_pic_buffering_minus1
uint8_t sps_max_dec_pic_buffering_minus1
Definition: vdpau.h:3415
VdpReferenceFrameH264::frame_idx
uint16_t frame_idx
Definition: vdpau.h:3055
VdpPictureInfoH264::delta_pic_order_always_zero_flag
uint8_t delta_pic_order_always_zero_flag
Definition: vdpau.h:3110
VdpStatus
VdpStatus
The set of all possible error codes.
Definition: vdpau.h:1301
VdpPictureInfoVP9::allowHighPrecisionMv
unsigned short allowHighPrecisionMv
Definition: vdpau.h:3344
VdpPictureInfoMPEG1Or2::alternate_scan
uint8_t alternate_scan
Definition: vdpau.h:3007
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_COLOR
Definition: vdpau.h:2336
VdpPictureInfoHEVC::pps_deblocking_filter_disabled_flag
uint8_t pps_deblocking_filter_disabled_flag
Definition: vdpau.h:3515
VdpPictureInfoVP9::colorSpace
unsigned char colorSpace
Definition: vdpau.h:3333
VdpColor
Definition: vdpau.h:1282
VdpRect
A rectangular region of a surface.
Definition: vdpau.h:1263
VdpBitstreamBuffer::struct_version
uint32_t struct_version
Definition: vdpau.h:2956
VdpPreemptionCallback
void VdpPreemptionCallback(VdpDevice device, void *context)
A callback to notify the client application that a device's display has been preempted.
Definition: vdpau.h:4789
VdpPictureInfoVC1::range_mapy
uint8_t range_mapy
Definition: vdpau.h:3221
VdpColor::red
float red
Definition: vdpau.h:1283
VdpOutputSurfaceRenderBlendState::blend_equation_alpha
VdpOutputSurfaceRenderBlendEquation blend_equation_alpha
Definition: vdpau.h:2393
VdpPictureInfoVP9::bitDepthMinus8Luma
unsigned char bitDepthMinus8Luma
Definition: vdpau.h:3349
VdpChromaType
uint32_t VdpChromaType
The set of all chroma formats for VdpVideoSurfaces.
Definition: vdpau.h:839
VdpPictureInfoHEVC444::sps_range_extension_flag
uint8_t sps_range_extension_flag
Definition: vdpau.h:3609
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_MAX
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_MAX
Definition: vdpau.h:2359
VDP_STATUS_INVALID_COLOR_STANDARD
@ VDP_STATUS_INVALID_COLOR_STANDARD
Definition: vdpau.h:1347
VdpPictureInfoHEVC::IDRPicFlag
uint8_t IDRPicFlag
Definition: vdpau.h:3534
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA
Definition: vdpau.h:2337
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA
Definition: vdpau.h:2338
VDP_STATUS_INVALID_Y_CB_CR_FORMAT
@ VDP_STATUS_INVALID_Y_CB_CR_FORMAT
Definition: vdpau.h:1335
VdpPictureInfoVP9::lastReference
VdpVideoSurface lastReference
Definition: vdpau.h:3329
VDP_STATUS_INVALID_SIZE
@ VDP_STATUS_INVALID_SIZE
Definition: vdpau.h:1400
VdpPictureInfoVP9::height
unsigned int height
Definition: vdpau.h:3326
VdpVideoMixerGetParameterValues
VdpStatus VdpVideoMixerGetParameterValues(VdpVideoMixer mixer, uint32_t parameter_count, VdpVideoMixerParameter const *parameters, void *const *parameter_values)
Retrieve parameter values given at creation time.
Definition: vdpau.h:4319
VdpPictureInfoVP9::qpYAc
int qpYAc
Definition: vdpau.h:3369
VdpPictureInfoVC1::postprocflag
uint8_t postprocflag
Definition: vdpau.h:3188
VdpBitmapSurfacePutBitsNative
VdpStatus VdpBitmapSurfacePutBitsNative(VdpBitmapSurface surface, void const *const *source_data, uint32_t const *source_pitches, VdpRect const *destination_rect)
Copy image data from application memory in the surface's native format to a VdpBitmapSurface.
Definition: vdpau.h:2309
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_DST_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_DST_ALPHA
Definition: vdpau.h:2339
VdpPictureInfoMPEG4Part2::vop_coding_type
uint8_t vop_coding_type
Definition: vdpau.h:3290
VdpPictureInfoHEVC::loop_filter_across_tiles_enabled_flag
uint8_t loop_filter_across_tiles_enabled_flag
Definition: vdpau.h:3507
VdpLayer::destination_rect
VdpRect const * destination_rect
Definition: vdpau.h:4405
VdpDecoderCreate
VdpStatus VdpDecoderCreate(VdpDevice device, VdpDecoderProfile profile, uint32_t width, uint32_t height, uint32_t max_references, VdpDecoder *decoder)
Create a VdpDecoder.
Definition: vdpau.h:2907
VdpVideoSurfaceDestroy
VdpStatus VdpVideoSurfaceDestroy(VdpVideoSurface surface)
Destroy a VdpVideoSurface.
Definition: vdpau.h:1793
VdpVideoMixerAttribute
uint32_t VdpVideoMixerAttribute
An adjustable attribute of VdpVideoMixer operation.
Definition: vdpau.h:3999
VdpPictureInfoVC1::pquant
uint8_t pquant
Definition: vdpau.h:3261
VdpPictureInfoHEVC::RAPPicFlag
uint8_t RAPPicFlag
Definition: vdpau.h:3537
VdpPictureInfoMPEG1Or2::full_pel_forward_vector
uint8_t full_pel_forward_vector
Definition: vdpau.h:3011
VdpPictureInfoVC1::fastuvmc
uint8_t fastuvmc
Definition: vdpau.h:3218
VdpVideoMixerCreate
VdpStatus VdpVideoMixerCreate(VdpDevice device, uint32_t feature_count, VdpVideoMixerFeature const *features, uint32_t parameter_count, VdpVideoMixerParameter const *parameters, void const *const *parameter_values, VdpVideoMixer *mixer)
Create a VdpVideoMixer.
Definition: vdpau.h:4222
VdpPictureInfoVC1::extended_dmv
uint8_t extended_dmv
Definition: vdpau.h:3210
VdpPictureInfoVP9::loopFilterLevel
unsigned char loopFilterLevel
Definition: vdpau.h:3351
VdpPictureInfoVP9::frameParallelDecoding
unsigned short frameParallelDecoding
Definition: vdpau.h:3340
VdpProcamp::hue
float hue
Definition: vdpau.h:1623
VdpPictureInfoVP9::width
unsigned int width
Definition: vdpau.h:3325
VdpPictureInfoHEVC::pps_beta_offset_div2
int8_t pps_beta_offset_div2
Definition: vdpau.h:3518
VdpPictureInfoHEVC444::pps_range_extension_flag
uint8_t pps_range_extension_flag
Definition: vdpau.h:3632
VdpVideoMixerQueryParameterValueRange
VdpStatus VdpVideoMixerQueryParameterValueRange(VdpDevice device, VdpVideoMixerParameter parameter, void *min_value, void *max_value)
Query the implementation's supported for a specific parameter.
Definition: vdpau.h:4171
VdpPictureInfoMPEG4Part2::rounding_control
uint8_t rounding_control
Definition: vdpau.h:3299
VdpPictureInfoVP9::refreshEntropyProbs
unsigned short refreshEntropyProbs
Definition: vdpau.h:3345
VdpPictureInfoHEVC::num_ref_idx_l0_default_active_minus1
uint8_t num_ref_idx_l0_default_active_minus1
Definition: vdpau.h:3475
VdpVideoSurfaceQueryCapabilities
VdpStatus VdpVideoSurfaceQueryCapabilities(VdpDevice device, VdpChromaType surface_chroma_type, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
Query the implementation's VdpVideoSurface capabilities.
Definition: vdpau.h:1700
VdpPictureInfoHEVC::pcm_sample_bit_depth_chroma_minus1
uint8_t pcm_sample_bit_depth_chroma_minus1
Definition: vdpau.h:3448
VdpBool
int VdpBool
A boolean value, holding VDP_TRUE or VDP_FALSE.
Definition: vdpau.h:813
VdpPictureInfoHEVC::log2_diff_max_min_pcm_luma_coding_block_size
uint8_t log2_diff_max_min_pcm_luma_coding_block_size
Definition: vdpau.h:3452
VdpPictureInfoH264Predictive::qpprime_y_zero_transform_bypass_flag
uint8_t qpprime_y_zero_transform_bypass_flag
Definition: vdpau.h:3148
VdpOutputSurfaceQueryCapabilities
VdpStatus VdpOutputSurfaceQueryCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
Query the implementation's VdpOutputSurface capabilities.
Definition: vdpau.h:1926
VdpPictureInfoHEVC
Picture parameter information for an H.265/HEVC picture.
Definition: vdpau.h:3400
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_FRAME
@ VDP_VIDEO_MIXER_PICTURE_STRUCTURE_FRAME
Definition: vdpau.h:4374
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_ADD
Definition: vdpau.h:2357
VdpPictureInfoVC1::interlace
uint8_t interlace
Definition: vdpau.h:3192
VdpPictureInfoH264::constrained_intra_pred_flag
uint8_t constrained_intra_pred_flag
Definition: vdpau.h:3097
VDP_DECODER_PROFILE_MAX_WIDTH
@ VDP_DECODER_PROFILE_MAX_WIDTH
Definition: vdpau.h:2825
VdpPictureInfoH264::num_ref_idx_l1_active_minus1
uint8_t num_ref_idx_l1_active_minus1
Definition: vdpau.h:3106
VdpPictureInfoMPEG1Or2::backward_reference
VdpVideoSurface backward_reference
Definition: vdpau.h:2993
VdpPictureInfoHEVC::pps_cb_qp_offset
int8_t pps_cb_qp_offset
Definition: vdpau.h:3483
VdpPictureInfoH264::frame_mbs_only_flag
uint8_t frame_mbs_only_flag
Definition: vdpau.h:3100
VdpVideoMixerQueryAttributeValueRange
VdpStatus VdpVideoMixerQueryAttributeValueRange(VdpDevice device, VdpVideoMixerAttribute attribute, void *min_value, void *max_value)
Query the implementation's supported for a specific attribute.
Definition: vdpau.h:4189
VdpPictureInfoHEVC::pic_width_in_luma_samples
uint32_t pic_width_in_luma_samples
Definition: vdpau.h:3408
VdpRect::x1
uint32_t x1
Definition: vdpau.h:1269
VDP_STATUS_INVALID_VIDEO_MIXER_PICTURE_STRUCTURE
@ VDP_STATUS_INVALID_VIDEO_MIXER_PICTURE_STRUCTURE
Definition: vdpau.h:1386
VdpPictureInfoHEVC444::transformSkipRotationEnableFlag
uint8_t transformSkipRotationEnableFlag
Definition: vdpau.h:3611
VdpPictureInfoHEVC444::cabacBypassAlignmentEnableFlag
uint8_t cabacBypassAlignmentEnableFlag
Definition: vdpau.h:3627
VdpPoint::y
uint32_t y
Definition: vdpau.h:1250
VdpOutputSurfaceDestroy
VdpStatus VdpOutputSurfaceDestroy(VdpOutputSurface surface)
Destroy a VdpOutputSurface.
Definition: vdpau.h:2027
VdpOutputSurfaceQueryPutBitsIndexedCapabilities
VdpStatus VdpOutputSurfaceQueryPutBitsIndexedCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpIndexedFormat bits_indexed_format, VdpColorTableFormat color_table_format, VdpBool *is_supported)
Query the implementation's capability to perform a PutBits operation using application data in a spec...
Definition: vdpau.h:1966
VdpPictureInfoVC1::range_mapuv_flag
uint8_t range_mapuv_flag
Definition: vdpau.h:3223
VdpPictureInfoMPEG4Part2::interlaced
uint8_t interlaced
Definition: vdpau.h:3294
VdpPictureInfoHEVC::strong_intra_smoothing_enabled_flag
uint8_t strong_intra_smoothing_enabled_flag
Definition: vdpau.h:3463
VdpProcamp::contrast
float contrast
Definition: vdpau.h:1613
VdpVideoMixerSetAttributeValues
VdpStatus VdpVideoMixerSetAttributeValues(VdpVideoMixer mixer, uint32_t attribute_count, VdpVideoMixerAttribute const *attributes, void const *const *attribute_values)
Set attribute values.
Definition: vdpau.h:4264
VdpPresentationQueueStatus
VdpPresentationQueueStatus
The status of a surface within a presentation queue.
Definition: vdpau.h:4707
VdpPictureInfoHEVC444::diffCuChromaQpAdjustmentDepth
uint8_t diffCuChromaQpAdjustmentDepth
Definition: vdpau.h:3640
VdpPictureInfoVP9::qpChAc
int qpChAc
Definition: vdpau.h:3372
VdpPictureInfoVC1::forward_reference
VdpVideoSurface forward_reference
Definition: vdpau.h:3169
VdpPictureInfoHEVC444::chromaQpAdjustmentEnableFlag
uint8_t chromaQpAdjustmentEnableFlag
Definition: vdpau.h:3638
VdpPictureInfoH264::entropy_coding_mode_flag
uint8_t entropy_coding_mode_flag
Definition: vdpau.h:3112
VDP_STATUS_INVALID_FLAG
@ VDP_STATUS_INVALID_FLAG
Definition: vdpau.h:1365
VdpPictureInfoMPEG4Part2::alternate_vertical_scan_flag
uint8_t alternate_vertical_scan_flag
Definition: vdpau.h:3300
VdpVideoMixerRender
VdpStatus VdpVideoMixerRender(VdpVideoMixer mixer, VdpOutputSurface background_surface, VdpRect const *background_source_rect, VdpVideoMixerPictureStructure current_picture_structure, uint32_t video_surface_past_count, VdpVideoSurface const *video_surface_past, VdpVideoSurface video_surface_current, uint32_t video_surface_future_count, VdpVideoSurface const *video_surface_future, VdpRect const *video_source_rect, VdpOutputSurface destination_surface, VdpRect const *destination_rect, VdpRect const *destination_video_rect, uint32_t layer_count, VdpLayer const *layers)
Perform a video post-processing and compositing operation.
Definition: vdpau.h:4474
VDP_STATUS_INVALID_VIDEO_MIXER_PARAMETER
@ VDP_STATUS_INVALID_VIDEO_MIXER_PARAMETER
Definition: vdpau.h:1377
VdpPictureInfoHEVC::NumPocStCurrAfter
uint8_t NumPocStCurrAfter
Definition: vdpau.h:3582
VDP_STATUS_INVALID_FUNC_ID
@ VDP_STATUS_INVALID_FUNC_ID
Definition: vdpau.h:1390
VdpPictureInfoH264::pic_order_cnt_type
uint8_t pic_order_cnt_type
Definition: vdpau.h:3108
VdpVideoMixerParameter
uint32_t VdpVideoMixerParameter
A VdpVideoMixer creation parameter.
Definition: vdpau.h:3925
VDP_DECODER_PROFILE_MAX_LEVEL
@ VDP_DECODER_PROFILE_MAX_LEVEL
Definition: vdpau.h:2823
VdpIndexedFormat
uint32_t VdpIndexedFormat
The set of all known indexed surface formats.
Definition: vdpau.h:1188
VdpPictureInfo
void VdpPictureInfo
A generic "picture information" type.
Definition: vdpau.h:2973
VdpPictureInfoHEVC444::implicitRdpcmEnableFlag
uint8_t implicitRdpcmEnableFlag
Definition: vdpau.h:3615
VdpPictureInfoH264::second_chroma_qp_index_offset
int8_t second_chroma_qp_index_offset
Definition: vdpau.h:3103
VdpPictureInfoMPEG4Part2::resync_marker_disable
uint8_t resync_marker_disable
Definition: vdpau.h:3293
VdpPictureInfoH264::num_ref_idx_l0_active_minus1
uint8_t num_ref_idx_l0_active_minus1
Definition: vdpau.h:3105
VdpPresentationQueueSetBackgroundColor
VdpStatus VdpPresentationQueueSetBackgroundColor(VdpPresentationQueue presentation_queue, VdpColor *const background_color)
Configure the background color setting.
Definition: vdpau.h:4605
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_COLOR
Definition: vdpau.h:2335
VdpOutputSurfacePutBitsNative
VdpStatus VdpOutputSurfacePutBitsNative(VdpOutputSurface surface, void const *const *source_data, uint32_t const *source_pitches, VdpRect const *destination_rect)
Copy image data from application memory in the surface's native format to a VdpOutputSurface.
Definition: vdpau.h:2093
VdpPictureInfoHEVC::bit_depth_chroma_minus8
uint8_t bit_depth_chroma_minus8
Definition: vdpau.h:3411
VdpPictureInfoMPEG1Or2::picture_structure
uint8_t picture_structure
Definition: vdpau.h:3001
VdpPictureInfoVP9::resetFrameContext
unsigned int resetFrameContext
Definition: vdpau.h:3375
VdpPictureInfoVP9::segmentEnabled
unsigned char segmentEnabled
Definition: vdpau.h:3358
VdpPictureInfoVC1::deblockEnable
uint8_t deblockEnable
Definition: vdpau.h:3255
VDP_DECODER_PROFILE_SUPPORTED_CHROMA_TYPES
@ VDP_DECODER_PROFILE_SUPPORTED_CHROMA_TYPES
Definition: vdpau.h:2835
VdpPictureInfoHEVC::output_flag_present_flag
uint8_t output_flag_present_flag
Definition: vdpau.h:3471
VdpOutputSurfaceRenderBlendState::blend_factor_destination_alpha
VdpOutputSurfaceRenderBlendFactor blend_factor_destination_alpha
Definition: vdpau.h:2391
VdpPictureInfoHEVC::long_term_ref_pics_present_flag
uint8_t long_term_ref_pics_present_flag
Definition: vdpau.h:3458
VdpOutputSurfaceRenderBlendState::blend_factor_destination_color
VdpOutputSurfaceRenderBlendFactor blend_factor_destination_color
Definition: vdpau.h:2389
VdpPresentationQueueTargetDestroy
VdpStatus VdpPresentationQueueTargetDestroy(VdpPresentationQueueTarget presentation_queue_target)
Destroy a VdpPresentationQueueTarget.
Definition: vdpau.h:4559
VdpGetApiVersion
VdpStatus VdpGetApiVersion(uint32_t *api_version)
Retrieve the VDPAU version implemented by the backend.
Definition: vdpau.h:1492
VDP_DECODER_PROFILE_MAX_MACROBLOCKS
@ VDP_DECODER_PROFILE_MAX_MACROBLOCKS
Definition: vdpau.h:2824
VdpPictureInfoHEVC::log2_min_transform_block_size_minus2
uint8_t log2_min_transform_block_size_minus2
Definition: vdpau.h:3418
VdpPictureInfoHEVC444::crossComponentPredictionEnableFlag
uint8_t crossComponentPredictionEnableFlag
Definition: vdpau.h:3636
VdpPictureInfoHEVC::NumPocLtCurr
uint8_t NumPocLtCurr
Definition: vdpau.h:3585
VdpPictureInfoH264::is_reference
VdpBool is_reference
Definition: vdpau.h:3086
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_MIN
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_MIN
Definition: vdpau.h:2358
VdpPictureInfoHEVC::pps_slice_chroma_qp_offsets_present_flag
uint8_t pps_slice_chroma_qp_offsets_present_flag
Definition: vdpau.h:3485
VdpPictureInfoHEVCRangeExt
VdpPictureInfoHEVC444 VdpPictureInfoHEVCRangeExt
Picture parameter information for HEVC FormatRangeExtensions picture.
Definition: vdpau.h:3663
VdpPictureInfoHEVC::sample_adaptive_offset_enabled_flag
uint8_t sample_adaptive_offset_enabled_flag
Definition: vdpau.h:3443
VdpDecoderProfile
uint32_t VdpDecoderProfile
The set of all known compressed video formats, and associated profiles, that may be decoded.
Definition: vdpau.h:2613
VdpVideoMixerGetFeatureEnables
VdpStatus VdpVideoMixerGetFeatureEnables(VdpVideoMixer mixer, uint32_t feature_count, VdpVideoMixerFeature const *features, VdpBool *feature_enables)
Retrieve whether features are enabled.
Definition: vdpau.h:4299
VdpYCbCrFormat
uint32_t VdpYCbCrFormat
The set of all known YCbCr surface formats.
Definition: vdpau.h:963
VdpOutputSurfaceRenderBlendState::blend_factor_source_alpha
VdpOutputSurfaceRenderBlendFactor blend_factor_source_alpha
Definition: vdpau.h:2390
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_CONSTANT_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_CONSTANT_ALPHA
Definition: vdpau.h:2346
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_REVERSE_SUBTRACT
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_REVERSE_SUBTRACT
Definition: vdpau.h:2356
VdpPictureInfoH264::pic_order_present_flag
uint8_t pic_order_present_flag
Definition: vdpau.h:3113
VdpOutputSurfaceRenderBlendState
Complete blending operation definition.
Definition: vdpau.h:2383
VdpPictureInfoMPEG4Part2::short_video_header
uint8_t short_video_header
Definition: vdpau.h:3297
VdpPictureInfoHEVC::pic_height_in_luma_samples
uint32_t pic_height_in_luma_samples
Definition: vdpau.h:3409
VdpVideoSurfaceQueryGetPutBitsYCbCrCapabilities
VdpStatus VdpVideoSurfaceQueryGetPutBitsYCbCrCapabilities(VdpDevice device, VdpChromaType surface_chroma_type, VdpYCbCrFormat bits_ycbcr_format, VdpBool *is_supported)
Query the implementation's VdpVideoSurface GetBits/PutBits capabilities.
Definition: vdpau.h:1720
VdpPictureInfoVC1::slice_count
uint32_t slice_count
Definition: vdpau.h:3177
VdpPictureInfoHEVC::lists_modification_present_flag
uint8_t lists_modification_present_flag
Definition: vdpau.h:3522
VdpReferenceFrameH264::bottom_is_reference
VdpBool bottom_is_reference
Definition: vdpau.h:3047
VdpOutputSurfaceRenderBlendEquation
VdpOutputSurfaceRenderBlendEquation
The blending equations.
Definition: vdpau.h:2354
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_DST_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_DST_COLOR
Definition: vdpau.h:2341
VdpDecoderRender
VdpStatus VdpDecoderRender(VdpDecoder decoder, VdpVideoSurface target, VdpPictureInfo const *picture_info, uint32_t bitstream_buffer_count, VdpBitstreamBuffer const *bitstream_buffers)
Decode a compressed field/frame and render the result into a VdpVideoSurface.
Definition: vdpau.h:3683
VdpPictureInfoH264::log2_max_frame_num_minus4
uint8_t log2_max_frame_num_minus4
Definition: vdpau.h:3107
VdpOutputSurfaceGetParameters
VdpStatus VdpOutputSurfaceGetParameters(VdpOutputSurface surface, VdpRGBAFormat *rgba_format, uint32_t *width, uint32_t *height)
Retrieve the parameters used to create a VdpOutputSurface.
Definition: vdpau.h:2040
VdpPictureInfoMPEG4Part2::quant_type
uint8_t quant_type
Definition: vdpau.h:3295
VdpPictureInfoHEVC::num_tile_columns_minus1
uint8_t num_tile_columns_minus1
Definition: vdpau.h:3492
VdpOutputSurfacePutBitsIndexed
VdpStatus VdpOutputSurfacePutBitsIndexed(VdpOutputSurface surface, VdpIndexedFormat source_indexed_format, void const *const *source_data, uint32_t const *source_pitch, VdpRect const *destination_rect, VdpColorTableFormat color_table_format, void const *color_table)
Copy image data from application memory in a specific indexed format to a VdpOutputSurface.
Definition: vdpau.h:2125
VdpPictureInfoVP9::uncompressedHeaderSize
unsigned int uncompressedHeaderSize
Definition: vdpau.h:3379
VdpPictureInfoMPEG1Or2::q_scale_type
uint8_t q_scale_type
Definition: vdpau.h:3008
VdpPictureInfoH264::transform_8x8_mode_flag
uint8_t transform_8x8_mode_flag
Definition: vdpau.h:3101
VdpPresentationQueueGetTime
VdpStatus VdpPresentationQueueGetTime(VdpPresentationQueue presentation_queue, VdpTime *current_time)
Retrieve the presentation queue's "current" time.
Definition: vdpau.h:4627
VDP_PRESENTATION_QUEUE_STATUS_IDLE
@ VDP_PRESENTATION_QUEUE_STATUS_IDLE
Definition: vdpau.h:4709
VdpPictureInfoVC1::dquant
uint8_t dquant
Definition: vdpau.h:3200
VdpDevice
uint32_t VdpDevice
An opaque handle representing a VdpDevice object.
Definition: vdpau.h:1538
VdpOutputSurfaceRenderBlendFactor
VdpOutputSurfaceRenderBlendFactor
The blending equation factors.
Definition: vdpau.h:2332
VdpRect::x0
uint32_t x0
Definition: vdpau.h:1265
VDP_STATUS_INVALID_STRUCT_VERSION
@ VDP_STATUS_INVALID_STRUCT_VERSION
Definition: vdpau.h:1413
VdpPictureInfoMPEG4Part2
Picture parameter information for an MPEG-4 Part 2 picture.
Definition: vdpau.h:3271
VdpPictureInfoHEVC444::persistentRiceAdaptationEnableFlag
uint8_t persistentRiceAdaptationEnableFlag
Definition: vdpau.h:3625
VdpLayer
Definition of an additional VdpOutputSurface layer in the composting model.
Definition: vdpau.h:4383
VdpDecoderCapability
VdpDecoderCapability
Definition: vdpau.h:2822
VdpPictureInfoHEVC::NumPocStCurrBefore
uint8_t NumPocStCurrBefore
Definition: vdpau.h:3579
VdpColor::green
float green
Definition: vdpau.h:1284
VdpPresentationQueueGetBackgroundColor
VdpStatus VdpPresentationQueueGetBackgroundColor(VdpPresentationQueue presentation_queue, VdpColor *background_color)
Retrieve the current background color setting.
Definition: vdpau.h:4615
VDP_STATUS_INVALID_POINTER
@ VDP_STATUS_INVALID_POINTER
Definition: vdpau.h:1327
VdpVideoSurfaceSupportedPictureStructure
VdpVideoSurfaceSupportedPictureStructure
Definition: vdpau.h:2817
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_DST_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_DST_COLOR
Definition: vdpau.h:2342
VdpPictureInfoHEVC::CurrPicOrderCntVal
int32_t CurrPicOrderCntVal
Definition: vdpau.h:3564
VdpPictureInfoH264Predictive
Picture parameter information for an H.264 Hi444PP picture.
Definition: vdpau.h:3136
VdpPictureInfoVP9::frameContextIdx
unsigned short frameContextIdx
Definition: vdpau.h:3336
VdpDeviceDestroy
VdpStatus VdpDeviceDestroy(VdpDevice device)
Destroy a VdpDevice.
Definition: vdpau.h:1545
VdpPictureInfoMPEG1Or2::forward_reference
VdpVideoSurface forward_reference
Definition: vdpau.h:2988
VdpDecoderQueryProfileCapability
VdpStatus VdpDecoderQueryProfileCapability(VdpDevice device, VdpDecoderProfile profile, VdpDecoderCapability capability, void *capability_value)
Query the supported value of the requested capability, for the specified profile on the specified dev...
Definition: vdpau.h:2849
VdpProcamp::saturation
float saturation
Definition: vdpau.h:1618
VdpPictureInfoVC1::vstransform
uint8_t vstransform
Definition: vdpau.h:3214
VdpOutputSurfaceGetBitsNative
VdpStatus VdpOutputSurfaceGetBitsNative(VdpOutputSurface surface, VdpRect const *source_rect, void *const *destination_data, uint32_t const *destination_pitches)
Copy image data from a VdpOutputSurface to application memory in the surface's native format.
Definition: vdpau.h:2067
VdpPictureInfoH264::pic_init_qp_minus26
int8_t pic_init_qp_minus26
Definition: vdpau.h:3104
VdpPictureInfoVC1::range_mapuv
uint8_t range_mapuv
Definition: vdpau.h:3224
VdpPictureInfoVC1
Picture parameter information for a VC1 picture.
Definition: vdpau.h:3164
VdpPictureInfoHEVC::pps_cr_qp_offset
int8_t pps_cr_qp_offset
Definition: vdpau.h:3484
VdpVideoMixerGetAttributeValues
VdpStatus VdpVideoMixerGetAttributeValues(VdpVideoMixer mixer, uint32_t attribute_count, VdpVideoMixerAttribute const *attributes, void *const *attribute_values)
Retrieve current attribute values.
Definition: vdpau.h:4339
VdpPictureInfoH264::weighted_pred_flag
uint8_t weighted_pred_flag
Definition: vdpau.h:3098
VdpPictureInfoHEVC::log2_diff_max_min_luma_coding_block_size
uint8_t log2_diff_max_min_luma_coding_block_size
Definition: vdpau.h:3417
VdpPictureInfoVP9
Definition: vdpau.h:3324
VdpBitstreamBuffer::bitstream_bytes
uint32_t bitstream_bytes
Definition: vdpau.h:2960
VdpRGBAFormat
uint32_t VdpRGBAFormat
The set of all known RGB surface formats.
Definition: vdpau.h:1119
VdpOutputSurfaceRenderBlendState::blend_equation_color
VdpOutputSurfaceRenderBlendEquation blend_equation_color
Definition: vdpau.h:2392
VdpPictureInfoHEVC::deblocking_filter_override_enabled_flag
uint8_t deblocking_filter_override_enabled_flag
Definition: vdpau.h:3512
VdpPictureInfoH264::weighted_bipred_idc
uint8_t weighted_bipred_idc
Definition: vdpau.h:3099
VdpPictureInfoHEVC::weighted_pred_flag
uint8_t weighted_pred_flag
Definition: vdpau.h:3486
VdpGetErrorString
char const * VdpGetErrorString(VdpStatus status)
Retrieve a string describing an error code.
Definition: vdpau.h:1444
VdpBitmapSurfaceDestroy
VdpStatus VdpBitmapSurfaceDestroy(VdpBitmapSurface surface)
Destroy a VdpBitmapSurface.
Definition: vdpau.h:2266
VdpPictureInfoVP9::keyFrame
unsigned short keyFrame
Definition: vdpau.h:3337
VdpVideoSurfacePutBitsYCbCr
VdpStatus VdpVideoSurfacePutBitsYCbCr(VdpVideoSurface surface, VdpYCbCrFormat source_ycbcr_format, void const *const *source_data, uint32_t const *source_pitches)
Copy image data from application memory in a specific YCbCr format to a VdpVideoSurface.
Definition: vdpau.h:1857
VdpPictureInfoMPEG4Part2::top_field_first
uint8_t top_field_first
Definition: vdpau.h:3301
VDP_STATUS_OK
@ VDP_STATUS_OK
Definition: vdpau.h:1303
VdpPictureInfoHEVC::constrained_intra_pred_flag
uint8_t constrained_intra_pred_flag
Definition: vdpau.h:3478
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_BOTTOM_FIELD
@ VDP_VIDEO_MIXER_PICTURE_STRUCTURE_BOTTOM_FIELD
Definition: vdpau.h:4370
VdpPictureInfoHEVC::sps_temporal_mvp_enabled_flag
uint8_t sps_temporal_mvp_enabled_flag
Definition: vdpau.h:3462
VdpPictureInfoVP9::qpYDc
int qpYDc
Definition: vdpau.h:3370
VdpPictureInfoVP9::bitDepthMinus8Chroma
unsigned char bitDepthMinus8Chroma
Definition: vdpau.h:3350
VdpPictureInfoH264::redundant_pic_cnt_present_flag
uint8_t redundant_pic_cnt_present_flag
Definition: vdpau.h:3115
VdpPictureInfoHEVC::NumDeltaPocsOfRefRpsIdx
uint32_t NumDeltaPocsOfRefRpsIdx
Definition: vdpau.h:3545
VdpPictureInfoHEVC::pcm_sample_bit_depth_luma_minus1
uint8_t pcm_sample_bit_depth_luma_minus1
Definition: vdpau.h:3446
VdpPictureInfoHEVC::scaling_list_enabled_flag
uint8_t scaling_list_enabled_flag
Definition: vdpau.h:3422
VdpOutputSurfaceCreate
VdpStatus VdpOutputSurfaceCreate(VdpDevice device, VdpRGBAFormat rgba_format, uint32_t width, uint32_t height, VdpOutputSurface *surface)
Create a VdpOutputSurface.
Definition: vdpau.h:2013
VdpPictureInfoVC1::finterpflag
uint8_t finterpflag
Definition: vdpau.h:3196
VdpPictureInfoVC1::quantizer
uint8_t quantizer
Definition: vdpau.h:3206
VdpPictureInfoH264::slice_count
uint32_t slice_count
Definition: vdpau.h:3082
VdpPictureInfoHEVC444::transformSkipContextEnableFlag
uint8_t transformSkipContextEnableFlag
Definition: vdpau.h:3613
VdpRect::y0
uint32_t y0
Definition: vdpau.h:1267
VdpPictureInfoVC1::picture_type
uint8_t picture_type
Definition: vdpau.h:3179
VdpPoint::x
uint32_t x
Definition: vdpau.h:1248
VdpPictureInfoHEVC444::chromaQpAdjustmentTableSize
uint8_t chromaQpAdjustmentTableSize
Definition: vdpau.h:3642
VdpPictureInfoVP9::compressedHeaderSize
unsigned int compressedHeaderSize
Definition: vdpau.h:3380
VdpPictureInfoHEVC::dependent_slice_segments_enabled_flag
uint8_t dependent_slice_segments_enabled_flag
Definition: vdpau.h:3470
VdpBitstreamBuffer::bitstream
void const * bitstream
Definition: vdpau.h:2958
VdpPictureInfoHEVC444::log2SaoOffsetScaleLuma
uint8_t log2SaoOffsetScaleLuma
Definition: vdpau.h:3645
VdpPictureInfoHEVC::cabac_init_present_flag
uint8_t cabac_init_present_flag
Definition: vdpau.h:3474
VdpPictureInfoVC1::pulldown
uint8_t pulldown
Definition: vdpau.h:3190
VDP_STATUS_INVALID_DECODER_PROFILE
@ VDP_STATUS_INVALID_DECODER_PROFILE
Definition: vdpau.h:1369
VdpOutputSurfaceRenderBlendState::blend_factor_source_color
VdpOutputSurfaceRenderBlendFactor blend_factor_source_color
Definition: vdpau.h:2388
VdpPictureInfoHEVC444::log2MaxTransformSkipSize
uint8_t log2MaxTransformSkipSize
Definition: vdpau.h:3634
VDP_VIDEO_SURFACE_FRAME_STRUCTURE
@ VDP_VIDEO_SURFACE_FRAME_STRUCTURE
Definition: vdpau.h:2819
VdpVideoMixerQueryParameterSupport
VdpStatus VdpVideoMixerQueryParameterSupport(VdpDevice device, VdpVideoMixerParameter parameter, VdpBool *is_supported)
Query the implementation's support for a specific parameter.
Definition: vdpau.h:4138
VdpOutputSurfaceRenderOutputSurface
VdpStatus VdpOutputSurfaceRenderOutputSurface(VdpOutputSurface destination_surface, VdpRect const *destination_rect, VdpOutputSurface source_surface, VdpRect const *source_rect, VdpColor const *colors, VdpOutputSurfaceRenderBlendState const *blend_state, uint32_t flags)
Composite a sub-rectangle of a VdpOutputSurface into a sub-rectangle of another VdpOutputSurface; Out...
Definition: vdpau.h:2503
VdpOutputSurfaceRenderBlendState::blend_constant
VdpColor blend_constant
Definition: vdpau.h:2394
VdpPresentationQueueDisplay
VdpStatus VdpPresentationQueueDisplay(VdpPresentationQueue presentation_queue, VdpOutputSurface surface, uint32_t clip_width, uint32_t clip_height, VdpTime earliest_presentation_time)
Enter a surface into the presentation queue.
Definition: vdpau.h:4673
VdpLayer::source_rect
VdpRect const * source_rect
Definition: vdpau.h:4396
VdpPictureInfoHEVC::num_long_term_ref_pics_sps
uint8_t num_long_term_ref_pics_sps
Definition: vdpau.h:3461
VdpPictureInfoVP9::subSamplingX
unsigned short subSamplingX
Definition: vdpau.h:3341
VdpPictureInfoHEVC::log2_parallel_merge_level_minus2
uint8_t log2_parallel_merge_level_minus2
Definition: vdpau.h:3523
VdpPictureInfoH264::frame_num
uint16_t frame_num
Definition: vdpau.h:3092
VdpOutputSurfaceQueryPutBitsYCbCrCapabilities
VdpStatus VdpOutputSurfaceQueryPutBitsYCbCrCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpYCbCrFormat bits_ycbcr_format, VdpBool *is_supported)
Query the implementation's capability to perform a PutBits operation using application data in a spec...
Definition: vdpau.h:1987
VdpVideoSurfaceCreate
VdpStatus VdpVideoSurfaceCreate(VdpDevice device, VdpChromaType chroma_type, uint32_t width, uint32_t height, VdpVideoSurface *surface)
Create a VdpVideoSurface.
Definition: vdpau.h:1779
VdpPictureInfoHEVC::NumShortTermPictureSliceHeaderBits
uint32_t NumShortTermPictureSliceHeaderBits
Definition: vdpau.h:3553
VDP_STATUS_INVALID_RGBA_FORMAT
@ VDP_STATUS_INVALID_RGBA_FORMAT
Definition: vdpau.h:1339
VDP_VIDEO_SURFACE_FIELD_STRUCTURE
@ VDP_VIDEO_SURFACE_FIELD_STRUCTURE
Definition: vdpau.h:2818
VdpBitmapSurfaceQueryCapabilities
VdpStatus VdpBitmapSurfaceQueryCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
Query the implementation's VdpBitmapSurface capabilities.
Definition: vdpau.h:2219
VdpPictureInfoHEVC::transform_skip_enabled_flag
uint8_t transform_skip_enabled_flag
Definition: vdpau.h:3479
VdpPictureInfoVC1::extended_mv
uint8_t extended_mv
Definition: vdpau.h:3208
VDP_STATUS_ERROR
@ VDP_STATUS_ERROR
Definition: vdpau.h:1432
VdpPreemptionCallbackRegister
VdpStatus VdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context)
Configure the display preemption callback.
Definition: vdpau.h:4804
VdpOutputSurfacePutBitsYCbCr
VdpStatus VdpOutputSurfacePutBitsYCbCr(VdpOutputSurface surface, VdpYCbCrFormat source_ycbcr_format, void const *const *source_data, uint32_t const *source_pitches, VdpRect const *destination_rect, VdpCSCMatrix const *csc_matrix)
Copy image data from application memory in a specific YCbCr format to a VdpOutputSurface.
Definition: vdpau.h:2160
VdpColor::blue
float blue
Definition: vdpau.h:1285
VDP_DECODER_PROFILE_SUPPORTED_PICTURE_STRUCTURE
@ VDP_DECODER_PROFILE_SUPPORTED_PICTURE_STRUCTURE
Definition: vdpau.h:2827
VdpPictureInfoMPEG1Or2::top_field_first
uint8_t top_field_first
Definition: vdpau.h:3009
VdpProcamp::struct_version
uint32_t struct_version
Definition: vdpau.h:1603
VdpPictureInfoHEVC::pcm_loop_filter_disabled_flag
uint8_t pcm_loop_filter_disabled_flag
Definition: vdpau.h:3454
VdpVideoMixerQueryAttributeSupport
VdpStatus VdpVideoMixerQueryAttributeSupport(VdpDevice device, VdpVideoMixerAttribute attribute, VdpBool *is_supported)
Query the implementation's support for a specific attribute.
Definition: vdpau.h:4154
VdpDecoder
uint32_t VdpDecoder
An opaque handle representing a VdpDecoder object.
Definition: vdpau.h:2889
VdpPictureInfoVC1::overlap
uint8_t overlap
Definition: vdpau.h:3212
VdpPictureInfoVP9::segmentMapTemporalUpdate
unsigned char segmentMapTemporalUpdate
Definition: vdpau.h:3360
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA_SATURATE
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_SRC_ALPHA_SATURATE
Definition: vdpau.h:2343
VdpPictureInfoH264::num_ref_frames
uint8_t num_ref_frames
Definition: vdpau.h:3095
VdpPictureInfoHEVC::log2_diff_max_min_transform_block_size
uint8_t log2_diff_max_min_transform_block_size
Definition: vdpau.h:3419
VdpPictureInfoDivX4
VdpPictureInfoMPEG4Part2 VdpPictureInfoDivX4
Picture parameter information for a DivX 4 picture.
Definition: vdpau.h:3313
VdpPictureInfoVP9::log2TileColumns
unsigned char log2TileColumns
Definition: vdpau.h:3355
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA
Definition: vdpau.h:2347
VdpOutputSurfaceRenderBitmapSurface
VdpStatus VdpOutputSurfaceRenderBitmapSurface(VdpOutputSurface destination_surface, VdpRect const *destination_rect, VdpBitmapSurface source_surface, VdpRect const *source_rect, VdpColor const *colors, VdpOutputSurfaceRenderBlendState const *blend_state, uint32_t flags)
Composite a sub-rectangle of a VdpBitmapSurface into a sub-rectangle of a VdpOutputSurface; Output Su...
Definition: vdpau.h:2583
VdpPictureInfoH264Predictive::pictureInfo
VdpPictureInfoH264 pictureInfo
Definition: vdpau.h:3138
VdpProcamp::brightness
float brightness
Definition: vdpau.h:1608
VdpVideoMixerDestroy
VdpStatus VdpVideoMixerDestroy(VdpVideoMixer mixer)
Destroy a VdpVideoMixer.
Definition: vdpau.h:4352
VdpGetProcAddress
VdpStatus VdpGetProcAddress(VdpDevice device, VdpFuncId function_id, void **function_pointer)
Retrieve a VDPAU function pointer.
Definition: vdpau.h:4965
VdpReferenceFrameH264::top_is_reference
VdpBool top_is_reference
Definition: vdpau.h:3042
VdpPresentationQueueTarget
uint32_t VdpPresentationQueueTarget
An opaque handle representing the location where video will be presented.
Definition: vdpau.h:4552
VdpDecoderGetParameters
VdpStatus VdpDecoderGetParameters(VdpDecoder decoder, VdpDecoderProfile *profile, uint32_t *width, uint32_t *height)
Retrieve the parameters used to create a VdpDecoder.
Definition: vdpau.h:2938
VdpPictureInfoHEVC::separate_colour_plane_flag
uint8_t separate_colour_plane_flag
Definition: vdpau.h:3407
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_DST_ALPHA
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_DST_ALPHA
Definition: vdpau.h:2340
VdpPictureInfoVC1::backward_reference
VdpVideoSurface backward_reference
Definition: vdpau.h:3174
VdpVideoSurface
uint32_t VdpVideoSurface
An opaque handle representing a VdpVideoSurface object.
Definition: vdpau.h:1732
VdpPictureInfoMPEG4Part2::backward_reference
VdpVideoSurface backward_reference
Definition: vdpau.h:3281
VdpPictureInfoHEVC::bit_depth_luma_minus8
uint8_t bit_depth_luma_minus8
Definition: vdpau.h:3410
VdpPictureInfoHEVC::max_transform_hierarchy_depth_inter
uint8_t max_transform_hierarchy_depth_inter
Definition: vdpau.h:3420
VdpPictureInfoHEVC::deblocking_filter_control_present_flag
uint8_t deblocking_filter_control_present_flag
Definition: vdpau.h:3509
VdpPictureInfoHEVC::num_ref_idx_l1_default_active_minus1
uint8_t num_ref_idx_l1_default_active_minus1
Definition: vdpau.h:3476
VdpPictureInfoMPEG4Part2::vop_time_increment_resolution
uint16_t vop_time_increment_resolution
Definition: vdpau.h:3289
VdpCSCMatrix
float VdpCSCMatrix[3][4]
Storage for a color space conversion matrix.
Definition: vdpau.h:1587
VdpPictureInfoH264::log2_max_pic_order_cnt_lsb_minus4
uint8_t log2_max_pic_order_cnt_lsb_minus4
Definition: vdpau.h:3109
VdpPictureInfoHEVC::num_short_term_ref_pic_sets
uint8_t num_short_term_ref_pic_sets
Definition: vdpau.h:3457
VdpPictureInfoVP9::log2TileRows
unsigned char log2TileRows
Definition: vdpau.h:3356
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_CONSTANT_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_CONSTANT_COLOR
Definition: vdpau.h:2344
VDP_DECODER_PROFILE_MAX_HEIGHT
@ VDP_DECODER_PROFILE_MAX_HEIGHT
Definition: vdpau.h:2826
VdpPictureInfoHEVC::log2_min_pcm_luma_coding_block_size_minus3
uint8_t log2_min_pcm_luma_coding_block_size_minus3
Definition: vdpau.h:3450
VdpPresentationQueueQuerySurfaceStatus
VdpStatus VdpPresentationQueueQuerySurfaceStatus(VdpPresentationQueue presentation_queue, VdpOutputSurface surface, VdpPresentationQueueStatus *status, VdpTime *first_presentation_time)
Poll the current queue status of a surface.
Definition: vdpau.h:4727
VdpPoint
A location within a surface.
Definition: vdpau.h:1246
VdpPictureInfoHEVC::num_extra_slice_header_bits
uint8_t num_extra_slice_header_bits
Definition: vdpau.h:3472
VdpOutputSurfaceRenderBlendState::struct_version
uint32_t struct_version
Definition: vdpau.h:2387
VdpGetInformationString
VdpStatus VdpGetInformationString(char const **information_string)
Retrieve an implementation-specific string description of the implementation. This typically includes...
Definition: vdpau.h:1514
VDP_STATUS_INVALID_HANDLE
@ VDP_STATUS_INVALID_HANDLE
Definition: vdpau.h:1320
VdpPictureInfoVC1::maxbframes
uint8_t maxbframes
Definition: vdpau.h:3247
VdpPictureInfoVC1::multires
uint8_t multires
Definition: vdpau.h:3230
VdpPictureInfoHEVC444::intraBlockCopyEnableFlag
uint8_t intraBlockCopyEnableFlag
Definition: vdpau.h:3629
VdpPictureInfoVC1::tfcntrflag
uint8_t tfcntrflag
Definition: vdpau.h:3194
VdpPictureInfoMPEG1Or2::intra_vlc_format
uint8_t intra_vlc_format
Definition: vdpau.h:3006
VdpPictureInfoHEVC::sign_data_hiding_enabled_flag
uint8_t sign_data_hiding_enabled_flag
Definition: vdpau.h:3473
VdpPictureInfoMPEG1Or2::full_pel_backward_vector
uint8_t full_pel_backward_vector
Definition: vdpau.h:3013
VdpBitmapSurfaceGetParameters
VdpStatus VdpBitmapSurfaceGetParameters(VdpBitmapSurface surface, VdpRGBAFormat *rgba_format, uint32_t *width, uint32_t *height, VdpBool *frequently_accessed)
Retrieve the parameters used to create a VdpBitmapSurface.
Definition: vdpau.h:2281
VdpPictureInfoMPEG1Or2::frame_pred_frame_dct
uint8_t frame_pred_frame_dct
Definition: vdpau.h:3004
VDP_STATUS_DISPLAY_PREEMPTED
@ VDP_STATUS_DISPLAY_PREEMPTED
Definition: vdpau.h:1313
VdpPictureInfoHEVC::diff_cu_qp_delta_depth
uint8_t diff_cu_qp_delta_depth
Definition: vdpau.h:3482
VDP_STATUS_INVALID_BLEND_FACTOR
@ VDP_STATUS_INVALID_BLEND_FACTOR
Definition: vdpau.h:1356
VDP_STATUS_INVALID_BLEND_EQUATION
@ VDP_STATUS_INVALID_BLEND_EQUATION
Definition: vdpau.h:1361
VDP_PRESENTATION_QUEUE_STATUS_QUEUED
@ VDP_PRESENTATION_QUEUE_STATUS_QUEUED
Definition: vdpau.h:4711
VdpPictureInfoMPEG1Or2::slice_count
uint32_t slice_count
Definition: vdpau.h:2995
VdpPictureInfoH264Predictive::separate_colour_plane_flag
uint8_t separate_colour_plane_flag
Definition: vdpau.h:3153
VdpColor::alpha
float alpha
Definition: vdpau.h:1286
VdpPictureInfoHEVC::transquant_bypass_enabled_flag
uint8_t transquant_bypass_enabled_flag
Definition: vdpau.h:3488
VDP_STATUS_HANDLE_DEVICE_MISMATCH
@ VDP_STATUS_HANDLE_DEVICE_MISMATCH
Definition: vdpau.h:1428
VdpPictureInfoVC1::refdist_flag
uint8_t refdist_flag
Definition: vdpau.h:3204
VdpDecoderDestroy
VdpStatus VdpDecoderDestroy(VdpDecoder decoder)
Destroy a VdpDecoder.
Definition: vdpau.h:2922
VdpPictureInfoHEVC::log2_max_pic_order_cnt_lsb_minus4
uint8_t log2_max_pic_order_cnt_lsb_minus4
Definition: vdpau.h:3412
VdpPictureInfoHEVC::num_tile_rows_minus1
uint8_t num_tile_rows_minus1
Definition: vdpau.h:3494
VdpPictureInfoH264::deblocking_filter_control_present_flag
uint8_t deblocking_filter_control_present_flag
Definition: vdpau.h:3114
VdpPictureInfoVP9::subSamplingY
unsigned short subSamplingY
Definition: vdpau.h:3342
VdpBitmapSurfaceCreate
VdpStatus VdpBitmapSurfaceCreate(VdpDevice device, VdpRGBAFormat rgba_format, uint32_t width, uint32_t height, VdpBool frequently_accessed, VdpBitmapSurface *surface)
Create a VdpBitmapSurface.
Definition: vdpau.h:2251
VdpProcamp
Procamp operation parameterization data.
Definition: vdpau.h:1599
VdpReferenceFrameH264::surface
VdpVideoSurface surface
Definition: vdpau.h:3035
VDP_STATUS_INVALID_INDEXED_FORMAT
@ VDP_STATUS_INVALID_INDEXED_FORMAT
Definition: vdpau.h:1343
VdpPictureInfoMPEG4Part2::vop_fcode_backward
uint8_t vop_fcode_backward
Definition: vdpau.h:3292
VdpPresentationQueueBlockUntilSurfaceIdle
VdpStatus VdpPresentationQueueBlockUntilSurfaceIdle(VdpPresentationQueue presentation_queue, VdpOutputSurface surface, VdpTime *first_presentation_time)
Wait for a surface to finish being displayed.
Definition: vdpau.h:4696
VdpLayer::struct_version
uint32_t struct_version
Definition: vdpau.h:4387
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR
Definition: vdpau.h:2345
VdpPictureInfoVC1::rangered
uint8_t rangered
Definition: vdpau.h:3242
VdpTime
uint64_t VdpTime
The representation of a point in time.
Definition: vdpau.h:4542
VdpVideoMixerGetFeatureSupport
VdpStatus VdpVideoMixerGetFeatureSupport(VdpVideoMixer mixer, uint32_t feature_count, VdpVideoMixerFeature const *features, VdpBool *feature_supports)
Retrieve whether features were requested at creation time.
Definition: vdpau.h:4282
VdpVideoMixerQueryFeatureSupport
VdpStatus VdpVideoMixerQueryFeatureSupport(VdpDevice device, VdpVideoMixerFeature feature, VdpBool *is_supported)
Query the implementation's support for a specific feature.
Definition: vdpau.h:4121
VdpPictureInfoVC1::frame_coding_mode
uint8_t frame_coding_mode
Definition: vdpau.h:3181
VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ZERO
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ZERO
Definition: vdpau.h:2333
VdpBitmapSurface
uint32_t VdpBitmapSurface
An opaque handle representing a VdpBitmapSurface object.
Definition: vdpau.h:2232
VdpOutputSurface
uint32_t VdpOutputSurface
An opaque handle representing a VdpOutputSurface object.
Definition: vdpau.h:1999
VDP_STATUS_NO_IMPLEMENTATION
@ VDP_STATUS_NO_IMPLEMENTATION
Definition: vdpau.h:1307
VDP_STATUS_INVALID_VIDEO_MIXER_ATTRIBUTE
@ VDP_STATUS_INVALID_VIDEO_MIXER_ATTRIBUTE
Definition: vdpau.h:1381
VdpPictureInfoHEVC444::pictureInfo
VdpPictureInfoHEVC pictureInfo
Definition: vdpau.h:3606
VdpGenerateCSCMatrix
VdpStatus VdpGenerateCSCMatrix(VdpProcamp *procamp, VdpColorStandard standard, VdpCSCMatrix *csc_matrix)
Generate a color space conversion matrix.
Definition: vdpau.h:1649
VdpVideoSurfaceGetBitsYCbCr
VdpStatus VdpVideoSurfaceGetBitsYCbCr(VdpVideoSurface surface, VdpYCbCrFormat destination_ycbcr_format, void *const *destination_data, uint32_t const *destination_pitches)
Copy image data from a VdpVideoSurface to application memory in a specified YCbCr format.
Definition: vdpau.h:1832
VdpVideoMixerSetFeatureEnables
VdpStatus VdpVideoMixerSetFeatureEnables(VdpVideoMixer mixer, uint32_t feature_count, VdpVideoMixerFeature const *features, VdpBool const *feature_enables)
Enable or disable features.
Definition: vdpau.h:4245
VdpPictureInfoH264::bottom_field_flag
uint8_t bottom_field_flag
Definition: vdpau.h:3094
VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_SUBTRACT
@ VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_SUBTRACT
Definition: vdpau.h:2355
VdpPictureInfoMPEG1Or2
Picture parameter information for an MPEG 1 or MPEG 2 picture.
Definition: vdpau.h:2983
VdpReferenceFrameH264
Information about an H.264 reference frame.
Definition: vdpau.h:3030
VdpPictureInfoVP9::segmentFeatureMode
unsigned char segmentFeatureMode
Definition: vdpau.h:3361
VdpRect::y1
uint32_t y1
Definition: vdpau.h:1271
VdpLayer::source_surface
VdpOutputSurface source_surface
Definition: vdpau.h:4391
VdpVideoMixer
uint32_t VdpVideoMixer
An opaque handle representing a VdpVideoMixer object.
Definition: vdpau.h:4200
VdpPictureInfoHEVC::log2_min_luma_coding_block_size_minus3
uint8_t log2_min_luma_coding_block_size_minus3
Definition: vdpau.h:3416
VdpBitstreamBuffer
Application data buffer containing compressed video data.
Definition: vdpau.h:2952
VdpPictureInfoHEVC::entropy_coding_sync_enabled_flag
uint8_t entropy_coding_sync_enabled_flag
Definition: vdpau.h:3490
VdpPictureInfoHEVC444::highPrecisionOffsetsEnableFlag
uint8_t highPrecisionOffsetsEnableFlag
Definition: vdpau.h:3623
VdpPictureInfoHEVC444::log2SaoOffsetScaleChroma
uint8_t log2SaoOffsetScaleChroma
Definition: vdpau.h:3647
VDP_STATUS_INVALID_COLOR_TABLE_FORMAT
@ VDP_STATUS_INVALID_COLOR_TABLE_FORMAT
Definition: vdpau.h:1351
VdpPictureInfoHEVC::NumLongTermPictureSliceHeaderBits
uint32_t NumLongTermPictureSliceHeaderBits
Definition: vdpau.h:3558
VdpPictureInfoHEVC::weighted_bipred_flag
uint8_t weighted_bipred_flag
Definition: vdpau.h:3487
VdpPictureInfoVP9::altReference
VdpVideoSurface altReference
Definition: vdpau.h:3331
VdpPictureInfoHEVC::amp_enabled_flag
uint8_t amp_enabled_flag
Definition: vdpau.h:3442
VdpPictureInfoHEVC::slice_segment_header_extension_present_flag
uint8_t slice_segment_header_extension_present_flag
Definition: vdpau.h:3524
VdpPictureInfoHEVC::init_qp_minus26
int8_t init_qp_minus26
Definition: vdpau.h:3477
VdpFuncId
uint32_t VdpFuncId
A type suitable for VdpGetProcAddress's function_id parameter.
Definition: vdpau.h:4827
VdpPictureInfoHEVC::pps_loop_filter_across_slices_enabled_flag
uint8_t pps_loop_filter_across_slices_enabled_flag
Definition: vdpau.h:3508
VdpPictureInfoHEVC::uniform_spacing_flag
uint8_t uniform_spacing_flag
Definition: vdpau.h:3496
VdpPictureInfoMPEG1Or2::concealment_motion_vectors
uint8_t concealment_motion_vectors
Definition: vdpau.h:3005
VdpPictureInfoH264::chroma_qp_index_offset
int8_t chroma_qp_index_offset
Definition: vdpau.h:3102
VdpPictureInfoHEVC::cu_qp_delta_enabled_flag
uint8_t cu_qp_delta_enabled_flag
Definition: vdpau.h:3480
VdpPictureInfoVC1::syncmarker
uint8_t syncmarker
Definition: vdpau.h:3235
VdpPictureInfoHEVC::NumPocTotalCurr
uint32_t NumPocTotalCurr
Definition: vdpau.h:3541
VdpOutputSurfaceQueryGetPutBitsNativeCapabilities
VdpStatus VdpOutputSurfaceQueryGetPutBitsNativeCapabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported)
Query the implementation's capability to perform a PutBits operation using application data matching ...
Definition: vdpau.h:1945
VdpPictureInfoVC1::psf
uint8_t psf
Definition: vdpau.h:3198
VdpPresentationQueueDestroy
VdpStatus VdpPresentationQueueDestroy(VdpPresentationQueue presentation_queue)
Destroy a VdpPresentationQueue.
Definition: vdpau.h:4592
VdpPictureInfoVP9::goldenReference
VdpVideoSurface goldenReference
Definition: vdpau.h:3330
VdpPictureInfoMPEG4Part2::vop_fcode_forward
uint8_t vop_fcode_forward
Definition: vdpau.h:3291
VdpPictureInfoHEVC::max_transform_hierarchy_depth_intra
uint8_t max_transform_hierarchy_depth_intra
Definition: vdpau.h:3421
VDP_PRESENTATION_QUEUE_STATUS_VISIBLE
@ VDP_PRESENTATION_QUEUE_STATUS_VISIBLE
Definition: vdpau.h:4713
VdpPictureInfoVP9::mcompFilterType
unsigned int mcompFilterType
Definition: vdpau.h:3376
VdpVideoMixerFeature
uint32_t VdpVideoMixerFeature
A VdpVideoMixer feature that must be requested at creation time to be used.
Definition: vdpau.h:3769
VdpVideoSurfaceGetParameters
VdpStatus VdpVideoSurfaceGetParameters(VdpVideoSurface surface, VdpChromaType *chroma_type, uint32_t *width, uint32_t *height)
Retrieve the parameters used to create a VdpVideoSurface.
Definition: vdpau.h:1806
VdpPictureInfoDivX5
VdpPictureInfoMPEG4Part2 VdpPictureInfoDivX5
Picture parameter information for a DivX 5 picture.
Definition: vdpau.h:3321
VdpPictureInfoH264::field_pic_flag
uint8_t field_pic_flag
Definition: vdpau.h:3093
VdpPictureInfoHEVC::chroma_format_idc
uint8_t chroma_format_idc
Definition: vdpau.h:3405
VdpPictureInfoVC1::panscan_flag
uint8_t panscan_flag
Definition: vdpau.h:3202
VdpPictureInfoMPEG1Or2::picture_coding_type
uint8_t picture_coding_type
Definition: vdpau.h:3002
VDP_STATUS_INVALID_VALUE
@ VDP_STATUS_INVALID_VALUE
Definition: vdpau.h:1407
VdpPictureInfoVP9::showFrame
unsigned short showFrame
Definition: vdpau.h:3338
VdpPictureInfoVC1::range_mapy_flag
uint8_t range_mapy_flag
Definition: vdpau.h:3220
VdpPictureInfoVP9::segmentMapUpdate
unsigned char segmentMapUpdate
Definition: vdpau.h:3359