summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-13 14:04:15 +0100
committerwm4 <wm4@nowhere>2020-03-13 16:50:27 +0100
commit5d5a7e19537a036fe16ce04555e6ce9449c47494 (patch)
treeebc8edef19b96e4b5c41b05d34eac7655899f7c7 /audio
parent28de668173b0c142d4d227eddbc15d7e25b3efbe (diff)
downloadmpv-5d5a7e19537a036fe16ce04555e6ce9449c47494.tar.bz2
mpv-5d5a7e19537a036fe16ce04555e6ce9449c47494.tar.xz
ao_lavc: don't spam underrun warnings
Like ao_pcm, this is (conceptually) in perpetual underrun, as long as dumping is fast enough.
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao_lavc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/out/ao_lavc.c b/audio/out/ao_lavc.c
index 0973d9f529..e2cf00cc93 100644
--- a/audio/out/ao_lavc.c
+++ b/audio/out/ao_lavc.c
@@ -350,6 +350,7 @@ const struct ao_driver audio_out_lavc = {
.description = "audio encoding using libavcodec",
.name = "lavc",
.initially_blocked = true,
+ .reports_underruns = true, // not a thing
.priv_size = sizeof(struct priv),
.init = init,
.uninit = uninit,