1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:57:44 +00:00

LibVideo: Add test to ensure that a VP9 WebM file will decode

This will test decoding of one second of video, to ensure that it can
fully decode the entire file.
This commit is contained in:
Zaggy1024 2022-09-25 18:24:07 -05:00 committed by Andrew Kaster
parent b71d13be82
commit d67231312e
4 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,9 @@
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)