mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
avcodec/texturedspenc: Fix indexing in color distribution determination
Fixes CID1396405
MSE and PSNR is slightly improved, and some noticable corruptions disappear as
well.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Marton Balint <cus@passwd.hu>
(cherry picked from commit ade36d61de)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -255,11 +255,11 @@ static void optimize_colors(const uint8_t *block, ptrdiff_t stride,
|
|||||||
|
|
||||||
muv = minv = maxv = bp[0];
|
muv = minv = maxv = bp[0];
|
||||||
for (y = 0; y < 4; y++) {
|
for (y = 0; y < 4; y++) {
|
||||||
for (x = 4; x < 4; x += 4) {
|
for (x = 0; x < 4; x++) {
|
||||||
muv += bp[x * 4 + y * stride];
|
muv += bp[x * 4 + y * stride];
|
||||||
if (bp[x] < minv)
|
if (bp[x * 4 + y * stride] < minv)
|
||||||
minv = bp[x * 4 + y * stride];
|
minv = bp[x * 4 + y * stride];
|
||||||
else if (bp[x] > maxv)
|
else if (bp[x * 4 + y * stride] > maxv)
|
||||||
maxv = bp[x * 4 + y * stride];
|
maxv = bp[x * 4 + y * stride];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user