OS X, built in MT-32 emulation - Poor performance?

Discussion about other and unofficial ports of ScummVM

Moderator: ScummVM Team

Post Reply
ShadowTD
Posts: 5
Joined: Thu Apr 17, 2008 9:55 pm

OS X, built in MT-32 emulation - Poor performance?

Post by ShadowTD »

Hello everyone! Long time user, first time poster etc etc...

I'm experiencing performance issues with the MT-32 emulation in ScummVM - crackling and scratching noises with the sound. I always thought it was because my old dual G4 simply didn't have the horses. So I used my real MT-32 with a USB midi i/f and all was well.

Now I've finally taken the plunge and bought a shiny shiny Macbook Pro. But the problem is still there - it's better, but it's still not listenable to.

To see if it was the OSX port, I fired up VMWare and ran the XP version. Perfect. And that's only allowed a single core! So are there any known issues with the embedded MUNT in ScummVM for OSX?

Cheers!
User avatar
sev
ScummVM Lead
Posts: 2277
Joined: Wed Sep 21, 2005 1:06 pm
Contact:

Post by sev »

Yes, afaik, it never was tested well on Mac. Unfortunately the Munt maintainer is not active anymore so there is very little we can do with it.


Eugene
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

As far as I can, the main problem is CoreAudio -- it reacts extremely sensitive to sound latency. And client code like ours is expected to implement double buffering to avoid that. For high-end ultra-expensive audio software, this might be the right thing to do, but for client code like ScummVM (and SDL in general), this is very annoying.

For the SDL CD playback code, I implemented double buffering, else it would have the same problems. Back then I was considering extending SDL for Mac OS X with generic audio double buffering, but in the end we decided against this, since while it helps portably apps, it would have had to be possible to turn it off, because it might have hurt other apps a lot (e.g. apps which already implement some kind of double buffering etc.).

Note: I *believe* that this is the cause for the MT-32 badness under Mac OS X, and various data seems to support that believe, but I admit that I have not actually tested it. In any case, since apparently nobody is working on the MT-32 emu code these days, there is little to be hoped for here, unless a volunteer turns up to improve it (e.g. by adding double buffering to it, at least as a hack, so that we can verify this is the cause).
ShadowTD
Posts: 5
Joined: Thu Apr 17, 2008 9:55 pm

Post by ShadowTD »

Righto then! Thanks for the prompt replys - I would have posted sooner but I was on my stag do :shock: - I guess it's the real thing or nothing!
bushwakko
Posts: 28
Joined: Mon Jul 03, 2006 10:51 am

Post by bushwakko »

whoa, it works in vmware with the xp version on a mac, but not on the mac itself, that tells me it is very much implementable doesn't it?
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

See this thread: http://forums.scummvm.org/viewtopic.php?t=462

Yes, the machine is fast enough. The reason it works on Windows but not under Mac OS X is that the audio APIs of the two systems are fundamentally different, and SDL does not sufficiently abstract away this difference (and probably for good reasons, too, but that is totally off-topic here).
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

FYI, I just implemented audio double buffering in the SDL backend (for now, pending testing, only enabled in the Mac OS X version). This fixes any issue with the MT-32 emulator, at least on my system. This should be in 0.12.0.
hippy dave
Posts: 129
Joined: Mon May 05, 2008 3:37 pm

Post by hippy dave »

nice one 8)
Post Reply