diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-26 11:23:16 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-29 14:19:47 +0100 |
commit | 1a89025793ca73d9685a8ce8e3194efa64dd6844 (patch) | |
tree | 1d8624558e6e4d126da6d9e806a3059edbd8bc0d /libavcodec/h263dec.c | |
parent | 75bd07f732fb575c2b88dc7cd08a6bb12c2e24ea (diff) | |
download | ffmpeg-1a89025793ca73d9685a8ce8e3194efa64dd6844.tar.gz |
mpeg4videodec: move MpegEncContext.vol_sprite_usage to Mpeg4DecContext
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index eea3d13c77..d90de7dd47 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -185,7 +185,7 @@ static int decode_slice(MpegEncContext *s) const int qscale = s->qscale; if (CONFIG_MPEG4_DECODER && s->codec_id == AV_CODEC_ID_MPEG4) - if ((ret = ff_mpeg4_decode_partitions(s)) < 0) + if ((ret = ff_mpeg4_decode_partitions(s->avctx->priv_data)) < 0) return ret; /* restore variables which were modified */ |