diff --git a/Userland/Libraries/LibVideo/Containers/Matroska/Reader.h b/Userland/Libraries/LibVideo/Containers/Matroska/Reader.h index df046a2c1f..5df0912d37 100644 --- a/Userland/Libraries/LibVideo/Containers/Matroska/Reader.h +++ b/Userland/Libraries/LibVideo/Containers/Matroska/Reader.h @@ -97,7 +97,6 @@ private: { } - DecoderErrorOr set_position(size_t position); DecoderErrorOr seek_to_cue_point(CuePoint const& cue_point); RefPtr m_file; diff --git a/Userland/Libraries/LibVideo/PlaybackManager.h b/Userland/Libraries/LibVideo/PlaybackManager.h index 950c5be667..abc26d0f03 100644 --- a/Userland/Libraries/LibVideo/PlaybackManager.h +++ b/Userland/Libraries/LibVideo/PlaybackManager.h @@ -102,7 +102,6 @@ public: static constexpr SeekMode DEFAULT_SEEK_MODE = SeekMode::Accurate; static DecoderErrorOr> from_file(Core::Object& event_handler, StringView file); - static DecoderErrorOr> from_data(Core::Object& event_handler, Span data); PlaybackManager(Core::Object& event_handler, NonnullOwnPtr& demuxer, Track video_track, NonnullOwnPtr&& decoder); @@ -211,9 +210,6 @@ public: } virtual ~PlaybackStatusChangeEvent() = default; - PlaybackStatus status(); - PlaybackStatus previous_status(); - private: PlaybackStatus m_status; PlaybackStatus m_previous_status; diff --git a/Userland/Libraries/LibVideo/VP9/Decoder.h b/Userland/Libraries/LibVideo/VP9/Decoder.h index b6f06c9cd1..aeda7de660 100644 --- a/Userland/Libraries/LibVideo/VP9/Decoder.h +++ b/Userland/Libraries/LibVideo/VP9/Decoder.h @@ -45,7 +45,6 @@ private: DecoderErrorOr create_video_frame(FrameContext const&); DecoderErrorOr allocate_buffers(FrameContext const&); - Vector& get_temp_buffer(u8 plane); Vector& get_output_buffer(u8 plane); /* (8.4) Probability Adaptation Process */ @@ -66,8 +65,6 @@ private: MotionVector select_motion_vector(u8 plane, BlockContext const&, ReferenceIndex, u32 block_index); // (8.5.2.2) Motion vector clamping process MotionVector clamp_motion_vector(u8 plane, BlockContext const&, u32 block_row, u32 block_column, MotionVector vector); - // (8.5.2.3) Motion vector scaling process - DecoderErrorOr scale_motion_vector(u8 plane, ReferenceIndex, u32 x, u32 y, MotionVector vector); // From (8.5.1) Inter prediction process, steps 2-5 DecoderErrorOr predict_inter_block(u8 plane, BlockContext const&, ReferenceIndex, u32 block_row, u32 block_column, u32 x, u32 y, u32 width, u32 height, u32 block_index, Span block_buffer); diff --git a/Userland/Libraries/LibVideo/VP9/Parser.h b/Userland/Libraries/LibVideo/VP9/Parser.h index 768a150c48..eab988d2ac 100644 --- a/Userland/Libraries/LibVideo/VP9/Parser.h +++ b/Userland/Libraries/LibVideo/VP9/Parser.h @@ -45,7 +45,6 @@ private: * See also section 5.26. */ Vector parse_superframe_sizes(ReadonlyBytes); - DecoderErrorOr read_frame_type(); DecoderErrorOr read_color_range(); /* (6.1) Frame Syntax */ @@ -56,7 +55,6 @@ private: DecoderErrorOr uncompressed_header(); DecoderErrorOr frame_sync_code(); DecoderErrorOr parse_color_config(FrameContext const&); - DecoderErrorOr set_frame_size_and_compute_image_size(); DecoderErrorOr> parse_frame_size(); DecoderErrorOr> parse_frame_size_with_refs(Array const& reference_indices); DecoderErrorOr> parse_render_size(Gfx::Size frame_size);