summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorZaggy1024 <zaggy1024@gmail.com>2022-11-09 19:47:56 -0600
committerAndreas Kling <kling@serenityos.org>2022-11-25 23:28:39 +0100
commit9cf7e8c5aafe23de2a6284a4a74d26089cb04fcb (patch)
tree8d963791bbddec00e7177dd63ef29f730fd0ec36 /Meta
parentedec6bdc32dee9cb9af2951e8a4e26a94bdad6db (diff)
downloadserenity-9cf7e8c5aafe23de2a6284a4a74d26089cb04fcb.zip
LibVideo: Reorganize demuxer file hierarchy and rename Matroska files
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.
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/Fuzzers/FuzzMatroskaReader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzMatroskaReader.cpp b/Meta/Lagom/Fuzzers/FuzzMatroskaReader.cpp
index ac59b7c34c..dff87bf2cc 100644
--- a/Meta/Lagom/Fuzzers/FuzzMatroskaReader.cpp
+++ b/Meta/Lagom/Fuzzers/FuzzMatroskaReader.cpp
@@ -4,12 +4,12 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <LibVideo/MatroskaReader.h>
+#include <LibVideo/Containers/Matroska/Reader.h>
#include <stddef.h>
extern "C" int LLVMFuzzerTestOneInput(u8 const* data, size_t size)
{
- auto matroska_document = Video::MatroskaReader::parse_matroska_from_data(data, size);
+ auto matroska_document = Video::Matroska::Reader::parse_matroska_from_data(data, size);
if (!matroska_document)
return -1;
return 0;