From eafc048101bab77dac93692d1bbef875bdd6df61 Mon Sep 17 00:00:00 2001 From: Zaggy1024 Date: Mon, 28 Nov 2022 08:08:57 -0600 Subject: [PATCH] LibVideo/VP9: Remove a FIXME that is impossible to fix We can't memset an array with 32-bit integers to non-zero values, silly past me :^) --- Userland/Libraries/LibVideo/VP9/Decoder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibVideo/VP9/Decoder.cpp b/Userland/Libraries/LibVideo/VP9/Decoder.cpp index 8a75293bfe..79bc0dd704 100644 --- a/Userland/Libraries/LibVideo/VP9/Decoder.cpp +++ b/Userland/Libraries/LibVideo/VP9/Decoder.cpp @@ -604,7 +604,6 @@ DecoderErrorOr Decoder::predict_intra(u8 plane, u32 x, u32 y, bool have_le } break; case PredictionMode::DcPred: { - // FIXME: All indices are set equally below, use memset. Intermediate average = 0; if (have_left && have_above) {