This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libva: VA-API version 0.32.0 | |
Xlib: extension "XFree86-DRI" missing on display ":1". | |
libva: va_getDriverName() returns -1 | |
[VS] Software VDPAU backend library initialized | |
[VS] {full} vdp_imp_device_create_x11 display=0xfd6010, screen=0 | |
[VS] warning: failed to initialize libva. No video decode acceleration available. | |
[VS] {part} VdpOutputSurfaceCreate device=1, rgba_format=VDP_RGBA_FORMAT_B8G8R8A8, width=509, height=601 | |
[VS] {part} VdpOutputSurfaceCreate device=1, rgba_format=VDP_RGBA_FORMAT_B8G8R8A8, width=509, height=601 | |
[VS] {full} VdpBitmapSurfaceCreate device=1, rgba_format=VDP_RGBA_FORMAT_B8G8R8A8, width=509, height=601, | |
frequently_accessed=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libva: VA-API version 0.32.0 | |
Xlib: extension "XFree86-DRI" missing on display ":1". | |
libva: va_getDriverName() returns -1 | |
[VS] Software VDPAU backend library initialized | |
[VS] {full} vdp_imp_device_create_x11 display=0xaa5010, screen=0 | |
[VS] warning: failed to initialize libva. No video decode acceleration available. | |
[VS] {part} VdpOutputSurfaceCreate device=1, rgba_format=VDP_RGBA_FORMAT_A8, width=5, height=5 | |
[VS] {full} VdpOutputSurfacePutBitsNative surface=2, destination_rect=NULL | |
[VS] {part} VdpOutputSurfaceGetBitsNative surface=2, source_rect=NULL | |
outputsurface |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 0ee632d..9de61f2 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -9,6 +9,12 @@ add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}) | |
enable_testing() | |
add_subdirectory(tests) | |
+set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)") | |
+set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE PATH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 9de61f2..26c3b5f 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -6,6 +6,8 @@ find_package(PkgConfig REQUIRED) | |
pkg_check_modules(SOMELIBS vdpau glib-2.0 libswscale libva-glx gl glu REQUIRED) | |
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}) | |
+add_custom_target(tests) | |
+add_dependencies(check test) |