From 223588b36a701701047e273178e3c0d1718045b8 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 25 Jan 2016 13:41:28 +0100 Subject: audio: release pending audio frame on seeking --- player/audio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/player/audio.c b/player/audio.c index 1a3a7a45df..932d38a14b 100644 --- a/player/audio.c +++ b/player/audio.c @@ -166,6 +166,8 @@ void update_playback_speed(struct MPContext *mpctx) static void ao_chain_reset_state(struct ao_chain *ao_c) { ao_c->pts = MP_NOPTS_VALUE; + talloc_free(ao_c->input_frame); + ao_c->input_frame = NULL; af_seek_reset(ao_c->af); mp_audio_buffer_clear(ao_c->ao_buffer); } -- cgit v1.2.3