mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb: List supported media types publicly for HTMLMediaElement
This commit is contained in:
committed by
Andreas Kling
parent
8ebf2c3007
commit
202bf901d7
@@ -58,6 +58,20 @@ public:
|
||||
|
||||
[[nodiscard]] GC::Ref<TimeRanges> buffered() const;
|
||||
|
||||
static inline constexpr auto supported_video_subtypes = Array {
|
||||
"webm"sv,
|
||||
"mp4"sv,
|
||||
"mpeg"sv,
|
||||
"ogg"sv,
|
||||
};
|
||||
static inline constexpr auto supported_audio_subtypes = Array {
|
||||
"flac"sv,
|
||||
"mp3"sv,
|
||||
"mpeg"sv,
|
||||
"ogg"sv,
|
||||
"wav"sv,
|
||||
"webm"sv,
|
||||
};
|
||||
Bindings::CanPlayTypeResult can_play_type(StringView type) const;
|
||||
|
||||
enum class ReadyState : u16 {
|
||||
|
||||
Reference in New Issue
Block a user