mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:02:43 +00:00 
			
		
		
		
	LibVideo: Remove declarations for non-existent methods
This commit is contained in:
		
							parent
							
								
									1568063cc8
								
							
						
					
					
						commit
						5cc4b37bf3
					
				
					 4 changed files with 0 additions and 10 deletions
				
			
		|  | @ -97,7 +97,6 @@ private: | ||||||
|     { |     { | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     DecoderErrorOr<void> set_position(size_t position); |  | ||||||
|     DecoderErrorOr<void> seek_to_cue_point(CuePoint const& cue_point); |     DecoderErrorOr<void> seek_to_cue_point(CuePoint const& cue_point); | ||||||
| 
 | 
 | ||||||
|     RefPtr<Core::MappedFile> m_file; |     RefPtr<Core::MappedFile> m_file; | ||||||
|  |  | ||||||
|  | @ -102,7 +102,6 @@ public: | ||||||
|     static constexpr SeekMode DEFAULT_SEEK_MODE = SeekMode::Accurate; |     static constexpr SeekMode DEFAULT_SEEK_MODE = SeekMode::Accurate; | ||||||
| 
 | 
 | ||||||
|     static DecoderErrorOr<NonnullOwnPtr<PlaybackManager>> from_file(Core::Object& event_handler, StringView file); |     static DecoderErrorOr<NonnullOwnPtr<PlaybackManager>> from_file(Core::Object& event_handler, StringView file); | ||||||
|     static DecoderErrorOr<NonnullOwnPtr<PlaybackManager>> from_data(Core::Object& event_handler, Span<u8> data); |  | ||||||
| 
 | 
 | ||||||
|     PlaybackManager(Core::Object& event_handler, NonnullOwnPtr<Demuxer>& demuxer, Track video_track, NonnullOwnPtr<VideoDecoder>&& decoder); |     PlaybackManager(Core::Object& event_handler, NonnullOwnPtr<Demuxer>& demuxer, Track video_track, NonnullOwnPtr<VideoDecoder>&& decoder); | ||||||
| 
 | 
 | ||||||
|  | @ -211,9 +210,6 @@ public: | ||||||
|     } |     } | ||||||
|     virtual ~PlaybackStatusChangeEvent() = default; |     virtual ~PlaybackStatusChangeEvent() = default; | ||||||
| 
 | 
 | ||||||
|     PlaybackStatus status(); |  | ||||||
|     PlaybackStatus previous_status(); |  | ||||||
| 
 |  | ||||||
| private: | private: | ||||||
|     PlaybackStatus m_status; |     PlaybackStatus m_status; | ||||||
|     PlaybackStatus m_previous_status; |     PlaybackStatus m_previous_status; | ||||||
|  |  | ||||||
|  | @ -45,7 +45,6 @@ private: | ||||||
|     DecoderErrorOr<void> create_video_frame(FrameContext const&); |     DecoderErrorOr<void> create_video_frame(FrameContext const&); | ||||||
| 
 | 
 | ||||||
|     DecoderErrorOr<void> allocate_buffers(FrameContext const&); |     DecoderErrorOr<void> allocate_buffers(FrameContext const&); | ||||||
|     Vector<Intermediate>& get_temp_buffer(u8 plane); |  | ||||||
|     Vector<u16>& get_output_buffer(u8 plane); |     Vector<u16>& get_output_buffer(u8 plane); | ||||||
| 
 | 
 | ||||||
|     /* (8.4) Probability Adaptation Process */ |     /* (8.4) Probability Adaptation Process */ | ||||||
|  | @ -66,8 +65,6 @@ private: | ||||||
|     MotionVector select_motion_vector(u8 plane, BlockContext const&, ReferenceIndex, u32 block_index); |     MotionVector select_motion_vector(u8 plane, BlockContext const&, ReferenceIndex, u32 block_index); | ||||||
|     // (8.5.2.2) Motion vector clamping process
 |     // (8.5.2.2) Motion vector clamping process
 | ||||||
|     MotionVector clamp_motion_vector(u8 plane, BlockContext const&, u32 block_row, u32 block_column, MotionVector vector); |     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<MotionVector> scale_motion_vector(u8 plane, ReferenceIndex, u32 x, u32 y, MotionVector vector); |  | ||||||
|     // From (8.5.1) Inter prediction process, steps 2-5
 |     // From (8.5.1) Inter prediction process, steps 2-5
 | ||||||
|     DecoderErrorOr<void> 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<u16> block_buffer); |     DecoderErrorOr<void> 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<u16> block_buffer); | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -45,7 +45,6 @@ private: | ||||||
|      * See also section 5.26. */ |      * See also section 5.26. */ | ||||||
|     Vector<size_t> parse_superframe_sizes(ReadonlyBytes); |     Vector<size_t> parse_superframe_sizes(ReadonlyBytes); | ||||||
| 
 | 
 | ||||||
|     DecoderErrorOr<FrameType> read_frame_type(); |  | ||||||
|     DecoderErrorOr<ColorRange> read_color_range(); |     DecoderErrorOr<ColorRange> read_color_range(); | ||||||
| 
 | 
 | ||||||
|     /* (6.1) Frame Syntax */ |     /* (6.1) Frame Syntax */ | ||||||
|  | @ -56,7 +55,6 @@ private: | ||||||
|     DecoderErrorOr<FrameContext> uncompressed_header(); |     DecoderErrorOr<FrameContext> uncompressed_header(); | ||||||
|     DecoderErrorOr<void> frame_sync_code(); |     DecoderErrorOr<void> frame_sync_code(); | ||||||
|     DecoderErrorOr<ColorConfig> parse_color_config(FrameContext const&); |     DecoderErrorOr<ColorConfig> parse_color_config(FrameContext const&); | ||||||
|     DecoderErrorOr<void> set_frame_size_and_compute_image_size(); |  | ||||||
|     DecoderErrorOr<Gfx::Size<u32>> parse_frame_size(); |     DecoderErrorOr<Gfx::Size<u32>> parse_frame_size(); | ||||||
|     DecoderErrorOr<Gfx::Size<u32>> parse_frame_size_with_refs(Array<u8, 3> const& reference_indices); |     DecoderErrorOr<Gfx::Size<u32>> parse_frame_size_with_refs(Array<u8, 3> const& reference_indices); | ||||||
|     DecoderErrorOr<Gfx::Size<u32>> parse_render_size(Gfx::Size<u32> frame_size); |     DecoderErrorOr<Gfx::Size<u32>> parse_render_size(Gfx::Size<u32> frame_size); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Sam Atkins
						Sam Atkins