summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-07 18:00:48 +0200
committerwm4 <wm4@nowhere>2014-07-07 18:00:48 +0200
commitc07bae02e2d0cdb32e6d4f0741ad039091f64bd7 (patch)
treee588cf1ce239296dd67d9ce514839e2594e59cbf
parent19dde186a0b530cf07fe0b3439a53f9c69ee1369 (diff)
downloadmpv-c07bae02e2d0cdb32e6d4f0741ad039091f64bd7.tar.bz2
mpv-c07bae02e2d0cdb32e6d4f0741ad039091f64bd7.tar.xz
ao_null: disable latency emulation
Doesn't work quite right, and will pause for the latency duration after seeking. Some users use --ao=null to disable audio (even though they should probably use --no-audio), and this use-case is broken by this issue too. CC: @mpv-player/stable
-rw-r--r--audio/out/ao_null.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/out/ao_null.c b/audio/out/ao_null.c
index 35222754e3..384343aaa1 100644
--- a/audio/out/ao_null.c
+++ b/audio/out/ao_null.c
@@ -210,7 +210,6 @@ const struct ao_driver audio_out_null = {
.priv_size = sizeof(struct priv),
.priv_defaults = &(const struct priv) {
.bufferlen = 0.2,
- .latency_sec = 0.5,
.outburst = 256,
.speed = 1,
},