Browse Source

smvjpeg: remove redundant frame init code

avctx->coded_frame is not used for decoders anymore,
and av_frame_alloc does all the frame initialization required.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Hendrik Leppkes Michael Niedermayer 12 years ago
parent
commit
1a405c683e
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavcodec/smvjpegdec.c

+ 0
- 2
libavcodec/smvjpegdec.c View File

@@ -102,8 +102,6 @@ static av_cold int smvjpeg_decode_init(AVCodecContext *avctx)
ret = -1;
}

avcodec_get_frame_defaults(s->picture[1]);
avctx->coded_frame = s->picture[1];
codec = avcodec_find_decoder(AV_CODEC_ID_MJPEG);
if (!codec) {
av_log(avctx, AV_LOG_ERROR, "MJPEG codec not found\n");


Loading…
Cancel
Save