From 3b199d29cd597a3518136d78860e172060b9e83d Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 13 Feb 2013 08:50:04 +0100 Subject: lavc decoders: properly initialize AVFrame. --- libavcodec/iff.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/iff.c') diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 08d548b0ea..184dcab73e 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -168,6 +168,8 @@ static av_cold int decode_init(AVCodecContext *avctx) if (!s->planebuf) return AVERROR(ENOMEM); + avcodec_get_frame_defaults(&s->frame); + return 0; } -- cgit v1.2.3