├── .clang-format ├── .cmake-format ├── .gitattributes ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── acceptance.yml │ ├── bdba.yml │ ├── bdba │ ├── Dockerfile.ubuntu.bdba │ └── bdba.py │ ├── cmake.yml │ ├── coverity.yml │ ├── coverity │ ├── Dockerfile.ubuntu.coverity │ ├── cmdline.py │ ├── coverity.py │ └── packages.txt │ ├── daily-validation.yml │ ├── diff.yml │ ├── diff │ └── bom_diff.py │ ├── hadolint.yml │ ├── ipldt.yml │ ├── ipldt │ └── Dockerfile.ubuntu.ipldt │ ├── lint.yml │ ├── lint │ └── Dockerfile.ubuntu.lint │ ├── mcafee.yml │ ├── performance.yml │ ├── performance │ ├── Dockerfile │ ├── MSPerf.py │ └── performance.sh │ ├── pr-draft.yml │ ├── pr-ready.yml │ ├── scorecard.yml │ ├── scorecard │ ├── check.py │ └── config.yml │ ├── sdl.yml │ ├── sdl │ ├── Dockerfile.ubuntu.sdl │ └── evidence_upload.py │ ├── setup-variables.yml │ ├── specification.yml │ ├── sscb.yml │ ├── sscb │ ├── Dockerfile.ubuntu.sscb │ ├── config.yaml │ └── tool.py │ ├── summary.yml │ ├── summary │ ├── Dockerfile.ubuntu.summary │ ├── filter_xunit.py │ ├── summarize_testing.py │ └── tools.sh │ ├── trivy.yml │ └── trivy │ └── csv.tpl ├── .gitignore ├── .gitlint ├── .hadolint.yaml ├── .pre-commit-config.yaml ├── .pylintrc ├── .style.yapf ├── .trivyignore.yaml ├── .yamllint.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CPPLINT.cfg ├── INSTALL.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api ├── .clang-format ├── CMakeLists.txt ├── CPPLINT.cfg ├── strings │ ├── strings.csv │ └── strings.md ├── tests │ ├── abi │ │ ├── abi_test_gen.py │ │ ├── check_missing_structs.py │ │ ├── check_pack.py │ │ └── mfx_static_assert_structs.cpp │ ├── compile_headers │ │ ├── removed_api.h │ │ ├── sdk_headers.inc │ │ ├── test.c │ │ └── test.cpp │ ├── doc_examples │ │ ├── dummy_impl.c │ │ └── main.c │ └── docker │ │ ├── Dockerfile.clang │ │ └── Dockerfile.gcc └── vpl │ ├── mfx.h │ ├── mfxadapter.h │ ├── mfxbrc.h │ ├── mfxcamera.h │ ├── mfxcommon.h │ ├── mfxdefs.h │ ├── mfxdispatcher.h │ ├── mfxdispatcherprefixedfunctions.h │ ├── mfxencodestats.h │ ├── mfximplcaps.h │ ├── mfxjpeg.h │ ├── mfxmemory.h │ ├── mfxmvc.h │ ├── mfxpcp.h │ ├── mfxsession.h │ ├── mfxstructures.h │ ├── mfxsurfacepool.h │ ├── mfxvideo++.h │ ├── mfxvideo.h │ ├── mfxvp8.h │ └── preview │ ├── README.txt │ └── legacy │ ├── README.txt │ └── mfxvideo++.h ├── bandit.yaml ├── cmake ├── CompileOptions.cmake ├── FindVPL.cmake ├── InstallDirs.cmake └── PackageTarget.cmake ├── doc ├── images │ ├── cs_bufer_usage.jpg │ ├── cs_control_flow.jpg │ ├── cs_control_flow_enc.jpg │ ├── cs_control_flow_sync.jpg │ ├── cs_cs_pipeline.jpg │ ├── cs_e2e.jpg │ ├── cs_enc.jpg │ ├── cs_lat_chart1.jpg │ ├── cs_lat_chart2.jpg │ ├── cs_lat_chart3.jpg │ ├── cs_org_pipeline.jpg │ ├── cs_surface_pool_utilization.jpg │ ├── oneapi-logo.png │ ├── par_enc_1x2.jpg │ ├── par_enc_2x2.jpg │ ├── trace_e2e_option.jpg │ └── trace_enc_option.jpg ├── multi-adapter-guide.md ├── smt-cascade-scaling-readme.md ├── smt-parallel-encoding-readme.md ├── smt-tracer-readme.md ├── spec │ ├── Doxyfile │ ├── README.md │ ├── build-spec.py │ ├── common_conf.py │ ├── docker │ │ └── Dockerfile.build │ ├── element_conf.py │ ├── install.sh │ ├── requirements.txt │ ├── source │ │ ├── API_ref │ │ │ ├── VPL_api_ref.rst │ │ │ ├── VPL_defines.rst │ │ │ ├── VPL_disp_api.rst │ │ │ ├── VPL_disp_api_def.rst │ │ │ ├── VPL_disp_api_enum.rst │ │ │ ├── VPL_disp_api_func.rst │ │ │ ├── VPL_disp_api_struct.rst │ │ │ ├── VPL_enums.rst │ │ │ ├── VPL_func_adapters.rst │ │ │ ├── VPL_func_capabilities.rst │ │ │ ├── VPL_func_mem.rst │ │ │ ├── VPL_func_session.rst │ │ │ ├── VPL_func_vid_decode.rst │ │ │ ├── VPL_func_vid_decode_vpp.rst │ │ │ ├── VPL_func_vid_encode.rst │ │ │ ├── VPL_func_vid_vpp.rst │ │ │ ├── VPL_func_vidcore.rst │ │ │ ├── VPL_functions.rst │ │ │ ├── VPL_guids.rst │ │ │ ├── VPL_ref_types.rst │ │ │ ├── VPL_structs.rst │ │ │ ├── VPL_structs_camera.rst │ │ │ ├── VPL_structs_cross_component.rst │ │ │ ├── VPL_structs_decode.rst │ │ │ ├── VPL_structs_decode_vpp.rst │ │ │ ├── VPL_structs_encode.rst │ │ │ ├── VPL_structs_impl_manage.rst │ │ │ ├── VPL_structs_memory.rst │ │ │ ├── VPL_structs_protected.rst │ │ │ ├── VPL_structs_type.rst │ │ │ └── VPL_structs_vpp.rst │ │ ├── Experimental.rst │ │ ├── VPL_acronyms.rst │ │ ├── VPL_change_log.rst │ │ ├── VPL_deprecation.rst │ │ ├── VPL_intel_media_sdk.rst │ │ ├── VPL_summary.rst │ │ ├── Versioning.rst │ │ ├── _templates │ │ │ └── layout.html │ │ ├── appendix │ │ │ ├── VPL_apnds_a.rst │ │ │ ├── VPL_apnds_b.rst │ │ │ ├── VPL_apnds_c.rst │ │ │ ├── VPL_apnds_d.rst │ │ │ ├── VPL_apnds_e.rst │ │ │ ├── VPL_apnds_f.rst │ │ │ └── index.rst │ │ ├── architecture │ │ │ ├── VPL_decoding.rst │ │ │ ├── VPL_decoding_vpp.rst │ │ │ ├── VPL_encoding.rst │ │ │ ├── VPL_processing.rst │ │ │ └── index.rst │ │ ├── conf.py │ │ ├── images │ │ │ ├── extbrc_async.png │ │ │ ├── frame_cmplx.png │ │ │ ├── lookahead_qp_calulation_algo.png │ │ │ ├── sdk_function_naming_convention.png │ │ │ └── vpp_region_of_interest_operation.png │ │ ├── index.rst │ │ ├── programming_guide │ │ │ ├── VPL_prg_config.rst │ │ │ ├── VPL_prg_decoding.rst │ │ │ ├── VPL_prg_encoding.rst │ │ │ ├── VPL_prg_err.rst │ │ │ ├── VPL_prg_frame.rst │ │ │ ├── VPL_prg_hw.rst │ │ │ ├── VPL_prg_mem.rst │ │ │ ├── VPL_prg_session.rst │ │ │ ├── VPL_prg_stc.rst │ │ │ ├── VPL_prg_surface_sharing.rst │ │ │ ├── VPL_prg_transcoding.rst │ │ │ ├── VPL_prg_vpp.rst │ │ │ └── index.rst │ │ └── snippets │ │ │ ├── .clang-format │ │ │ ├── CPPLINT.cfg │ │ │ ├── appnd_b.c │ │ │ ├── appnd_e.c │ │ │ ├── appnd_f.c │ │ │ ├── prg_config.cpp │ │ │ ├── prg_decoding.c │ │ │ ├── prg_decoding_vpp.c │ │ │ ├── prg_disp.c │ │ │ ├── prg_encoding.c │ │ │ ├── prg_err.c │ │ │ ├── prg_hw.cpp │ │ │ ├── prg_mem.c │ │ │ ├── prg_session.cpp │ │ │ ├── prg_surface_sharing.cpp │ │ │ ├── prg_transcoding.c │ │ │ └── prg_vpp.c │ ├── spelling_wordlist.txt │ └── ubuntu-packages.txt └── surface_sharing_apis_overview.md ├── env ├── CMakeLists.txt ├── cmd │ ├── vars.bat │ └── varsxx.bat.in └── sh │ └── vars.sh.in ├── examples ├── CMakeLists.txt ├── CPPLINT.cfg ├── README.md ├── api1x_core │ ├── legacy-decode │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── README.md │ │ └── src │ │ │ ├── legacy-decode.cpp │ │ │ └── util.hpp │ ├── legacy-encode │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ │ ├── legacy-encode.cpp │ │ │ └── util.hpp │ └── legacy-vpp │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── README.md │ │ └── src │ │ ├── legacy-vpp.cpp │ │ └── util.hpp ├── api2x │ ├── hello-decode │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ │ ├── hello-decode.cpp │ │ │ └── util.hpp │ ├── hello-decvpp │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ │ ├── hello-decvpp.cpp │ │ │ └── util.hpp │ ├── hello-encode-jpeg │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ │ ├── hello-encode-jpeg.cpp │ │ │ └── util.hpp │ ├── hello-encode │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ │ ├── hello-encode.cpp │ │ │ └── util.hpp │ ├── hello-sharing-dx11 │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ ├── include │ │ │ ├── device-d3d11.h │ │ │ └── util.hpp │ │ └── src │ │ │ ├── device-d3d11.cpp │ │ │ ├── hello-sharing-dx11-export.cpp │ │ │ └── hello-sharing-dx11-import.cpp │ ├── hello-sharing-ocl │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ ├── include │ │ │ ├── device-d3d11.h │ │ │ ├── device-ocl.h │ │ │ └── util.h │ │ └── src │ │ │ ├── device-d3d11.cpp │ │ │ ├── device-ocl.cpp │ │ │ ├── hello-sharing-ocl-export.cpp │ │ │ ├── hello-sharing-ocl-import.cpp │ │ │ └── util.cpp │ ├── hello-sharing-vaapi │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ ├── include │ │ │ ├── device-vaapi.h │ │ │ ├── util.hpp │ │ │ └── vasurface_wrapper.h │ │ └── src │ │ │ ├── device-vaapi.cpp │ │ │ ├── hello-sharing-vaapi-export.cpp │ │ │ └── hello-sharing-vaapi-import.cpp │ ├── hello-transcode │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── README.md │ │ └── src │ │ │ ├── hello-transcode.cpp │ │ │ └── util.hpp │ └── hello-vpp │ │ ├── CMakeLists.txt │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ ├── hello-vpp.cpp │ │ └── util.hpp ├── content │ ├── cars_320x240.bgra │ ├── cars_320x240.h264 │ ├── cars_320x240.h265 │ ├── cars_320x240.i420 │ ├── cars_320x240.mjpeg │ ├── cars_320x240.nv12 │ └── cars_320x240.y8 ├── interop │ └── vpl-infer │ │ ├── CMakeLists.txt │ │ ├── CPPLINT.cfg │ │ ├── License.txt │ │ ├── PreLoad.cmake │ │ ├── README.md │ │ └── src │ │ ├── util.hpp │ │ └── vpl-infer.cpp └── tutorials │ └── 01_transition │ ├── License.txt │ ├── MediaSDK │ ├── CMakeLists.txt │ └── cmake │ │ └── FindMFX.cmake │ ├── README.md │ ├── VPL │ └── CMakeLists.txt │ └── src │ └── transition.cpp ├── libvpl ├── CMakeLists.txt ├── CPPLINT.cfg ├── cmake │ ├── VPLConfig.cmake.in │ └── VPLConfigVersion.cmake.in ├── pkgconfig │ └── vpl.pc.in ├── src │ ├── linux │ │ ├── device_ids.h │ │ ├── libvpl.map │ │ ├── mfxloader.cpp │ │ ├── mfxloader.h │ │ └── mfxvideo_functions.h │ ├── mfx_config_interface │ │ ├── .clang-format │ │ ├── mfx_config_interface.cpp │ │ ├── mfx_config_interface.h │ │ └── mfx_config_interface_string_api.cpp │ ├── mfx_dispatcher_vpl.cpp │ ├── mfx_dispatcher_vpl.h │ ├── mfx_dispatcher_vpl_config.cpp │ ├── mfx_dispatcher_vpl_loader.cpp │ ├── mfx_dispatcher_vpl_log.cpp │ ├── mfx_dispatcher_vpl_log.h │ ├── mfx_dispatcher_vpl_lowlatency.cpp │ ├── mfx_dispatcher_vpl_msdk.cpp │ ├── mfx_dispatcher_vpl_win.h │ └── windows │ │ ├── libmfx.def │ │ ├── main.cpp │ │ ├── mfx_critical_section.cpp │ │ ├── mfx_critical_section.h │ │ ├── mfx_dispatcher.cpp │ │ ├── mfx_dispatcher.h │ │ ├── mfx_dispatcher_defs.h │ │ ├── mfx_dispatcher_log.cpp │ │ ├── mfx_dispatcher_log.h │ │ ├── mfx_driver_store_loader.cpp │ │ ├── mfx_driver_store_loader.h │ │ ├── mfx_dxva2_device.cpp │ │ ├── mfx_dxva2_device.h │ │ ├── mfx_exposed_functions_list.h │ │ ├── mfx_function_table.cpp │ │ ├── mfx_library_iterator.cpp │ │ ├── mfx_library_iterator.h │ │ ├── mfx_load_dll.cpp │ │ ├── mfx_load_dll.h │ │ ├── mfx_vector.h │ │ ├── mfx_win_reg_key.cpp │ │ ├── mfx_win_reg_key.h │ │ ├── mfxvideo++.h │ │ └── version.rc.in └── test │ ├── CMakeLists.txt │ ├── diagnostic │ ├── CMakeLists.txt │ ├── mfxinit-test │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── vpl-timing │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── vpl-timing.cpp │ │ └── vpl-timing.h │ ├── ext │ └── googletest │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-function-mocker_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers-arithmetic_test.cc │ │ │ ├── gmock-matchers-comparisons_test.cc │ │ │ ├── gmock-matchers-containers_test.cc │ │ │ ├── gmock-matchers-misc_test.cc │ │ │ ├── gmock-matchers_test.h │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-pp-string_test.cc │ │ │ ├── gmock-pp_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ │ └── googletest │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ ├── Config.cmake.in │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ ├── internal_utils.cmake │ │ └── libgtest.la.in │ │ ├── docs │ │ └── README.md │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── 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-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-assertion-result.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 │ │ └── test │ │ ├── BUILD.bazel │ │ ├── googletest-break-on-failure-unittest.py │ │ ├── googletest-break-on-failure-unittest_.cc │ │ ├── googletest-catch-exceptions-test.py │ │ ├── googletest-catch-exceptions-test_.cc │ │ ├── googletest-color-test.py │ │ ├── googletest-color-test_.cc │ │ ├── googletest-death-test-test.cc │ │ ├── googletest-death-test_ex_test.cc │ │ ├── googletest-env-var-test.py │ │ ├── googletest-env-var-test_.cc │ │ ├── googletest-failfast-unittest.py │ │ ├── googletest-failfast-unittest_.cc │ │ ├── googletest-filepath-test.cc │ │ ├── googletest-filter-unittest.py │ │ ├── googletest-filter-unittest_.cc │ │ ├── googletest-global-environment-unittest.py │ │ ├── googletest-global-environment-unittest_.cc │ │ ├── googletest-json-outfiles-test.py │ │ ├── googletest-json-output-unittest.py │ │ ├── googletest-list-tests-unittest.py │ │ ├── googletest-list-tests-unittest_.cc │ │ ├── googletest-listener-test.cc │ │ ├── googletest-message-test.cc │ │ ├── googletest-options-test.cc │ │ ├── googletest-output-test-golden-lin.txt │ │ ├── googletest-output-test.py │ │ ├── googletest-output-test_.cc │ │ ├── googletest-param-test-invalid-name1-test.py │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ ├── googletest-param-test-invalid-name2-test.py │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ ├── googletest-param-test-test.cc │ │ ├── googletest-param-test-test.h │ │ ├── googletest-param-test2-test.cc │ │ ├── googletest-port-test.cc │ │ ├── googletest-printers-test.cc │ │ ├── googletest-setuptestsuite-test.py │ │ ├── googletest-setuptestsuite-test_.cc │ │ ├── googletest-shuffle-test.py │ │ ├── googletest-shuffle-test_.cc │ │ ├── googletest-test-part-test.cc │ │ ├── googletest-throw-on-failure-test.py │ │ ├── googletest-throw-on-failure-test_.cc │ │ ├── googletest-uninitialized-test.py │ │ ├── googletest-uninitialized-test_.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_assert_by_exception_test.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_json_test_utils.py │ │ ├── gtest_list_output_unittest.py │ │ ├── gtest_list_output_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_skip_check_output_test.py │ │ ├── gtest_skip_environment_check_output_test.py │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ ├── gtest_skip_test.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_testbridge_test.py │ │ ├── gtest_testbridge_test_.cc │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ ├── runtimes │ ├── stub-nofn │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── windows │ │ │ └── libvplminrt-nofn.def │ ├── stub │ │ ├── CMakeLists.txt │ │ ├── src │ │ │ ├── caps.h │ │ │ ├── caps_dec.h │ │ │ ├── caps_dec_none.h │ │ │ ├── caps_enc.h │ │ │ ├── caps_enc_none.h │ │ │ ├── caps_surface.h │ │ │ ├── caps_vpp.h │ │ │ ├── caps_vpp_none.h │ │ │ ├── config.cpp │ │ │ ├── config.h │ │ │ ├── stubs.cpp │ │ │ └── windows │ │ │ │ └── libvplminrt.def │ │ └── version.txt │ └── stub1x │ │ └── CMakeLists.txt │ └── unit │ ├── CMakeLists.txt │ └── src │ ├── dispatcher_common.cpp │ ├── dispatcher_common.h │ ├── dispatcher_common_multiprop.cpp │ ├── dispatcher_enum_impls.cpp │ ├── dispatcher_gpu.cpp │ ├── dispatcher_gpu_stringapi.cpp │ ├── dispatcher_low_latency.cpp │ ├── dispatcher_stub.cpp │ ├── dispatcher_stub_propquery.cpp │ ├── dispatcher_stub_stringapi.cpp │ ├── dispatcher_sw.cpp │ ├── dispatcher_sw_multiprop.cpp │ ├── dispatcher_util.cpp │ ├── experimental_api.cpp │ ├── legacycpp-session-test-1x.cpp │ ├── legacycpp-session-test-2x.cpp │ ├── legacycpp-session-test.cpp │ ├── main.cpp │ ├── session-test.cpp │ └── unit_api.h ├── script ├── Dockerfile.rhel.build ├── Dockerfile.ubuntu.build ├── README.md ├── bootstrap ├── bootstrap.bat ├── build ├── build.bat ├── gitlint │ ├── custom_gitlint_rules.py │ └── verbs.txt ├── install ├── install.bat ├── lint ├── lint.bat ├── test └── test.bat ├── third-party-programs.txt └── version.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.cmake-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/acceptance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/acceptance.yml -------------------------------------------------------------------------------- /.github/workflows/bdba.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/bdba.yml -------------------------------------------------------------------------------- /.github/workflows/bdba/Dockerfile.ubuntu.bdba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/bdba/Dockerfile.ubuntu.bdba -------------------------------------------------------------------------------- /.github/workflows/bdba/bdba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/bdba/bdba.py -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.github/workflows/coverity/Dockerfile.ubuntu.coverity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/coverity/Dockerfile.ubuntu.coverity -------------------------------------------------------------------------------- /.github/workflows/coverity/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/coverity/cmdline.py -------------------------------------------------------------------------------- /.github/workflows/coverity/coverity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/coverity/coverity.py -------------------------------------------------------------------------------- /.github/workflows/coverity/packages.txt: -------------------------------------------------------------------------------- 1 | fontconfig 2 | -------------------------------------------------------------------------------- /.github/workflows/daily-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/daily-validation.yml -------------------------------------------------------------------------------- /.github/workflows/diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/diff.yml -------------------------------------------------------------------------------- /.github/workflows/diff/bom_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/diff/bom_diff.py -------------------------------------------------------------------------------- /.github/workflows/hadolint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/hadolint.yml -------------------------------------------------------------------------------- /.github/workflows/ipldt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/ipldt.yml -------------------------------------------------------------------------------- /.github/workflows/ipldt/Dockerfile.ubuntu.ipldt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/ipldt/Dockerfile.ubuntu.ipldt -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/lint/Dockerfile.ubuntu.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/lint/Dockerfile.ubuntu.lint -------------------------------------------------------------------------------- /.github/workflows/mcafee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/mcafee.yml -------------------------------------------------------------------------------- /.github/workflows/performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/performance.yml -------------------------------------------------------------------------------- /.github/workflows/performance/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/performance/Dockerfile -------------------------------------------------------------------------------- /.github/workflows/performance/MSPerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/performance/MSPerf.py -------------------------------------------------------------------------------- /.github/workflows/performance/performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/performance/performance.sh -------------------------------------------------------------------------------- /.github/workflows/pr-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/pr-draft.yml -------------------------------------------------------------------------------- /.github/workflows/pr-ready.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/pr-ready.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/scorecard/check.py -------------------------------------------------------------------------------- /.github/workflows/scorecard/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/scorecard/config.yml -------------------------------------------------------------------------------- /.github/workflows/sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sdl.yml -------------------------------------------------------------------------------- /.github/workflows/sdl/Dockerfile.ubuntu.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sdl/Dockerfile.ubuntu.sdl -------------------------------------------------------------------------------- /.github/workflows/sdl/evidence_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sdl/evidence_upload.py -------------------------------------------------------------------------------- /.github/workflows/setup-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/setup-variables.yml -------------------------------------------------------------------------------- /.github/workflows/specification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/specification.yml -------------------------------------------------------------------------------- /.github/workflows/sscb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sscb.yml -------------------------------------------------------------------------------- /.github/workflows/sscb/Dockerfile.ubuntu.sscb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sscb/Dockerfile.ubuntu.sscb -------------------------------------------------------------------------------- /.github/workflows/sscb/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sscb/config.yaml -------------------------------------------------------------------------------- /.github/workflows/sscb/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/sscb/tool.py -------------------------------------------------------------------------------- /.github/workflows/summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/summary.yml -------------------------------------------------------------------------------- /.github/workflows/summary/Dockerfile.ubuntu.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/summary/Dockerfile.ubuntu.summary -------------------------------------------------------------------------------- /.github/workflows/summary/filter_xunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/summary/filter_xunit.py -------------------------------------------------------------------------------- /.github/workflows/summary/summarize_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/summary/summarize_testing.py -------------------------------------------------------------------------------- /.github/workflows/summary/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/summary/tools.sh -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.github/workflows/trivy/csv.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.github/workflows/trivy/csv.tpl -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.gitlint -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.pylintrc -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.style.yapf -------------------------------------------------------------------------------- /.trivyignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.trivyignore.yaml -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/CPPLINT.cfg -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | -------------------------------------------------------------------------------- /api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/CMakeLists.txt -------------------------------------------------------------------------------- /api/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | exclude_files=vpl -------------------------------------------------------------------------------- /api/strings/strings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/strings/strings.csv -------------------------------------------------------------------------------- /api/strings/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/strings/strings.md -------------------------------------------------------------------------------- /api/tests/abi/abi_test_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/abi/abi_test_gen.py -------------------------------------------------------------------------------- /api/tests/abi/check_missing_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/abi/check_missing_structs.py -------------------------------------------------------------------------------- /api/tests/abi/check_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/abi/check_pack.py -------------------------------------------------------------------------------- /api/tests/abi/mfx_static_assert_structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/abi/mfx_static_assert_structs.cpp -------------------------------------------------------------------------------- /api/tests/compile_headers/removed_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/compile_headers/removed_api.h -------------------------------------------------------------------------------- /api/tests/compile_headers/sdk_headers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/compile_headers/sdk_headers.inc -------------------------------------------------------------------------------- /api/tests/compile_headers/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/compile_headers/test.c -------------------------------------------------------------------------------- /api/tests/compile_headers/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/compile_headers/test.cpp -------------------------------------------------------------------------------- /api/tests/doc_examples/dummy_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/doc_examples/dummy_impl.c -------------------------------------------------------------------------------- /api/tests/doc_examples/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/doc_examples/main.c -------------------------------------------------------------------------------- /api/tests/docker/Dockerfile.clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/docker/Dockerfile.clang -------------------------------------------------------------------------------- /api/tests/docker/Dockerfile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/tests/docker/Dockerfile.gcc -------------------------------------------------------------------------------- /api/vpl/mfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfx.h -------------------------------------------------------------------------------- /api/vpl/mfxadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxadapter.h -------------------------------------------------------------------------------- /api/vpl/mfxbrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxbrc.h -------------------------------------------------------------------------------- /api/vpl/mfxcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxcamera.h -------------------------------------------------------------------------------- /api/vpl/mfxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxcommon.h -------------------------------------------------------------------------------- /api/vpl/mfxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxdefs.h -------------------------------------------------------------------------------- /api/vpl/mfxdispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxdispatcher.h -------------------------------------------------------------------------------- /api/vpl/mfxdispatcherprefixedfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxdispatcherprefixedfunctions.h -------------------------------------------------------------------------------- /api/vpl/mfxencodestats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxencodestats.h -------------------------------------------------------------------------------- /api/vpl/mfximplcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfximplcaps.h -------------------------------------------------------------------------------- /api/vpl/mfxjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxjpeg.h -------------------------------------------------------------------------------- /api/vpl/mfxmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxmemory.h -------------------------------------------------------------------------------- /api/vpl/mfxmvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxmvc.h -------------------------------------------------------------------------------- /api/vpl/mfxpcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxpcp.h -------------------------------------------------------------------------------- /api/vpl/mfxsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxsession.h -------------------------------------------------------------------------------- /api/vpl/mfxstructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxstructures.h -------------------------------------------------------------------------------- /api/vpl/mfxsurfacepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxsurfacepool.h -------------------------------------------------------------------------------- /api/vpl/mfxvideo++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxvideo++.h -------------------------------------------------------------------------------- /api/vpl/mfxvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxvideo.h -------------------------------------------------------------------------------- /api/vpl/mfxvp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/mfxvp8.h -------------------------------------------------------------------------------- /api/vpl/preview/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/preview/README.txt -------------------------------------------------------------------------------- /api/vpl/preview/legacy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/preview/legacy/README.txt -------------------------------------------------------------------------------- /api/vpl/preview/legacy/mfxvideo++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/api/vpl/preview/legacy/mfxvideo++.h -------------------------------------------------------------------------------- /bandit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/bandit.yaml -------------------------------------------------------------------------------- /cmake/CompileOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/cmake/CompileOptions.cmake -------------------------------------------------------------------------------- /cmake/FindVPL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/cmake/FindVPL.cmake -------------------------------------------------------------------------------- /cmake/InstallDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/cmake/InstallDirs.cmake -------------------------------------------------------------------------------- /cmake/PackageTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/cmake/PackageTarget.cmake -------------------------------------------------------------------------------- /doc/images/cs_bufer_usage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_bufer_usage.jpg -------------------------------------------------------------------------------- /doc/images/cs_control_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_control_flow.jpg -------------------------------------------------------------------------------- /doc/images/cs_control_flow_enc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_control_flow_enc.jpg -------------------------------------------------------------------------------- /doc/images/cs_control_flow_sync.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_control_flow_sync.jpg -------------------------------------------------------------------------------- /doc/images/cs_cs_pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_cs_pipeline.jpg -------------------------------------------------------------------------------- /doc/images/cs_e2e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_e2e.jpg -------------------------------------------------------------------------------- /doc/images/cs_enc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_enc.jpg -------------------------------------------------------------------------------- /doc/images/cs_lat_chart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_lat_chart1.jpg -------------------------------------------------------------------------------- /doc/images/cs_lat_chart2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_lat_chart2.jpg -------------------------------------------------------------------------------- /doc/images/cs_lat_chart3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_lat_chart3.jpg -------------------------------------------------------------------------------- /doc/images/cs_org_pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_org_pipeline.jpg -------------------------------------------------------------------------------- /doc/images/cs_surface_pool_utilization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/cs_surface_pool_utilization.jpg -------------------------------------------------------------------------------- /doc/images/oneapi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/oneapi-logo.png -------------------------------------------------------------------------------- /doc/images/par_enc_1x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/par_enc_1x2.jpg -------------------------------------------------------------------------------- /doc/images/par_enc_2x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/par_enc_2x2.jpg -------------------------------------------------------------------------------- /doc/images/trace_e2e_option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/trace_e2e_option.jpg -------------------------------------------------------------------------------- /doc/images/trace_enc_option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/images/trace_enc_option.jpg -------------------------------------------------------------------------------- /doc/multi-adapter-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/multi-adapter-guide.md -------------------------------------------------------------------------------- /doc/smt-cascade-scaling-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/smt-cascade-scaling-readme.md -------------------------------------------------------------------------------- /doc/smt-parallel-encoding-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/smt-parallel-encoding-readme.md -------------------------------------------------------------------------------- /doc/smt-tracer-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/smt-tracer-readme.md -------------------------------------------------------------------------------- /doc/spec/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/Doxyfile -------------------------------------------------------------------------------- /doc/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/README.md -------------------------------------------------------------------------------- /doc/spec/build-spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/build-spec.py -------------------------------------------------------------------------------- /doc/spec/common_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/common_conf.py -------------------------------------------------------------------------------- /doc/spec/docker/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/docker/Dockerfile.build -------------------------------------------------------------------------------- /doc/spec/element_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/element_conf.py -------------------------------------------------------------------------------- /doc/spec/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/install.sh -------------------------------------------------------------------------------- /doc/spec/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/requirements.txt -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_api_ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_api_ref.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_defines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_defines.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_disp_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_disp_api.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_disp_api_def.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_disp_api_def.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_disp_api_enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_disp_api_enum.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_disp_api_func.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_disp_api_func.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_disp_api_struct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_disp_api_struct.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_enums.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_adapters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_adapters.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_capabilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_capabilities.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_mem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_mem.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_session.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_vid_decode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_vid_decode.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_vid_decode_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_vid_decode_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_vid_encode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_vid_encode.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_vid_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_vid_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_func_vidcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_func_vidcore.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_functions.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_guids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_guids.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_ref_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_ref_types.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_camera.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_cross_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_cross_component.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_decode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_decode.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_decode_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_decode_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_encode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_encode.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_impl_manage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_impl_manage.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_memory.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_protected.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_protected.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_type.rst -------------------------------------------------------------------------------- /doc/spec/source/API_ref/VPL_structs_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/API_ref/VPL_structs_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/Experimental.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/Experimental.rst -------------------------------------------------------------------------------- /doc/spec/source/VPL_acronyms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/VPL_acronyms.rst -------------------------------------------------------------------------------- /doc/spec/source/VPL_change_log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/VPL_change_log.rst -------------------------------------------------------------------------------- /doc/spec/source/VPL_deprecation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/VPL_deprecation.rst -------------------------------------------------------------------------------- /doc/spec/source/VPL_intel_media_sdk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/VPL_intel_media_sdk.rst -------------------------------------------------------------------------------- /doc/spec/source/VPL_summary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/VPL_summary.rst -------------------------------------------------------------------------------- /doc/spec/source/Versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/Versioning.rst -------------------------------------------------------------------------------- /doc/spec/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_a.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_a.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_b.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_b.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_c.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_d.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_e.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_e.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/VPL_apnds_f.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/VPL_apnds_f.rst -------------------------------------------------------------------------------- /doc/spec/source/appendix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/appendix/index.rst -------------------------------------------------------------------------------- /doc/spec/source/architecture/VPL_decoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/architecture/VPL_decoding.rst -------------------------------------------------------------------------------- /doc/spec/source/architecture/VPL_decoding_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/architecture/VPL_decoding_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/architecture/VPL_encoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/architecture/VPL_encoding.rst -------------------------------------------------------------------------------- /doc/spec/source/architecture/VPL_processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/architecture/VPL_processing.rst -------------------------------------------------------------------------------- /doc/spec/source/architecture/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/architecture/index.rst -------------------------------------------------------------------------------- /doc/spec/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/conf.py -------------------------------------------------------------------------------- /doc/spec/source/images/extbrc_async.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/images/extbrc_async.png -------------------------------------------------------------------------------- /doc/spec/source/images/frame_cmplx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/images/frame_cmplx.png -------------------------------------------------------------------------------- /doc/spec/source/images/lookahead_qp_calulation_algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/images/lookahead_qp_calulation_algo.png -------------------------------------------------------------------------------- /doc/spec/source/images/sdk_function_naming_convention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/images/sdk_function_naming_convention.png -------------------------------------------------------------------------------- /doc/spec/source/images/vpp_region_of_interest_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/images/vpp_region_of_interest_operation.png -------------------------------------------------------------------------------- /doc/spec/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/index.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_config.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_decoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_decoding.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_encoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_encoding.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_err.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_err.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_frame.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_hw.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_mem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_mem.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_session.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_stc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_stc.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_surface_sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_surface_sharing.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_transcoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_transcoding.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/VPL_prg_vpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/VPL_prg_vpp.rst -------------------------------------------------------------------------------- /doc/spec/source/programming_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/programming_guide/index.rst -------------------------------------------------------------------------------- /doc/spec/source/snippets/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | -------------------------------------------------------------------------------- /doc/spec/source/snippets/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | exclude_files=. -------------------------------------------------------------------------------- /doc/spec/source/snippets/appnd_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/appnd_b.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/appnd_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/appnd_e.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/appnd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/appnd_f.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_config.cpp -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_decoding.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_decoding_vpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_decoding_vpp.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_disp.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_encoding.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_err.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_hw.cpp -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_mem.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_session.cpp -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_surface_sharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_surface_sharing.cpp -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_transcoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_transcoding.c -------------------------------------------------------------------------------- /doc/spec/source/snippets/prg_vpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/source/snippets/prg_vpp.c -------------------------------------------------------------------------------- /doc/spec/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/spelling_wordlist.txt -------------------------------------------------------------------------------- /doc/spec/ubuntu-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/spec/ubuntu-packages.txt -------------------------------------------------------------------------------- /doc/surface_sharing_apis_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/doc/surface_sharing_apis_overview.md -------------------------------------------------------------------------------- /env/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/env/CMakeLists.txt -------------------------------------------------------------------------------- /env/cmd/vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/env/cmd/vars.bat -------------------------------------------------------------------------------- /env/cmd/varsxx.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/env/cmd/varsxx.bat.in -------------------------------------------------------------------------------- /env/sh/vars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/env/sh/vars.sh.in -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/CPPLINT.cfg -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/api1x_core/legacy-decode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-decode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-decode/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-decode/License.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-decode/README.md -------------------------------------------------------------------------------- /examples/api1x_core/legacy-decode/src/legacy-decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-decode/src/legacy-decode.cpp -------------------------------------------------------------------------------- /examples/api1x_core/legacy-decode/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-decode/src/util.hpp -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/License.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/README.md -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/src/legacy-encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/src/legacy-encode.cpp -------------------------------------------------------------------------------- /examples/api1x_core/legacy-encode/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-encode/src/util.hpp -------------------------------------------------------------------------------- /examples/api1x_core/legacy-vpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-vpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-vpp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-vpp/License.txt -------------------------------------------------------------------------------- /examples/api1x_core/legacy-vpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-vpp/README.md -------------------------------------------------------------------------------- /examples/api1x_core/legacy-vpp/src/legacy-vpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-vpp/src/legacy-vpp.cpp -------------------------------------------------------------------------------- /examples/api1x_core/legacy-vpp/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api1x_core/legacy-vpp/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-decode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-decode/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-decode/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-decode/src/hello-decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/src/hello-decode.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-decode/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decode/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/src/hello-decvpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/src/hello-decvpp.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-decvpp/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-decvpp/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/src/hello-encode-jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/src/hello-encode-jpeg.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-encode-jpeg/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode-jpeg/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-encode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-encode/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-encode/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-encode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-encode/src/hello-encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/src/hello-encode.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-encode/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-encode/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/include/device-d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/include/device-d3d11.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/include/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/include/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/src/device-d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/src/device-d3d11.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/src/hello-sharing-dx11-export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/src/hello-sharing-dx11-export.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-dx11/src/hello-sharing-dx11-import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-dx11/src/hello-sharing-dx11-import.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/include/device-d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/include/device-d3d11.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/include/device-ocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/include/device-ocl.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/include/util.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/src/device-d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/src/device-d3d11.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/src/device-ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/src/device-ocl.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/src/hello-sharing-ocl-export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/src/hello-sharing-ocl-export.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/src/hello-sharing-ocl-import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/src/hello-sharing-ocl-import.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-ocl/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-ocl/src/util.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/include/device-vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/include/device-vaapi.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/include/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/include/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/include/vasurface_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/include/vasurface_wrapper.h -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/src/device-vaapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/src/device-vaapi.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/src/hello-sharing-vaapi-export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/src/hello-sharing-vaapi-export.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-sharing-vaapi/src/hello-sharing-vaapi-import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-sharing-vaapi/src/hello-sharing-vaapi-import.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-transcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-transcode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-transcode/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-transcode/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-transcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-transcode/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-transcode/src/hello-transcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-transcode/src/hello-transcode.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-transcode/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-transcode/src/util.hpp -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/License.txt -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/PreLoad.cmake -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/README.md -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/src/hello-vpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/src/hello-vpp.cpp -------------------------------------------------------------------------------- /examples/api2x/hello-vpp/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/api2x/hello-vpp/src/util.hpp -------------------------------------------------------------------------------- /examples/content/cars_320x240.bgra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.bgra -------------------------------------------------------------------------------- /examples/content/cars_320x240.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.h264 -------------------------------------------------------------------------------- /examples/content/cars_320x240.h265: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.h265 -------------------------------------------------------------------------------- /examples/content/cars_320x240.i420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.i420 -------------------------------------------------------------------------------- /examples/content/cars_320x240.mjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.mjpeg -------------------------------------------------------------------------------- /examples/content/cars_320x240.nv12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.nv12 -------------------------------------------------------------------------------- /examples/content/cars_320x240.y8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/content/cars_320x240.y8 -------------------------------------------------------------------------------- /examples/interop/vpl-infer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/interop/vpl-infer/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-build/namespaces 2 | -------------------------------------------------------------------------------- /examples/interop/vpl-infer/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/License.txt -------------------------------------------------------------------------------- /examples/interop/vpl-infer/PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/PreLoad.cmake -------------------------------------------------------------------------------- /examples/interop/vpl-infer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/README.md -------------------------------------------------------------------------------- /examples/interop/vpl-infer/src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/src/util.hpp -------------------------------------------------------------------------------- /examples/interop/vpl-infer/src/vpl-infer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/interop/vpl-infer/src/vpl-infer.cpp -------------------------------------------------------------------------------- /examples/tutorials/01_transition/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/License.txt -------------------------------------------------------------------------------- /examples/tutorials/01_transition/MediaSDK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/MediaSDK/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorials/01_transition/MediaSDK/cmake/FindMFX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/MediaSDK/cmake/FindMFX.cmake -------------------------------------------------------------------------------- /examples/tutorials/01_transition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/README.md -------------------------------------------------------------------------------- /examples/tutorials/01_transition/VPL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/VPL/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorials/01_transition/src/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/examples/tutorials/01_transition/src/transition.cpp -------------------------------------------------------------------------------- /libvpl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/CPPLINT.cfg -------------------------------------------------------------------------------- /libvpl/cmake/VPLConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/cmake/VPLConfig.cmake.in -------------------------------------------------------------------------------- /libvpl/cmake/VPLConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/cmake/VPLConfigVersion.cmake.in -------------------------------------------------------------------------------- /libvpl/pkgconfig/vpl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/pkgconfig/vpl.pc.in -------------------------------------------------------------------------------- /libvpl/src/linux/device_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/linux/device_ids.h -------------------------------------------------------------------------------- /libvpl/src/linux/libvpl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/linux/libvpl.map -------------------------------------------------------------------------------- /libvpl/src/linux/mfxloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/linux/mfxloader.cpp -------------------------------------------------------------------------------- /libvpl/src/linux/mfxloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/linux/mfxloader.h -------------------------------------------------------------------------------- /libvpl/src/linux/mfxvideo_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/linux/mfxvideo_functions.h -------------------------------------------------------------------------------- /libvpl/src/mfx_config_interface/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_config_interface/.clang-format -------------------------------------------------------------------------------- /libvpl/src/mfx_config_interface/mfx_config_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_config_interface/mfx_config_interface.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_config_interface/mfx_config_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_config_interface/mfx_config_interface.h -------------------------------------------------------------------------------- /libvpl/src/mfx_config_interface/mfx_config_interface_string_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_config_interface/mfx_config_interface_string_api.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl.h -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_config.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_loader.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_log.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_log.h -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_lowlatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_lowlatency.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_msdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_msdk.cpp -------------------------------------------------------------------------------- /libvpl/src/mfx_dispatcher_vpl_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/mfx_dispatcher_vpl_win.h -------------------------------------------------------------------------------- /libvpl/src/windows/libmfx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/libmfx.def -------------------------------------------------------------------------------- /libvpl/src/windows/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/main.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_critical_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_critical_section.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_critical_section.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dispatcher.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dispatcher.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dispatcher_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dispatcher_defs.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dispatcher_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dispatcher_log.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dispatcher_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dispatcher_log.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_driver_store_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_driver_store_loader.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_driver_store_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_driver_store_loader.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dxva2_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dxva2_device.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_dxva2_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_dxva2_device.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_exposed_functions_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_exposed_functions_list.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_function_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_function_table.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_library_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_library_iterator.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_library_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_library_iterator.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_load_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_load_dll.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_load_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_load_dll.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_vector.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_win_reg_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_win_reg_key.cpp -------------------------------------------------------------------------------- /libvpl/src/windows/mfx_win_reg_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfx_win_reg_key.h -------------------------------------------------------------------------------- /libvpl/src/windows/mfxvideo++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/mfxvideo++.h -------------------------------------------------------------------------------- /libvpl/src/windows/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/src/windows/version.rc.in -------------------------------------------------------------------------------- /libvpl/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/diagnostic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/diagnostic/mfxinit-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/mfxinit-test/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/diagnostic/mfxinit-test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/mfxinit-test/main.cpp -------------------------------------------------------------------------------- /libvpl/test/diagnostic/vpl-timing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/vpl-timing/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/diagnostic/vpl-timing/src/vpl-timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/vpl-timing/src/vpl-timing.cpp -------------------------------------------------------------------------------- /libvpl/test/diagnostic/vpl-timing/src/vpl-timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/diagnostic/vpl-timing/src/vpl-timing.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/.clang-format -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/.gitignore -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/BUILD.bazel -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/CONTRIBUTING.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/LICENSE -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/WORKSPACE -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/cmake/gmock.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/cmake/gmock.pc.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/cmake/gmock_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/cmake/gmock_main.pc.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/docs/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-cardinalities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-cardinalities.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-function-mocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-function-mocker.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-more-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-more-actions.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-more-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-more-matchers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-nice-strict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-nice-strict.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock-spec-builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock-spec-builders.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/custom/gmock-port.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-port.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/include/gmock/internal/gmock-pp.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/BUILD.bazel -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-cardinalities_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-cardinalities_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-function-mocker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-function-mocker_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-internal-utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-internal-utils_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-matchers-arithmetic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-matchers-arithmetic_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-matchers-comparisons_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-matchers-comparisons_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-matchers-containers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-matchers-containers_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-matchers-misc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-matchers-misc_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-matchers_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-matchers_test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-more-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-more-actions_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-nice-strict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-nice-strict_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-pp-string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-pp-string_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-pp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-pp_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock-spec-builders_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock-spec-builders_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_output_test_golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_output_test_golden.txt -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/docs/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-assertion-result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-assertion-result.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/README.md -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample1.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample2.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample4.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-assertion-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-assertion-result.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/BUILD.bazel -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-break-on-failure-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-break-on-failure-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-break-on-failure-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-break-on-failure-unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-catch-exceptions-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-catch-exceptions-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-catch-exceptions-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-catch-exceptions-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-color-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-color-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-color-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-color-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-death-test-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-death-test-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-death-test_ex_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-env-var-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-env-var-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-env-var-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-env-var-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-failfast-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-failfast-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-failfast-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-failfast-unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-filepath-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-filepath-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-filter-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-filter-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-filter-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-filter-unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-global-environment-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-global-environment-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-global-environment-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-global-environment-unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-json-outfiles-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-json-outfiles-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-json-output-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-json-output-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-list-tests-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-list-tests-unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-list-tests-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-list-tests-unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-listener-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-listener-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-message-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-message-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-options-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-options-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-output-test-golden-lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-output-test-golden-lin.txt -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-output-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-output-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-output-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-output-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name1-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name1-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name2-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name2-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test-test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-param-test2-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-param-test2-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-port-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-port-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-printers-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-printers-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-setuptestsuite-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-setuptestsuite-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-setuptestsuite-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-setuptestsuite-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-shuffle-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-shuffle-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-shuffle-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-shuffle-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-test-part-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-test-part-test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-throw-on-failure-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-throw-on-failure-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-throw-on-failure-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-throw-on-failure-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-uninitialized-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-uninitialized-test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/googletest-uninitialized-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/googletest-uninitialized-test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_assert_by_exception_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_assert_by_exception_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_json_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_json_test_utils.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_list_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_list_output_unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_list_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_list_output_unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_skip_check_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_skip_check_output_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_skip_environment_check_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_skip_environment_check_output_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_skip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_skip_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_testbridge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_testbridge_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_testbridge_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_testbridge_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/production.cc -------------------------------------------------------------------------------- /libvpl/test/ext/googletest/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/ext/googletest/googletest/test/production.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub-nofn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub-nofn/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub-nofn/src/windows/libvplminrt-nofn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub-nofn/src/windows/libvplminrt-nofn.def -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_dec.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_dec_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_dec_none.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_enc.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_enc_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_enc_none.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_surface.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_vpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_vpp.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/caps_vpp_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/caps_vpp_none.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/config.cpp -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/config.h -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/stubs.cpp -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/src/windows/libvplminrt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub/src/windows/libvplminrt.def -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub/version.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /libvpl/test/runtimes/stub1x/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/runtimes/stub1x/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_common.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_common.h -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_common_multiprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_common_multiprop.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_enum_impls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_enum_impls.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_gpu.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_gpu_stringapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_gpu_stringapi.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_low_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_low_latency.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_stub.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_stub_propquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_stub_propquery.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_stub_stringapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_stub_stringapi.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_sw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_sw.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_sw_multiprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_sw_multiprop.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/dispatcher_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/dispatcher_util.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/experimental_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/experimental_api.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/legacycpp-session-test-1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/legacycpp-session-test-1x.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/legacycpp-session-test-2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/legacycpp-session-test-2x.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/legacycpp-session-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/legacycpp-session-test.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/main.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/session-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/session-test.cpp -------------------------------------------------------------------------------- /libvpl/test/unit/src/unit_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/libvpl/test/unit/src/unit_api.h -------------------------------------------------------------------------------- /script/Dockerfile.rhel.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/Dockerfile.rhel.build -------------------------------------------------------------------------------- /script/Dockerfile.ubuntu.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/Dockerfile.ubuntu.build -------------------------------------------------------------------------------- /script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/README.md -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/bootstrap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/bootstrap.bat -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/build -------------------------------------------------------------------------------- /script/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/build.bat -------------------------------------------------------------------------------- /script/gitlint/custom_gitlint_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/gitlint/custom_gitlint_rules.py -------------------------------------------------------------------------------- /script/gitlint/verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/gitlint/verbs.txt -------------------------------------------------------------------------------- /script/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/install -------------------------------------------------------------------------------- /script/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/install.bat -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/lint -------------------------------------------------------------------------------- /script/lint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/lint.bat -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/test -------------------------------------------------------------------------------- /script/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/script/test.bat -------------------------------------------------------------------------------- /third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/libvpl/HEAD/third-party-programs.txt -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.15.0 2 | --------------------------------------------------------------------------------