summaryrefslogtreecommitdiffstats
path: root/player/loadfile.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-13 20:07:14 +0200
committerwm4 <wm4@nowhere>2014-07-13 20:07:14 +0200
commitae7228c6a363a54249cc754089e12c2042811216 (patch)
tree69ca2be2baafceb6fbc921d3a1dff2cb0a0bf226 /player/loadfile.c
parentfb54a1436aced8462d63c1cdbb4972c05829e26f (diff)
downloadmpv-ae7228c6a363a54249cc754089e12c2042811216.tar.bz2
mpv-ae7228c6a363a54249cc754089e12c2042811216.tar.xz
audio: drop buffered audio when switching tracks or filters
No reason to wait until the audio has been played. This isn't a problem with gapless audio disabled, and since gapless is now default, this behavior might be perceived as regression. CC: @mpv-player/stable
Diffstat (limited to 'player/loadfile.c')
-rw-r--r--player/loadfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/player/loadfile.c b/player/loadfile.c
index ce25070a79..08adcb615e 100644
--- a/player/loadfile.c
+++ b/player/loadfile.c
@@ -532,6 +532,7 @@ void mp_switch_track_n(struct MPContext *mpctx, int order, enum stream_type type
uninit |= mpctx->opts->fixed_vo && track ? 0 : INITIALIZED_VO;
uninit_player(mpctx, uninit);
} else if (type == STREAM_AUDIO) {
+ clear_audio_output_buffers(mpctx);
uninit_player(mpctx, INITIALIZED_AO | INITIALIZED_ACODEC);
} else if (type == STREAM_SUB) {
uninit_player(mpctx, INITIALIZED_SUB);