summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-07 18:00:48 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-07-08 10:10:59 +0200
commit8f5ebdbe59637b8ef2388a7705b72fedc5fe8243 (patch)
treedb89b2e0be998bcae56646a15562c7cc67ea1b2b
parente8616fea50ed6814b5f5ad5ebb1f1f9674819e9f (diff)
downloadmpv-8f5ebdbe59637b8ef2388a7705b72fedc5fe8243.tar.bz2
mpv-8f5ebdbe59637b8ef2388a7705b72fedc5fe8243.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,
},