Files
ladybird/Libraries/LibMedia/TrackType.h
Zaggy1024 c34b5a544e LibMedia: Set Matroska "complex" tracks' types based on the codec
The spec indicates that the codec defines how to interpret the data,
so use our CodecIDs to determine the track type.
2025-11-21 16:51:58 -06:00

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,
};
}