aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/codec_internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-10 00:05:45 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-18 20:04:59 +0200
commit21b23ceab3cfcc2aa0a833bbff11cf38b2177800 (patch)
treec43a584592cdd4dc799fbbddb2c2246d01284598 /libavcodec/codec_internal.h
parent6aad1204ccea90113d19a8b829c8b81891f9474e (diff)
downloadffmpeg-21b23ceab3cfcc2aa0a833bbff11cf38b2177800.tar.gz
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 <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/codec_internal.h')
-rw-r--r--libavcodec/codec_internal.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/codec_internal.h b/libavcodec/codec_internal.h
index a90c19d61a..3619d04090 100644
--- a/libavcodec/codec_internal.h
+++ b/libavcodec/codec_internal.h
@@ -25,17 +25,12 @@
#include "codec.h"
/**
- * The codec does not modify any global variables in the init function,
- * allowing to call the init function without locking any global mutexes.
- */
-#define FF_CODEC_CAP_INIT_THREADSAFE (1 << 0)
-/**
* The codec is not known to be init-threadsafe (i.e. it might be unsafe
* to initialize this codec and another codec concurrently, typically because
* the codec calls external APIs that are not known to be thread-safe).
* Therefore calling the codec's init function needs to be guarded with a lock.
*/
-#define FF_CODEC_CAP_NOT_INIT_THREADSAFE (1 << 9)
+#define FF_CODEC_CAP_NOT_INIT_THREADSAFE (1 << 0)
/**
* The codec allows calling the close function for deallocation even if
* the init function returned a failure. Without this capability flag, a