LibWeb: List supported media types publicly for HTMLMediaElement

This commit is contained in:
Andrew Kaster 2024-12-19 12:43:48 -07:00 committed by Andreas Kling
commit 202bf901d7
Notes: github-actions[bot] 2024-12-25 11:32:53 +00:00
2 changed files with 22 additions and 11 deletions

View file

@ -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 {