mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
The spec indicates that the codec defines how to interpret the data, so use our CodecIDs to determine the track type.
21 lines
256 B
C++
21 lines
256 B
C++
/*
|
|
* Copyright (c) 2025, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Media {
|
|
|
|
enum class TrackType : u8 {
|
|
Video,
|
|
Audio,
|
|
Subtitles,
|
|
Unknown,
|
|
};
|
|
|
|
}
|