Commit 2233ef1d authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/exr: Mark decoder as init-threadsafe

This decoder does not initialize any static data in its init function.
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 2d29058f
......@@ -2351,5 +2351,6 @@ const AVCodec ff_exr_decoder = {
.decode = decode_frame,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
AV_CODEC_CAP_SLICE_THREADS,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
.priv_class = &exr_class,
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment