1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00: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:
Zaggy1024 2022-11-22 02:21:06 -06:00 committed by Andreas Kling
parent 0638c5d2b8
commit 5275a1101e
4 changed files with 0 additions and 15 deletions

View file

@ -1687,12 +1687,4 @@ void Parser::append_sub8x8_mvs(i32 block, u8 ref_list)
m_near_mv[ref_list] = sub_8x8_mvs[1];
}
void Parser::dump_info()
{
outln("Frame dimensions: {}x{}", m_frame_size.width(), m_frame_size.height());
outln("Render dimensions: {}x{}", m_render_size.width(), m_render_size.height());
outln("Bit depth: {}", m_bit_depth);
outln("Show frame: {}", m_show_frame);
}
}