mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
41cb705b47
Previously, some integer overflows and truncations were causing parsing errors for 4K videos, with those fixed it can fully decode 8K video. This adds a test to ensure that 4K video will continue to be decoded. Note: There seems to be unexpectedly high memory usage while decoding them, causing 8K video to require more than a gigabyte of RAM. (!!!)
10 lines
269 B
CMake
10 lines
269 B
CMake
set(TEST_SOURCES
|
|
TestVP9Decode.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibVideo LIBS LibVideo)
|
|
endforeach()
|
|
|
|
install(FILES vp9_in_webm.webm DESTINATION usr/Tests/LibVideo)
|
|
install(FILES vp9_4k.webm DESTINATION usr/Tests/LibVideo)
|