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

LibVideo: Abstract media container format demuxing

This creates an abstract Demuxer class to allow multiple container
container formats to be easily used by video playback systems.
This commit is contained in:
Zaggy1024 2022-10-29 17:02:43 -05:00 committed by Andreas Kling
parent 3a2f6c700d
commit 0a4def1208
8 changed files with 327 additions and 36 deletions

View file

@ -0,0 +1,51 @@
/*
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashFunctions.h>
#include <AK/Traits.h>
#include <AK/Types.h>
namespace Video {
enum class TrackType : u32 {
Video,
Audio,
Subtitles,
};
struct Track {
public:
Track(TrackType type, size_t identifier)
: m_type(type)
, m_identifier(identifier)
{
}
TrackType type() { return m_type; }
size_t identifier() const { return m_identifier; }
bool operator==(Track const& other) const
{
return m_type == other.m_type && m_identifier == other.m_identifier;
}
unsigned hash() const
{
return pair_int_hash(to_underlying(m_type), m_identifier);
}
private:
TrackType m_type;
size_t m_identifier;
};
}
template<>
struct AK::Traits<Video::Track> : public GenericTraits<Video::Track> {
static unsigned hash(Video::Track const& t) { return t.hash(); }
};