summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-02-24 09:38:22 +0100
committerAnton Khirnov <anton@khirnov.net>2021-02-24 17:16:46 +0100
commitd3d99a0a068ff703c7f7c3c0dc0b66c9a0774fdd (patch)
tree4652304d38ca0fb5b0d14768b9d8e882bdec9246
parenteed2125f3f1762f940bb42d49ae608b90a7f79ae (diff)
lavc/lscrdec: use ff_reget_buffer()
It is simpler and more efficient. Suggested-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavcodec/lscrdec.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/libavcodec/lscrdec.c b/libavcodec/lscrdec.c
index d5388c22ac..e706dda9da 100644
--- a/libavcodec/lscrdec.c
+++ b/libavcodec/lscrdec.c
@@ -105,7 +105,7 @@ static int decode_frame_lscr(AVCodecContext *avctx,
{
LSCRContext *const s = avctx->priv_data;
GetByteContext *gb = &s->gb;
- AVFrame *frame = data;
+ AVFrame *frame = s->last_picture;
int ret, nb_blocks, offset = 0;
if (avpkt->size < 2)
@@ -115,18 +115,14 @@ static int decode_frame_lscr(AVCodecContext *avctx,
bytestream2_init(gb, avpkt->data, avpkt->size);
- if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
- return ret;
-
nb_blocks = bytestream2_get_le16(gb);
if (bytestream2_get_bytes_left(gb) < 2 + nb_blocks * (12 + 8))
return AVERROR_INVALIDDATA;
- if (s->last_picture->data[0]) {
- ret = av_frame_copy(frame, s->last_picture);
- if (ret < 0)
- return ret;
- }
+ ret = ff_reget_buffer(avctx, frame,
+ nb_blocks ? 0 : FF_REGET_BUFFER_FLAG_READONLY);
+ if (ret < 0)
+ return ret;
for (int b = 0; b < nb_blocks; b++) {
int x, y, x2, y2, w, h, left;
@@ -216,8 +212,7 @@ static int decode_frame_lscr(AVCodecContext *avctx,
frame->pict_type = frame->key_frame ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
- av_frame_unref(s->last_picture);
- if ((ret = av_frame_ref(s->last_picture, frame)) < 0)
+ if ((ret = av_frame_ref(data, frame)) < 0)
return ret;
*got_frame = 1;