diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-04 11:14:38 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-04 11:14:38 +0100 |
commit | 3fc26d8073a49c96a0704015ce18f5317d87a739 (patch) | |
tree | 54e7c6782281bf070c91faf63371a1980e92da38 /libavcodec/avcodec.h | |
parent | 2a7cbc29a8aa0db2bcee95123a83c13d02f0f753 (diff) | |
parent | 38ecc3702dabbea09230f6d6333f59e74f5d1c12 (diff) | |
download | ffmpeg-3fc26d8073a49c96a0704015ce18f5317d87a739.tar.gz |
Merge commit '38ecc3702dabbea09230f6d6333f59e74f5d1c12'
* commit '38ecc3702dabbea09230f6d6333f59e74f5d1c12':
pthread: store thread contexts in AVCodecInternal instead of AVCodecContext
Conflicts:
libavcodec/internal.h
libavcodec/utils.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 285d2659ce..5114c5d1dc 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2681,13 +2681,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 |