[FFmpeg-cvslog] avcodec/svq3: Deduplicate allocating dummy frame
Andreas Rheinhardt
git at videolan.org
Wed May 21 04:27:38 EEST 2025
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu May 15 03:29:43 2025 +0200| [eacde6ee7be03fca5d5f9017478f436ee95b4fe4] | committer: Andreas Rheinhardt
avcodec/svq3: Deduplicate allocating dummy frame
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eacde6ee7be03fca5d5f9017478f436ee95b4fe4
---
libavcodec/svq3.c | 35 +++++++++++++++++++----------------
1 file changed, 19 insertions(+), 16 deletions(-)
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index b192eb6c02..e1e65c4766 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -1377,6 +1377,23 @@ fail:
return ret;
}
+static av_cold int alloc_dummy_frame(AVCodecContext *avctx, SVQ3Frame *pic)
+{
+ av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n");
+ av_frame_unref(pic->f);
+ int ret = get_buffer(avctx, pic);
+ if (ret < 0)
+ return ret;
+
+ memset(pic->f->data[0], 0, avctx->height * pic->f->linesize[0]);
+ memset(pic->f->data[1], 0x80, (avctx->height / 2) *
+ pic->f->linesize[1]);
+ memset(pic->f->data[2], 0x80, (avctx->height / 2) *
+ pic->f->linesize[2]);
+
+ return 0;
+}
+
static int svq3_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
int *got_frame, AVPacket *avpkt)
{
@@ -1441,29 +1458,15 @@ static int svq3_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
if (s->pict_type != AV_PICTURE_TYPE_I) {
if (!s->last_pic->f->data[0]) {
- av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n");
- av_frame_unref(s->last_pic->f);
- ret = get_buffer(avctx, s->last_pic);
+ ret = alloc_dummy_frame(avctx, s->last_pic);
if (ret < 0)
return ret;
- memset(s->last_pic->f->data[0], 0, avctx->height * s->last_pic->f->linesize[0]);
- memset(s->last_pic->f->data[1], 0x80, (avctx->height / 2) *
- s->last_pic->f->linesize[1]);
- memset(s->last_pic->f->data[2], 0x80, (avctx->height / 2) *
- s->last_pic->f->linesize[2]);
}
if (s->pict_type == AV_PICTURE_TYPE_B && !s->next_pic->f->data[0]) {
- av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n");
- av_frame_unref(s->next_pic->f);
- ret = get_buffer(avctx, s->next_pic);
+ ret = alloc_dummy_frame(avctx, s->next_pic);
if (ret < 0)
return ret;
- memset(s->next_pic->f->data[0], 0, avctx->height * s->next_pic->f->linesize[0]);
- memset(s->next_pic->f->data[1], 0x80, (avctx->height / 2) *
- s->next_pic->f->linesize[1]);
- memset(s->next_pic->f->data[2], 0x80, (avctx->height / 2) *
- s->next_pic->f->linesize[2]);
}
}
More information about the ffmpeg-cvslog
mailing list