avplay: do not call avcodec_get_frame_defaults().
avcodec_decode_audio4() will reset the frame itself.
This commit is contained in:
parent
95a8a5aca6
commit
84f131921f
3
avplay.c
3
avplay.c
@ -1846,8 +1846,7 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr)
|
|||||||
if (!is->frame) {
|
if (!is->frame) {
|
||||||
if (!(is->frame = av_frame_alloc()))
|
if (!(is->frame = av_frame_alloc()))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
} else
|
}
|
||||||
avcodec_get_frame_defaults(is->frame);
|
|
||||||
|
|
||||||
if (flush_complete)
|
if (flush_complete)
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user