1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avplay: reset rdft when closing stream.

this fixes a crash when cycling audio streams if the spectrograph is
displayed.
This commit is contained in:
Justin Ruggles 2011-11-08 10:33:18 -05:00
parent 8a691dfdab
commit f9324d5add

View File

@ -2279,6 +2279,8 @@ static void stream_component_close(VideoState *is, int stream_index)
if (is->rdft) {
av_rdft_end(is->rdft);
av_freep(&is->rdft_data);
is->rdft = NULL;
is->rdft_bits = 0;
}
break;
case AVMEDIA_TYPE_VIDEO: