diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-11 20:37:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-11 20:37:20 +0200 |
commit | 19411d32d409b9e9f05670a7bb2f76d6d7ef82db (patch) | |
tree | d8545ee8e1670e5746092eddcf4791c956d72853 /libavcodec/ffv1enc.c | |
parent | a0c0900e470fde0d6db360e555620476c2323895 (diff) | |
download | ffmpeg-19411d32d409b9e9f05670a7bb2f76d6d7ef82db.tar.gz |
ffv1enc: dont set coded_frame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1enc.c')
-rw-r--r-- | libavcodec/ffv1enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 4535464670..ffc8230105 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -795,7 +795,6 @@ static av_cold int encode_init(AVCodecContext *avctx) if ((ret = ffv1_allocate_initial_states(s)) < 0) return ret; - avctx->coded_frame = s->picture.f; if (!s->transparency) s->plane_count = 2; avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift); |