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 :^)
This commit is contained in:
Zaggy1024 2022-11-28 08:08:57 -06:00 committed by Andreas Kling
parent d218a68296
commit eafc048101

View file

@ -604,7 +604,6 @@ DecoderErrorOr<void> 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) {