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>2012-02-27 21:52:13 +0400
committerAnton Khirnov <anton@khirnov.net>2012-03-05 00:02:45 +0400
commit02beb9826b29166b5d7c9b306ac1648abb449be0 (patch)
treec94871bf0201b0ca0dd73a1a1f07961e38edeee1 /libavcodec/pthread.c
parent87392b1fd5c59004b8e559463b47836e418d1d27 (diff)
lavc: deprecate AVCodecContext.sub_id.
In most places where it's used, it's as a pointless write-only field. Only rv10 decoder actually reads from it, but it stores some internal version info in it. There is no reason for it to be in a public field.
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r--libavcodec/pthread.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c
index f17f34e8e1..4a02823dde 100644
--- a/libavcodec/pthread.c
+++ b/libavcodec/pthread.c
@@ -402,7 +402,6 @@ static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src,
int err = 0;
if (dst != src) {
- dst->sub_id = src->sub_id;
dst->time_base = src->time_base;
dst->width = src->width;
dst->height = src->height;