update log file, small fix for project file, added header include for 64bit compilation on Mac (thanks to morloch)

This commit is contained in:
Volker Fischer 2012-01-22 18:28:35 +00:00
parent b5e47ed9b5
commit 18ff7f2dc4
3 changed files with 6 additions and 3 deletions

View File

@ -5,6 +5,8 @@ TODO working on bug fix: Windows: driver is changed during connection results
sometimes in lowed noise
- support for audio device selection under Mac OS
- connect dialog list is sorted by the ping time
- 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
- 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)
- IMA-ADPCM, MS-ADPCM removed

View File

@ -40,8 +40,8 @@ win32 {
-framework AudioToolbox \
-framework AudioUnit
} else:unix {
# we assume that stdint.h is always present in a Linux system
DEFINES += HAVE_STDINT_H
# we assume that stdint.h is always present in a Linux system
DEFINES += HAVE_STDINT_H
# only include jack support if CONFIG nosound is not set
nosoundoption = $$find(CONFIG, "nosound")

View File

@ -27,6 +27,7 @@
#include <CoreServices/CoreServices.h>
#include <AudioUnit/AudioUnit.h>
#include <CoreAudio/AudioHardware.h>
#include <qmutex.h>
#include "util.h"
#include "soundbase.h"