#6240 closed defect (fixed)
OS X - CoreAudio midi driver SDK 10.5 problem
Reported by: | SF/dominus | Owned by: | SF/mthreepwood |
---|---|---|---|
Priority: | normal | Component: | Port: Mac OS X |
Version: | Keywords: | ||
Cc: | Game: |
Description
Hi,
when you built for i386 against SDK 10.5 this will fail as "AudioComponentDescription" does not exist in the SDK. I solved this by adding OS X 10.5 to the USE_DEPRECATED_COREAUDIO_API definition by changing #if TARGET_CPU_PPC || TARGET_CPU_PPC64 || !defined(MAC_OS_X_VERSION_10_6) to #if (MAC_OS_X_VERSION_MAX_ALLOWED < 1060)
This might need fine tuning since the new way to load a soundfont is valid for 10.5 but not <10.5...
Ticket imported from: #3602452. Ticket imported from: bugs/6240.
Change History (7)
comment:1 by , 12 years ago
comment:2 by , 12 years ago
Owner: | set to |
---|
comment:3 by , 12 years ago
The deprecation part isn't really a bug. I'm waiting on Dominus to report back on soundfonts on 10.5 which he said he'll do tomorrow.
comment:4 by , 12 years ago
if you compile ScummVm git against 10.5 SDK in 32bit loading a custom soundfont will fail, when run in 10.8 otoh, soundfont loading done with FSRef instead of FSSpec works fine in 10.4 ppc, so I'd suggest using FSRef for that OR make a 10.5 compile use the new soundfont code via cfsurl
comment:6 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:7 by , 6 years ago
Component: | → Port: Mac OS X |
---|
I'm sorry to be unclear. It doesn't fail, it's just that you could compile with the undeprecated stuff, except for the "AudioComponentDescription" part. Looking too much at coreaudio code today :)