ladybird/Userland/Libraries/LibVideo/CMakeLists.txt
FalseHonesty d60bd42972 LibVideo/VP9: Implement MV reading & rectify MV storage issues
With this patch we are finally done with section 6.4.X of the spec :^)
The only parsing left to be done is 6.5.X, motion vector prediction.

Additionally, this patch fixes how MVs were being stored in the parser.
Originally, due to the spec naming two very different values very
similarly, these properties had totally wrong data types, but this has
now been rectified.
2021-07-10 21:28:56 +02:00

19 lines
387 B
CMake

set(SOURCES
MatroskaDocument.h
MatroskaReader.cpp
VP9/BitStream.cpp
VP9/Decoder.cpp
VP9/Enums.h
VP9/LookupTables.h
VP9/MV.cpp
VP9/Parser.cpp
VP9/ProbabilityTables.cpp
VP9/Symbols.h
VP9/SyntaxElementCounter.cpp
VP9/TreeParser.cpp
VP9/Utilities.cpp
)
serenity_lib(LibVideo video)
target_link_libraries(LibVideo LibAudio LibCore LibIPC)