From b08ff07d8d9a4bd1c8785c22888e5a19a7da0861 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 30 Nov 2013 03:00:53 +0100 Subject: [PATCH] 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 --- libavcodec/mpeg4videodec.c | 4 ++++ 1 file changed, 4 insertions(+) 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; }