From 64d11cb615a9d6591836bf87e76f8ee543467ded Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Tue, 12 Mar 2013 12:11:50 +0100 Subject: [PATCH] mss1: set frame defaults Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- libavcodec/mss1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/mss1.c b/libavcodec/mss1.c index b6cd42555c8..195f2425250 100644 --- a/libavcodec/mss1.c +++ b/libavcodec/mss1.c @@ -193,7 +193,8 @@ static av_cold int mss1_decode_init(AVCodecContext *avctx) int ret; c->ctx.avctx = avctx; - avctx->coded_frame = &c->pic; + + avcodec_get_frame_defaults(&c->pic); ret = ff_mss12_decode_init(&c->ctx, 0, &c->sc, NULL); -- GitLab