summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-29 23:40:15 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-29 23:40:15 +0100
commit91c63cb053cd7a1be8bb22b3857a170eeb2b1f95 (patch)
treece78a60e0189b617fee8bdeb6a0d3d87e5d2620c /libavcodec
parent9c835acc1da49919449f11d2f86b3422aee85ea0 (diff)
avcodec/mpeg4videodec: copy rvlc in mpeg4_update_thread_context too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mpeg4videodec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index 369a85c028..b7549fa04b 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -2524,6 +2524,7 @@ static int mpeg4_update_thread_context(AVCodecContext *dst,
s->shape = s1->shape;
s->time_increment_bits = s1->time_increment_bits;
s->vol_sprite_usage = s1->vol_sprite_usage;
+ s->rvlc = s1->rvlc;
return 0;
}