From 84f131921ffb43d8070d5680e91f6a24d66ccac4 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 9 Dec 2013 11:49:23 +0100 Subject: avplay: do not call avcodec_get_frame_defaults(). avcodec_decode_audio4() will reset the frame itself. --- avplay.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'avplay.c') diff --git a/avplay.c b/avplay.c index 1cec241c20..432db97823 100644 --- a/avplay.c +++ b/avplay.c @@ -1846,8 +1846,7 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr) if (!is->frame) { if (!(is->frame = av_frame_alloc())) return AVERROR(ENOMEM); - } else - avcodec_get_frame_defaults(is->frame); + } if (flush_complete) break; -- cgit v1.2.3