diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-13 08:50:04 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-08 07:39:37 +0100 |
commit | 3b199d29cd597a3518136d78860e172060b9e83d (patch) | |
tree | dc28aebc7ea0629fb24103931c8bf7a97cfc54ef /libavcodec/dv.c | |
parent | 759001c534287a96dc96d1e274665feb7059145d (diff) | |
download | ffmpeg-3b199d29cd597a3518136d78860e172060b9e83d.tar.gz |
lavc decoders: properly initialize AVFrame.
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 91588192ae..5253b7f88e 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -313,6 +313,7 @@ av_cold int ff_dvvideo_init(AVCodecContext *avctx) s->idct_put[1] = ff_simple_idct248_put; // FIXME: need to add it to DSP memcpy(s->dv_zigzag[1], ff_zigzag248_direct, 64); + avcodec_get_frame_defaults(&s->picture); avctx->coded_frame = &s->picture; s->avctx = avctx; avctx->chroma_sample_location = AVCHROMA_LOC_TOPLEFT; |