summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorFalseHonesty <thefalsehonesty@gmail.com>2021-06-05 16:06:55 -0400
committerAndreas Kling <kling@serenityos.org>2021-06-06 17:47:00 +0200
commit403bb07443f482734597f0e1c59706d79d7d1ac4 (patch)
tree3860327eddeecc8e0dad08eb409b44b392d7aaaa /AK
parent6a15bd06cb5621f41e7650926ecd86bbbb912873 (diff)
downloadserenity-403bb07443f482734597f0e1c59706d79d7d1ac4.zip
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.
Diffstat (limited to 'AK')
-rw-r--r--AK/Debug.h.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/AK/Debug.h.in b/AK/Debug.h.in
index 76cac4735f..278c1fd575 100644
--- a/AK/Debug.h.in
+++ b/AK/Debug.h.in
@@ -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