summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-26 02:07:44 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-26 02:27:19 +0100
commitcfc7b9cfff651881ee423832c4329fbd8719045c (patch)
tree6b11f4a523f7257041cd938079f3bf459aaeff73
parentd73b65ed0ebc1bff4ee6bc873381230092792892 (diff)
4xm: remove avcodec_get_frame_defaults() calls
They are not needed anymore Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/4xm.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 9ea84364b0..406ca728ad 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -949,8 +949,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
return AVERROR_INVALIDDATA;
}
- avcodec_get_frame_defaults(&f->current_picture);
- avcodec_get_frame_defaults(&f->last_picture);
f->version = AV_RL32(avctx->extradata) >> 16;
ff_dsputil_init(&f->dsp, avctx);
f->avctx = avctx;