You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/mpeg12dec: Really disable scratchpad allocations
ba341be095
disabled them for
the main thread only, not the slice threads.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@ -1001,7 +1001,8 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||
if ((ret = ff_mpv_common_init(s)) < 0)
|
||||
return ret;
|
||||
if (!s->avctx->lowres)
|
||||
ff_mpv_framesize_disable(&s->sc);
|
||||
for (int i = 0; i < s->slice_context_count; i++)
|
||||
ff_mpv_framesize_disable(&s->thread_context[i]->sc);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -1874,7 +1875,8 @@ static int vcr2_init_sequence(AVCodecContext *avctx)
|
||||
if ((ret = ff_mpv_common_init(s)) < 0)
|
||||
return ret;
|
||||
if (!s->avctx->lowres)
|
||||
ff_mpv_framesize_disable(&s->sc);
|
||||
for (int i = 0; i < s->slice_context_count; i++)
|
||||
ff_mpv_framesize_disable(&s->thread_context[i]->sc);
|
||||
|
||||
for (i = 0; i < 64; i++) {
|
||||
int j = s->idsp.idct_permutation[i];
|
||||
|
Reference in New Issue
Block a user