summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-30 03:00:53 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-30 03:06:40 +0100
commitb08ff07d8d9a4bd1c8785c22888e5a19a7da0861 (patch)
tree57651ad47c39c39fb1ed58c97a2245fe0ede8d27 /libavcodec
parentb4ef7447eb16fc947110d86ebb4593066e524ae1 (diff)
avcodec/mpeg4videodec: update bug workaround related variables like they where before
This fixes the code after the variables have been moved into the mpeg4 decoder. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mpeg4videodec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index a1662f2ca4..212954c9f9 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -2684,6 +2684,10 @@ static int mpeg4_update_thread_context(AVCodecContext *dst,
s->time_increment_bits = s1->time_increment_bits;
s->vol_sprite_usage = s1->vol_sprite_usage;
s->rvlc = s1->rvlc;
+ s->divx_version = s1->divx_version;
+ s->divx_build = s1->divx_build;
+ s->xvid_build = s1->xvid_build;
+ s->lavc_build = s1->lavc_build;
return 0;
}