Skip to content

Commit

Permalink
avcodec/mjpegdec: Avoid checks whose results are known at compile-time
Browse files Browse the repository at this point in the history
Namely the result of the check for smv_next_frame > 0 in
smv_process_frame().

Signed-off-by: Andreas Rheinhardt <[email protected]>
  • Loading branch information
mkver committed Dec 10, 2022
1 parent b640cda commit ec2d582
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions libavcodec/mjpegdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -2349,24 +2349,9 @@ static void reset_icc_profile(MJpegDecodeContext *s)

// SMV JPEG just stacks several output frames into one JPEG picture
// we handle that by setting up the cropping parameters appropriately
static int smv_process_frame(AVCodecContext *avctx, AVFrame *frame)
static void smv_process_frame(AVCodecContext *avctx, AVFrame *frame)
{
MJpegDecodeContext *s = avctx->priv_data;
int ret;

if (s->smv_next_frame > 0) {
av_assert0(s->smv_frame->buf[0]);
av_frame_unref(frame);
ret = av_frame_ref(frame, s->smv_frame);
if (ret < 0)
return ret;
} else {
av_assert0(frame->buf[0]);
av_frame_unref(s->smv_frame);
ret = av_frame_ref(s->smv_frame, frame);
if (ret < 0)
return ret;
}

av_assert0((s->smv_next_frame + 1) * avctx->height <= avctx->coded_height);

Expand All @@ -2379,8 +2364,6 @@ static int smv_process_frame(AVCodecContext *avctx, AVFrame *frame)

if (s->smv_next_frame == 0)
av_frame_unref(s->smv_frame);

return 0;
}

static int mjpeg_get_packet(AVCodecContext *avctx)
Expand Down Expand Up @@ -3055,14 +3038,28 @@ static int smvjpeg_receive_frame(AVCodecContext *avctx, AVFrame *frame)
MJpegDecodeContext *s = avctx->priv_data;
int ret;

if (s->smv_next_frame > 0)
return smv_process_frame(avctx, frame);
if (s->smv_next_frame > 0) {
av_assert0(s->smv_frame->buf[0]);
ret = av_frame_ref(frame, s->smv_frame);
if (ret < 0)
return ret;

smv_process_frame(avctx, frame);
return 0;
}

ret = ff_mjpeg_receive_frame(avctx, frame);
if (ret < 0)
return ret;

return smv_process_frame(avctx, frame);
av_assert0(frame->buf[0]);
av_frame_unref(s->smv_frame);
ret = av_frame_ref(s->smv_frame, frame);
if (ret < 0)
return ret;

smv_process_frame(avctx, frame);
return 0;
}

const FFCodec ff_smvjpeg_decoder = {
Expand Down

0 comments on commit ec2d582

Please sign in to comment.