I recently started working with the AudioToolbox framework and noticed that there is a method called AudioServicesDisposeSystemSoundID().

Just to know, is it a memory leak not to call the above method when calling AudioServicesCreateSystemSoundID() to init my SystemSoundID? I am calling it like:

AudioServicesCreateSystemSoundID((CFURLRef)filePath, &sound);

That way filePath being a NSURL and sound SystemSoundID.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes. Call it when you're done with sound. Otherwise, you may leak any memory associated with sound (which can be significant for A/V files.)

link|improve this answer
I am actually using it with an AIF file. – Matoe Oct 11 '11 at 15:00
A/V = "audio/video". AIF falls under that category. – Jonathan Grynspan Oct 11 '11 at 15:03
I got that :p Although I thought you meant 'signigicant for some A/V files' – Matoe Oct 11 '11 at 15:06
It varies from file to file. That's an implementation detail. Call AudioServicesDisposeSystemSoundID() anyway when you no longer need the system sound. – Jonathan Grynspan Oct 11 '11 at 15:07
feedback

Your Answer

 
or
required, but never shown

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