Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-27 16:00:37 +0400
committerAnton Khirnov <anton@khirnov.net>2013-11-04 11:51:26 +0400
commit38ecc3702dabbea09230f6d6333f59e74f5d1c12 (patch)
treef579350e0fc85ce1cb42646b2f13a5ed9a6895af /libavcodec/options.c
parentdaa7a1d4431b6acf1f93c4a98b3de123abf4ca18 (diff)
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/options.c')
-rw-r--r--libavcodec/options.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c
index 8d36c01183..2e41ce4704 100644
--- a/libavcodec/options.c
+++ b/libavcodec/options.c
@@ -150,7 +150,6 @@ int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
dest->codec = NULL;
dest->slice_offset = NULL;
dest->hwaccel = NULL;
- dest->thread_opaque = NULL;
dest->internal = NULL;
/* reallocate values that should be allocated separately */