diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 21:16:52 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:12:10 +0200 |
commit | f95e1a7355df50485581f0f4b91f47d8c572a9f9 (patch) | |
tree | 101285182427dc886bbe0b5571ebb5e53447eee6 | |
parent | dc5385b6e2c82e773253fbea4bef408d3d26c930 (diff) | |
download | ffmpeg-f95e1a7355df50485581f0f4b91f47d8c572a9f9.tar.gz |
avcodec/frwu: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/frwu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c index d0a9102fe3..82a8ec2111 100644 --- a/libavcodec/frwu.c +++ b/libavcodec/frwu.c @@ -125,4 +125,5 @@ const AVCodec ff_frwu_decoder = { .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1, .priv_class = &frwu_class, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |