├── .github └── workflows │ ├── EnterDevShell.ps1 │ ├── freebsd.yml │ ├── ubuntu.yml │ └── windows.yml ├── Android.bp ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── common ├── Makefile.am ├── loadsurface.h ├── loadsurface_yuv.h ├── meson.build ├── va_display.c ├── va_display.h ├── va_display_drm.c ├── va_display_wayland.c ├── va_display_win32.cpp └── va_display_x11.c ├── configure.ac ├── decode ├── Makefile.am ├── loadjpeg.c ├── meson.build ├── mpeg2-I.gif ├── mpeg2-I.m2v ├── mpeg2vldemo.cpp ├── tinyjpeg-internal.h ├── tinyjpeg.c └── tinyjpeg.h ├── encode ├── Makefile.am ├── av1encode.c ├── avcenc.c ├── h264encode.c ├── hevcencode.c ├── jpegenc.c ├── jpegenc_utils.h ├── meson.build ├── mpeg2vaenc.c ├── svctenc.c ├── vp8enc.c └── vp9enc.c ├── getopt ├── getopt.h ├── getopt_long.c └── meson.build ├── meson.build ├── meson_options.txt ├── putsurface ├── Makefile.am ├── meson.build ├── putsurface_common.c ├── putsurface_wayland.c └── putsurface_x11.c ├── security.md ├── style_unify ├── subprojects └── DirectX-Headers.wrap ├── test ├── Makefile.am ├── compat_win32.h ├── gtest │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── AdvancedGuide.md │ │ ├── DevGuide.md │ │ ├── Documentation.md │ │ ├── FAQ.md │ │ ├── Primer.md │ │ ├── PumpManual.md │ │ ├── README.md │ │ ├── Samples.md │ │ └── XcodeGuide.md │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── meson.build ├── test.h ├── test_data.h ├── test_defs.h ├── test_internal.cpp ├── test_main.cpp ├── test_streamable.h ├── test_utils.h ├── test_va_api_config_attribs.cpp ├── test_va_api_createbuffer.cpp ├── test_va_api_createcontext.cpp ├── test_va_api_createsurfaces.cpp ├── test_va_api_display_attribs.cpp ├── test_va_api_fixture.cpp ├── test_va_api_fixture.h ├── test_va_api_get_create_config.cpp ├── test_va_api_get_max_values.cpp ├── test_va_api_init_terminate.cpp ├── test_va_api_query_config.cpp └── test_va_api_query_vendor.cpp ├── vainfo ├── Makefile.am ├── meson.build └── vainfo.c ├── vendor └── intel │ ├── Makefile.am │ ├── avcstreamoutdemo.c │ ├── avcstreamoutdemo.h │ ├── meson.build │ └── sfcsample │ ├── DecodeParamBuffer.h │ ├── Makefile.am │ ├── TestMain.cpp │ ├── VDecAccelVA.cpp │ ├── VDecAccelVA.h │ └── meson.build └── videoprocess ├── Makefile.am ├── README.md ├── meson.build ├── process.cfg.template ├── process_3dlut.cfg.template ├── process_blending.cfg.template ├── process_chromasitting.cfg.template ├── process_denoise.cfg.template ├── process_hdr_tm_h2h.cfg.template ├── process_hdr_tm_h2s.cfg.template ├── process_scaling_csc.cfg.template ├── process_scaling_n_out_usrptr.cfg.template ├── process_sharpness.cfg.template ├── process_va_copy.cfg.template ├── vacopy.cpp ├── vavpp.cpp ├── vpp3dlut.cpp ├── vppblending.cpp ├── vppchromasitting.cpp ├── vppdenoise.cpp ├── vpphdr_tm.cpp ├── vppscaling_csc.cpp ├── vppscaling_n_out_usrptr.cpp └── vppsharpness.cpp /.github/workflows/EnterDevShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/.github/workflows/EnterDevShell.ps1 -------------------------------------------------------------------------------- /.github/workflows/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/.github/workflows/freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/Android.bp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/loadsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/loadsurface.h -------------------------------------------------------------------------------- /common/loadsurface_yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/loadsurface_yuv.h -------------------------------------------------------------------------------- /common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/meson.build -------------------------------------------------------------------------------- /common/va_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display.c -------------------------------------------------------------------------------- /common/va_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display.h -------------------------------------------------------------------------------- /common/va_display_drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display_drm.c -------------------------------------------------------------------------------- /common/va_display_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display_wayland.c -------------------------------------------------------------------------------- /common/va_display_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display_win32.cpp -------------------------------------------------------------------------------- /common/va_display_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/common/va_display_x11.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/configure.ac -------------------------------------------------------------------------------- /decode/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/Makefile.am -------------------------------------------------------------------------------- /decode/loadjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/loadjpeg.c -------------------------------------------------------------------------------- /decode/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/meson.build -------------------------------------------------------------------------------- /decode/mpeg2-I.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/mpeg2-I.gif -------------------------------------------------------------------------------- /decode/mpeg2-I.m2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/mpeg2-I.m2v -------------------------------------------------------------------------------- /decode/mpeg2vldemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/mpeg2vldemo.cpp -------------------------------------------------------------------------------- /decode/tinyjpeg-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/tinyjpeg-internal.h -------------------------------------------------------------------------------- /decode/tinyjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/tinyjpeg.c -------------------------------------------------------------------------------- /decode/tinyjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/decode/tinyjpeg.h -------------------------------------------------------------------------------- /encode/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/Makefile.am -------------------------------------------------------------------------------- /encode/av1encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/av1encode.c -------------------------------------------------------------------------------- /encode/avcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/avcenc.c -------------------------------------------------------------------------------- /encode/h264encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/h264encode.c -------------------------------------------------------------------------------- /encode/hevcencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/hevcencode.c -------------------------------------------------------------------------------- /encode/jpegenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/jpegenc.c -------------------------------------------------------------------------------- /encode/jpegenc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/jpegenc_utils.h -------------------------------------------------------------------------------- /encode/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/meson.build -------------------------------------------------------------------------------- /encode/mpeg2vaenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/mpeg2vaenc.c -------------------------------------------------------------------------------- /encode/svctenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/svctenc.c -------------------------------------------------------------------------------- /encode/vp8enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/vp8enc.c -------------------------------------------------------------------------------- /encode/vp9enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/encode/vp9enc.c -------------------------------------------------------------------------------- /getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/getopt/getopt.h -------------------------------------------------------------------------------- /getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/getopt/getopt_long.c -------------------------------------------------------------------------------- /getopt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/getopt/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/meson_options.txt -------------------------------------------------------------------------------- /putsurface/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/putsurface/Makefile.am -------------------------------------------------------------------------------- /putsurface/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/putsurface/meson.build -------------------------------------------------------------------------------- /putsurface/putsurface_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/putsurface/putsurface_common.c -------------------------------------------------------------------------------- /putsurface/putsurface_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/putsurface/putsurface_wayland.c -------------------------------------------------------------------------------- /putsurface/putsurface_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/putsurface/putsurface_x11.c -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/security.md -------------------------------------------------------------------------------- /style_unify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/style_unify -------------------------------------------------------------------------------- /subprojects/DirectX-Headers.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/subprojects/DirectX-Headers.wrap -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/compat_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/compat_win32.h -------------------------------------------------------------------------------- /test/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/LICENSE -------------------------------------------------------------------------------- /test/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/README.md -------------------------------------------------------------------------------- /test/gtest/docs/AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/AdvancedGuide.md -------------------------------------------------------------------------------- /test/gtest/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/DevGuide.md -------------------------------------------------------------------------------- /test/gtest/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/Documentation.md -------------------------------------------------------------------------------- /test/gtest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/FAQ.md -------------------------------------------------------------------------------- /test/gtest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/Primer.md -------------------------------------------------------------------------------- /test/gtest/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/PumpManual.md -------------------------------------------------------------------------------- /test/gtest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/README.md -------------------------------------------------------------------------------- /test/gtest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/Samples.md -------------------------------------------------------------------------------- /test/gtest/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/docs/XcodeGuide.md -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/custom/README.md -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /test/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /test/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /test/gtest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest.cc -------------------------------------------------------------------------------- /test/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test.h -------------------------------------------------------------------------------- /test/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_data.h -------------------------------------------------------------------------------- /test/test_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_defs.h -------------------------------------------------------------------------------- /test/test_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_internal.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_main.cpp -------------------------------------------------------------------------------- /test/test_streamable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_streamable.h -------------------------------------------------------------------------------- /test/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_utils.h -------------------------------------------------------------------------------- /test/test_va_api_config_attribs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_config_attribs.cpp -------------------------------------------------------------------------------- /test/test_va_api_createbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_createbuffer.cpp -------------------------------------------------------------------------------- /test/test_va_api_createcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_createcontext.cpp -------------------------------------------------------------------------------- /test/test_va_api_createsurfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_createsurfaces.cpp -------------------------------------------------------------------------------- /test/test_va_api_display_attribs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_display_attribs.cpp -------------------------------------------------------------------------------- /test/test_va_api_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_fixture.cpp -------------------------------------------------------------------------------- /test/test_va_api_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_fixture.h -------------------------------------------------------------------------------- /test/test_va_api_get_create_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_get_create_config.cpp -------------------------------------------------------------------------------- /test/test_va_api_get_max_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_get_max_values.cpp -------------------------------------------------------------------------------- /test/test_va_api_init_terminate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_init_terminate.cpp -------------------------------------------------------------------------------- /test/test_va_api_query_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_query_config.cpp -------------------------------------------------------------------------------- /test/test_va_api_query_vendor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/test/test_va_api_query_vendor.cpp -------------------------------------------------------------------------------- /vainfo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vainfo/Makefile.am -------------------------------------------------------------------------------- /vainfo/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vainfo/meson.build -------------------------------------------------------------------------------- /vainfo/vainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vainfo/vainfo.c -------------------------------------------------------------------------------- /vendor/intel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/Makefile.am -------------------------------------------------------------------------------- /vendor/intel/avcstreamoutdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/avcstreamoutdemo.c -------------------------------------------------------------------------------- /vendor/intel/avcstreamoutdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/avcstreamoutdemo.h -------------------------------------------------------------------------------- /vendor/intel/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/meson.build -------------------------------------------------------------------------------- /vendor/intel/sfcsample/DecodeParamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/DecodeParamBuffer.h -------------------------------------------------------------------------------- /vendor/intel/sfcsample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/Makefile.am -------------------------------------------------------------------------------- /vendor/intel/sfcsample/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/TestMain.cpp -------------------------------------------------------------------------------- /vendor/intel/sfcsample/VDecAccelVA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/VDecAccelVA.cpp -------------------------------------------------------------------------------- /vendor/intel/sfcsample/VDecAccelVA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/VDecAccelVA.h -------------------------------------------------------------------------------- /vendor/intel/sfcsample/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/vendor/intel/sfcsample/meson.build -------------------------------------------------------------------------------- /videoprocess/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/Makefile.am -------------------------------------------------------------------------------- /videoprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/README.md -------------------------------------------------------------------------------- /videoprocess/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/meson.build -------------------------------------------------------------------------------- /videoprocess/process.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_3dlut.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_3dlut.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_blending.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_blending.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_chromasitting.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_chromasitting.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_denoise.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_denoise.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_hdr_tm_h2h.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_hdr_tm_h2h.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_hdr_tm_h2s.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_hdr_tm_h2s.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_scaling_csc.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_scaling_csc.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_scaling_n_out_usrptr.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_scaling_n_out_usrptr.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_sharpness.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_sharpness.cfg.template -------------------------------------------------------------------------------- /videoprocess/process_va_copy.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/process_va_copy.cfg.template -------------------------------------------------------------------------------- /videoprocess/vacopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vacopy.cpp -------------------------------------------------------------------------------- /videoprocess/vavpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vavpp.cpp -------------------------------------------------------------------------------- /videoprocess/vpp3dlut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vpp3dlut.cpp -------------------------------------------------------------------------------- /videoprocess/vppblending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppblending.cpp -------------------------------------------------------------------------------- /videoprocess/vppchromasitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppchromasitting.cpp -------------------------------------------------------------------------------- /videoprocess/vppdenoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppdenoise.cpp -------------------------------------------------------------------------------- /videoprocess/vpphdr_tm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vpphdr_tm.cpp -------------------------------------------------------------------------------- /videoprocess/vppscaling_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppscaling_csc.cpp -------------------------------------------------------------------------------- /videoprocess/vppscaling_n_out_usrptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppscaling_n_out_usrptr.cpp -------------------------------------------------------------------------------- /videoprocess/vppsharpness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libva-utils/HEAD/videoprocess/vppsharpness.cpp --------------------------------------------------------------------------------