mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibVideo/VP9: Remove dump_frame_info() function from Decoder
The function serves no purpose now, any debug information we want to pull from the decoder should be instead accessed by some other yet to be created interface.
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 03:55:32 +09:00
Author: https://github.com/Zaggy1024 Commit: https://github.com/SerenityOS/serenity/commit/5275a1101e Pull-request: https://github.com/SerenityOS/serenity/pull/16238
@@ -46,11 +46,6 @@ DecoderErrorOr<void> Decoder::receive_sample(ReadonlyBytes chunk_data)
|
||||
return {};
|
||||
}
|
||||
|
||||
void Decoder::dump_frame_info()
|
||||
{
|
||||
m_parser->dump_info();
|
||||
}
|
||||
|
||||
inline size_t index_from_row_and_column(u32 row, u32 column, u32 stride)
|
||||
{
|
||||
return row * stride + column;
|
||||
|
||||
Reference in New Issue
Block a user