* [FFmpeg-devel] [PATCH] avcodec/h261dec: Don't update block_index unnecessarily
@ 2022-11-08 0:05 Andreas Rheinhardt
0 siblings, 0 replies; only message in thread
From: Andreas Rheinhardt @ 2022-11-08 0:05 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
block_index is write-only for the H.261 decoder, so
don't update it by calling ff_update_block_index().
Instead use a function of our own to set/update dest.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
libavcodec/h261dec.c | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 5e4f298291..57f7e8bf35 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -101,6 +101,15 @@ static av_cold int h261_decode_init(AVCodecContext *avctx)
return 0;
}
+static inline void h261_init_dest(MpegEncContext *s)
+{
+ const unsigned block_size = 8 >> s->avctx->lowres;
+ ff_init_block_index(s);
+ s->dest[0] += 2 * block_size;
+ s->dest[1] += block_size;
+ s->dest[2] += block_size;
+}
+
/**
* Decode the group of blocks header or slice header.
* @return <0 if an error occurred
@@ -213,8 +222,7 @@ static int h261_decode_mb_skipped(H261DecContext *h, int mba1, int mba2)
s->mb_x = ((h->gob_number - 1) % 2) * 11 + i % 11;
s->mb_y = ((h->gob_number - 1) / 2) * 3 + i / 11;
xy = s->mb_x + s->mb_y * s->mb_stride;
- ff_init_block_index(s);
- ff_update_block_index(s, 8, s->avctx->lowres, 1);
+ h261_init_dest(s);
for (j = 0; j < 6; j++)
s->block_last_index[j] = -1;
@@ -399,8 +407,7 @@ static int h261_decode_mb(H261DecContext *h)
s->mb_x = ((h->gob_number - 1) % 2) * 11 + ((h->current_mba - 1) % 11);
s->mb_y = ((h->gob_number - 1) / 2) * 3 + ((h->current_mba - 1) / 11);
xy = s->mb_x + s->mb_y * s->mb_stride;
- ff_init_block_index(s);
- ff_update_block_index(s, 8, s->avctx->lowres, 1);
+ h261_init_dest(s);
// Read mtype
com->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2);
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-11-08 0:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08 0:05 [FFmpeg-devel] [PATCH] avcodec/h261dec: Don't update block_index unnecessarily Andreas Rheinhardt
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git