annotate config.pri.in @ 1472:59c6b75da437 3.0-integration

Fix race condition in first-time recording, where adding the recording wave model would prompt the audio play source to note that its channel count had increased (from 0 to, say, 2) and thus to cause the audio device to be reopened, stopping recording. Fix is to make this only happen if channel count increases beyond that of the device, which shouldn't happen in the recording case
author Chris Cannam
date Wed, 04 Jan 2017 11:48:03 +0000
parents 9401d021b47b
children 79b2d1f60ef3
rev   line source
Chris@361 1
Chris@361 2 CONFIG += @QMAKE_CONFIG@
Chris@350 3
Chris@350 4 DEFINES += @HAVES@
Chris@350 5
Chris@355 6 QMAKE_CC = @CC@
Chris@355 7 QMAKE_CXX = @CXX@
Chris@356 8 QMAKE_LINK = @CXX@
Chris@355 9
Chris@350 10 QMAKE_CFLAGS += @CFLAGS@
Chris@350 11 QMAKE_CXXFLAGS += @CXXFLAGS@
Chris@564 12 QMAKE_LFLAGS += @LDFLAGS@
Chris@350 13
Chris@1279 14 linux*:LIBS += -lasound -ldl
Chris@353 15
Chris@564 16 macx*:DEFINES += HAVE_COREAUDIO
Chris@564 17 macx*:LIBS += -framework CoreAudio -framework CoreMidi -framework AudioUnit -framework AudioToolbox -framework CoreFoundation -framework CoreServices
Chris@353 18
Chris@350 19 LIBS += @LIBS@
Chris@350 20
Chris@1465 21 DEFINES += HAVE_PIPER HAVE_PLUGIN_CHECKER_HELPER HAVE_POSIX_MEMALIGN
Chris@1319 22