From 21b23ceab3cfcc2aa0a833bbff11cf38b2177800 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 10 Jul 2022 00:05:45 +0200 Subject: avcodec: Make init-threadsafety the default and remove FF_CODEC_CAP_INIT_THREADSAFE All our native codecs are already init-threadsafe (only wrappers for external libraries and hwaccels are typically not marked as init-threadsafe yet), so it is only natural for this to also be the default state. Reviewed-by: Anton Khirnov Signed-off-by: Andreas Rheinhardt --- libavcodec/videotoolboxenc.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libavcodec/videotoolboxenc.c') diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index 69d9fe75bf..823e5ad94e 100644 --- a/libavcodec/videotoolboxenc.c +++ b/libavcodec/videotoolboxenc.c @@ -2750,8 +2750,7 @@ const FFCodec ff_h264_videotoolbox_encoder = { FF_CODEC_ENCODE_CB(vtenc_frame), .close = vtenc_close, .p.priv_class = &h264_videotoolbox_class, - .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | - FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, }; static const AVOption hevc_options[] = { @@ -2785,8 +2784,7 @@ const FFCodec ff_hevc_videotoolbox_encoder = { FF_CODEC_ENCODE_CB(vtenc_frame), .close = vtenc_close, .p.priv_class = &hevc_videotoolbox_class, - .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | - FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .p.wrapper_name = "videotoolbox", }; @@ -2824,7 +2822,6 @@ const FFCodec ff_prores_videotoolbox_encoder = { FF_CODEC_ENCODE_CB(vtenc_frame), .close = vtenc_close, .p.priv_class = &prores_videotoolbox_class, - .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | - FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .p.wrapper_name = "videotoolbox", }; -- cgit v1.2.3