mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:08:12 +00:00

As new demuxers are added, this will get quite full of files, so it'll be good to have a separate folder for these. To avoid too many chained namespaces, the Containers subdirectory is not also a namespace, but the Matroska folder is for the sake of separating the multiple classes for parsed information entering the Video namespace.
18 lines
480 B
CMake
18 lines
480 B
CMake
set(SOURCES
|
|
Color/ColorConverter.cpp
|
|
Color/ColorPrimaries.cpp
|
|
Color/TransferCharacteristics.cpp
|
|
Containers/Matroska/MatroskaDemuxer.cpp
|
|
Containers/Matroska/Reader.cpp
|
|
PlaybackManager.cpp
|
|
VideoFrame.cpp
|
|
VP9/BitStream.cpp
|
|
VP9/Decoder.cpp
|
|
VP9/Parser.cpp
|
|
VP9/ProbabilityTables.cpp
|
|
VP9/SyntaxElementCounter.cpp
|
|
VP9/TreeParser.cpp
|
|
)
|
|
|
|
serenity_lib(LibVideo video)
|
|
target_link_libraries(LibVideo PRIVATE LibAudio LibCore LibIPC LibGfx)
|