diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-06-19 20:04:45 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-07-03 20:35:31 +0200 |
commit | 77add26918fb4b6b68fc25fa797ef5a7f8510aaf (patch) | |
tree | d4e13392dba8451f14571c097d5ef8c7fd084afd /libavcodec/rv10.c | |
parent | b2be342ab6689e6c1fb8fe84dcb19ffe897bb9e9 (diff) | |
download | ffmpeg-77add26918fb4b6b68fc25fa797ef5a7f8510aaf.tar.gz |
avcodec/h263dec: Don't use MpegEncContext.block
Instead add the necessary blocks directly to H263DecContext
(only six are needed, not 12 as ff_mpv_common_init()
currently allocates).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index e6e3c4adc0..c678851ded 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -516,7 +516,7 @@ static int rv10_decode_packet(AVCodecContext *avctx, const uint8_t *buf, } if (h->c.pict_type != AV_PICTURE_TYPE_B) ff_h263_update_motion_val(&h->c); - ff_mpv_reconstruct_mb(&h->c, h->c.block); + ff_mpv_reconstruct_mb(&h->c, h->block); if (h->c.loop_filter) ff_h263_loop_filter(&h->c); |