Browse Source
Merge pull request #7602 from jbeich/freebsd-vaapi
build: enable VA-API on FreeBSD
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
CMakeLists.txt
-
src/video_core/command_classes/codecs/codec.cpp
|
|
|
@ -508,7 +508,7 @@ set(FFmpeg_COMPONENTS |
|
|
|
avutil |
|
|
|
swscale) |
|
|
|
|
|
|
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") |
|
|
|
if (UNIX AND NOT APPLE) |
|
|
|
Include(FindPkgConfig REQUIRED) |
|
|
|
pkg_check_modules(LIBVA libva) |
|
|
|
endif() |
|
|
|
|
|
|
|
@ -32,7 +32,7 @@ constexpr std::array PREFERRED_GPU_DECODERS = { |
|
|
|
#ifdef _WIN32
|
|
|
|
AV_HWDEVICE_TYPE_D3D11VA, |
|
|
|
AV_HWDEVICE_TYPE_DXVA2, |
|
|
|
#elif defined(__linux__)
|
|
|
|
#elif defined(__unix__)
|
|
|
|
AV_HWDEVICE_TYPE_VAAPI, |
|
|
|
AV_HWDEVICE_TYPE_VDPAU, |
|
|
|
#endif
|
|
|
|
|