diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 03:51:59 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 03:54:40 +0100 |
commit | b5e5ed8ea707fefcab15dbfa3fa0dc2f36e5275a (patch) | |
tree | 8e2c8a028781da99fa256c200e635b16d496e62a /libavcodec/flicvideo.c | |
parent | 01a0283c92b124f185ce4e814a1c5b600f1135e0 (diff) | |
parent | 3b199d29cd597a3518136d78860e172060b9e83d (diff) | |
download | ffmpeg-b5e5ed8ea707fefcab15dbfa3fa0dc2f36e5275a.tar.gz |
Merge commit '3b199d29cd597a3518136d78860e172060b9e83d'
* commit '3b199d29cd597a3518136d78860e172060b9e83d':
lavc decoders: properly initialize AVFrame.
Conflicts:
libavcodec/avs.c
libavcodec/c93.c
libavcodec/cinepak.c
libavcodec/flashsv.c
libavcodec/flicvideo.c
libavcodec/iff.c
libavcodec/mmvideo.c
libavcodec/msrle.c
libavcodec/msvideo1.c
libavcodec/qtrle.c
libavcodec/rpza.c
libavcodec/smacker.c
libavcodec/smc.c
libavcodec/tiertexseqv.c
libavcodec/truemotion1.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r-- | libavcodec/flicvideo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index caadbea190..27584cb23b 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -142,7 +142,6 @@ static av_cold int flic_decode_init(AVCodecContext *avctx) } avcodec_get_frame_defaults(&s->frame); - s->frame.data[0] = NULL; s->new_palette = 0; return 0; |