update log file, small fix for project file, added header include for 64bit compilation on Mac (thanks to morloch)
This commit is contained in:
parent
b5e47ed9b5
commit
18ff7f2dc4
3 changed files with 6 additions and 3 deletions
|
@ -5,6 +5,8 @@ TODO working on bug fix: Windows: driver is changed during connection results
|
||||||
sometimes in lowed noise
|
sometimes in lowed noise
|
||||||
|
|
||||||
|
|
||||||
|
- support for audio device selection under Mac OS
|
||||||
|
|
||||||
- connect dialog list is sorted by the ping time
|
- connect dialog list is sorted by the ping time
|
||||||
|
|
||||||
- software icon changed
|
- software icon changed
|
||||||
|
@ -120,7 +122,7 @@ TODO working on bug fix: Windows: driver is changed during connection results
|
||||||
|
|
||||||
- introduced new audio codec "CELT", not compatible to old versions
|
- introduced new audio codec "CELT", not compatible to old versions
|
||||||
|
|
||||||
- only the sound card frame sizes 128, 256 and 512 is allowed (since other
|
- only the sound card frame sizes 128, 256 and 512 are allowed (since other
|
||||||
frame sizes require additional conversion buffers which introduce delay)
|
frame sizes require additional conversion buffers which introduce delay)
|
||||||
|
|
||||||
- IMA-ADPCM, MS-ADPCM removed
|
- IMA-ADPCM, MS-ADPCM removed
|
||||||
|
|
|
@ -40,8 +40,8 @@ win32 {
|
||||||
-framework AudioToolbox \
|
-framework AudioToolbox \
|
||||||
-framework AudioUnit
|
-framework AudioUnit
|
||||||
} else:unix {
|
} else:unix {
|
||||||
# we assume that stdint.h is always present in a Linux system
|
# we assume that stdint.h is always present in a Linux system
|
||||||
DEFINES += HAVE_STDINT_H
|
DEFINES += HAVE_STDINT_H
|
||||||
|
|
||||||
# only include jack support if CONFIG nosound is not set
|
# only include jack support if CONFIG nosound is not set
|
||||||
nosoundoption = $$find(CONFIG, "nosound")
|
nosoundoption = $$find(CONFIG, "nosound")
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
#include <CoreServices/CoreServices.h>
|
#include <CoreServices/CoreServices.h>
|
||||||
#include <AudioUnit/AudioUnit.h>
|
#include <AudioUnit/AudioUnit.h>
|
||||||
|
#include <CoreAudio/AudioHardware.h>
|
||||||
#include <qmutex.h>
|
#include <qmutex.h>
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "soundbase.h"
|
#include "soundbase.h"
|
||||||
|
|
Loading…
Reference in a new issue