mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/h264_slice: don't allocate film grain buffers when using hwaccel
Fixes regression since 66845cffc3
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
8cbed82b2a
commit
9677053884
@ -527,7 +527,7 @@ static int h264_frame_start(H264Context *h)
|
||||
pic->f->crop_top = h->crop_top;
|
||||
pic->f->crop_bottom = h->crop_bottom;
|
||||
|
||||
pic->needs_fg = h->sei.film_grain_characteristics.present &&
|
||||
pic->needs_fg = h->sei.film_grain_characteristics.present && !h->avctx->hwaccel &&
|
||||
!(h->avctx->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN);
|
||||
|
||||
if ((ret = alloc_picture(h, pic)) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user