mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
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:
parent
d218a68296
commit
eafc048101
1 changed files with 0 additions and 1 deletions
|
@ -604,7 +604,6 @@ DecoderErrorOr<void> Decoder::predict_intra(u8 plane, u32 x, u32 y, bool have_le
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case PredictionMode::DcPred: {
|
case PredictionMode::DcPred: {
|
||||||
// FIXME: All indices are set equally below, use memset.
|
|
||||||
Intermediate average = 0;
|
Intermediate average = 0;
|
||||||
|
|
||||||
if (have_left && have_above) {
|
if (have_left && have_above) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue