diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 13:00:37 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-04 08:51:26 +0100 |
commit | 38ecc3702dabbea09230f6d6333f59e74f5d1c12 (patch) | |
tree | f579350e0fc85ce1cb42646b2f13a5ed9a6895af /libavcodec/avcodec.h | |
parent | daa7a1d4431b6acf1f93c4a98b3de123abf4ca18 (diff) | |
download | ffmpeg-38ecc3702dabbea09230f6d6333f59e74f5d1c12.tar.gz |
pthread: store thread contexts in AVCodecInternal instead of AVCodecContext
It's a private field, it should not be visible to callers.
Deprecate AVCodecContext.thread_opaque
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 9d63e32c25..47fda6905e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2532,13 +2532,13 @@ typedef struct AVCodecContext { */ int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count); +#if FF_API_THREAD_OPAQUE /** - * thread opaque - * Can be used by execute() to store some per AVCodecContext stuff. - * - encoding: set by execute() - * - decoding: set by execute() + * @deprecated this field should not be used from outside of lavc */ + attribute_deprecated void *thread_opaque; +#endif /** * noise vs. sse weight for the nsse comparsion function |