diff options
author | Zaggy1024 <zaggy1024@gmail.com> | 2022-11-09 19:47:56 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-25 23:28:39 +0100 |
commit | 9cf7e8c5aafe23de2a6284a4a74d26089cb04fcb (patch) | |
tree | 8d963791bbddec00e7177dd63ef29f730fd0ec36 /Userland/Applications/VideoPlayer | |
parent | edec6bdc32dee9cb9af2951e8a4e26a94bdad6db (diff) | |
download | serenity-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 'Userland/Applications/VideoPlayer')
-rw-r--r-- | Userland/Applications/VideoPlayer/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Applications/VideoPlayer/main.cpp b/Userland/Applications/VideoPlayer/main.cpp index 07f8d67097..97130750ae 100644 --- a/Userland/Applications/VideoPlayer/main.cpp +++ b/Userland/Applications/VideoPlayer/main.cpp @@ -4,8 +4,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include "LibVideo/Color/CodingIndependentCodePoints.h" -#include "LibVideo/MatroskaDemuxer.h" #include <LibCore/ArgsParser.h> #include <LibGUI/Application.h> #include <LibGUI/Icon.h> |