From 3ffbe20067757551bf33e809690602515eefe9d2 Mon Sep 17 00:00:00 2001 From: Zaggy1024 Date: Sun, 9 Oct 2022 05:06:04 -0500 Subject: [PATCH] LibVideo: Remove printing of the interpolation filter in VP9 dump_info The interpolation filter value is not set when reading an intra-only frame, so printing this for the first keyframe of the file was printing "220", which is invalid. --- Userland/Libraries/LibVideo/VP9/Parser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibVideo/VP9/Parser.cpp b/Userland/Libraries/LibVideo/VP9/Parser.cpp index 47732aeafe..259d0c8ef3 100644 --- a/Userland/Libraries/LibVideo/VP9/Parser.cpp +++ b/Userland/Libraries/LibVideo/VP9/Parser.cpp @@ -1396,7 +1396,6 @@ void Parser::dump_info() outln("Frame dimensions: {}x{}", m_frame_width, m_frame_height); outln("Render dimensions: {}x{}", m_render_width, m_render_height); outln("Bit depth: {}", m_bit_depth); - outln("Interpolation filter: {}", (u8)m_interpolation_filter); } }