Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my iOS app I wan't to play sounds using OpenAL. I have AudioManager class, responsible for sound-management (singleton). All sound sources & buffers are initialized when it is created (on the first instance call).

So to play sound all I need - is to stop previous sound, clear the old buffer (of necessary source), attach new buffer, set pitch & gain and finally, play the sound. All these operations are in playSound:(AMSound)sound method (AMSound is a simple enum).

For UI effects I call this method from main thread. But my app has a lot of background work, which is sometimes also accompanied by sound effects.

Can I call playSound: directly from background threads or should Ido it on main thread only? And what about simultaneous sounds: one created from main thread, another - from background?

share|improve this question

1 Answer

up vote 2 down vote accepted

Doesn't matter on which thread you call playsound, openAL will actually play it on its own thread anyway. As for simultaneous sounds, it depends on how you want to mix them, anyway, openAL will always manage its own play threads, so from threading perspective it doesn't really matter where you call playsound

share|improve this answer
Thanks a lot!!! – kpower Jun 7 '11 at 2:56
1  
Plus, in contrast to e.g. OpenGL, you can actually play the sounds from any arbitrary thread, since the contexts are per-process. – Damon Jun 10 '11 at 21:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.