summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-29 02:24:21 +0200
committerwm4 <wm4@nowhere>2014-05-29 02:24:21 +0200
commite127cfa0b51322f1c78c42634ae740d57ff17f00 (patch)
tree8a32521a0f82bc39c46f75afecf6427a3282b760
parentc36faf8c499c64548ea3920aadb8a4b43aa0f5a0 (diff)
downloadmpv-e127cfa0b51322f1c78c42634ae740d57ff17f00.tar.bz2
mpv-e127cfa0b51322f1c78c42634ae740d57ff17f00.tar.xz
build: disable PortAudio by default
This was originally added because we thought this would make a good portable audio API, which would give us good behavior on Windows, Linux, and OSX. But this hope was disappointed: it's not reliable enough (nice deadlocks on Linux when seeking, i.e. resetting the audio device), doesn't have enough features (no channel maps, no digital passthrough), and in general just is not very good.
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index eec5d0ea79..faa45aa26e 100644
--- a/wscript
+++ b/wscript
@@ -473,6 +473,7 @@ audio_output_features = [
'desc': 'PortAudio audio output',
'deps': [ 'pthreads' ],
'func': check_pkg_config('portaudio-2.0', '>= 19'),
+ 'default': 'disable',
}, {
'name': '--jack',
'desc': 'JACK audio output',