mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 05:00:37 +00:00
proresenc: use the edge emulation buffer
Prevents reading past the end of frame buffer. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
fb96c1c5fe
commit
cee03436e6
@ -251,24 +251,24 @@ static void get_slice_data(ProresContext *ctx, const uint16_t *src,
|
||||
ctx->dsp.fdct(esrc, elinesize, blocks);
|
||||
blocks += 64;
|
||||
if (blocks_per_mb > 2) {
|
||||
ctx->dsp.fdct(src + 8, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + 8, elinesize, blocks);
|
||||
blocks += 64;
|
||||
}
|
||||
ctx->dsp.fdct(src + linesize * 4, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + elinesize * 4, elinesize, blocks);
|
||||
blocks += 64;
|
||||
if (blocks_per_mb > 2) {
|
||||
ctx->dsp.fdct(src + linesize * 4 + 8, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + elinesize * 4 + 8, elinesize, blocks);
|
||||
blocks += 64;
|
||||
}
|
||||
} else {
|
||||
ctx->dsp.fdct(esrc, elinesize, blocks);
|
||||
blocks += 64;
|
||||
ctx->dsp.fdct(src + linesize * 4, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + elinesize * 4, elinesize, blocks);
|
||||
blocks += 64;
|
||||
if (blocks_per_mb > 2) {
|
||||
ctx->dsp.fdct(src + 8, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + 8, elinesize, blocks);
|
||||
blocks += 64;
|
||||
ctx->dsp.fdct(src + linesize * 4 + 8, linesize, blocks);
|
||||
ctx->dsp.fdct(esrc + elinesize * 4 + 8, elinesize, blocks);
|
||||
blocks += 64;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user