1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:17:45 +00:00

LibVideo: Scaffold LibVideo and implement simplistic Matroska parser

This commit initializes the LibVideo library and implements parsing
basic Matroska container files. Currently, it will only parse audio
and video tracks.
This commit is contained in:
FalseHonesty 2021-06-05 16:06:55 -04:00 committed by Andreas Kling
parent 6a15bd06cb
commit 403bb07443
7 changed files with 840 additions and 0 deletions

View file

@ -258,6 +258,14 @@
#cmakedefine01 MARKDOWN_DEBUG
#endif
#ifndef MATROSKA_DEBUG
#cmakedefine01 MATROSKA_DEBUG
#endif
#ifndef MATROSKA_TRACE_DEBUG
#cmakedefine01 MATROSKA_TRACE_DEBUG
#endif
#ifndef MEMORY_DEBUG
#cmakedefine01 MEMORY_DEBUG
#endif