If I use the audio decoding libraries included in iPhoneOS (ex. AVAudioPlayer). Do I still have to pay for a license from Thomson, or VIA Licensing to legally decode AAC or MP3 files in my app?

Edit:

I was unable to find an exact answer from ADC(they did not know), and I am also curious about audio library's on other platforms (Windows, Mac, Android...) So I am adding a bounty to this question.

link|improve this question

Are you using those libraries in your app (are they shipping within your app's package) or are you using the libraries on a phone that a user has bought. The libs on the users phone have already been sold btw, so fees have already been paid by the user (and not apple as it was written in some questions). – hakre May 15 '11 at 17:41
feedback

5 Answers

up vote 2 down vote accepted
+50

I'm afraid the only definitive answer would come from a court of law. The patent-holders will cheerfully answer "yes" to almost any question that begins with "should I be paying royalties," and asking anyone else is more or less a request for legal advice.

I also suspect very strongly that Apple has not obtained a blanket AAC/MP3 patent license on behalf of all iOS developers – I think we'd have heard about that.

link|improve this answer
I am not sure how correct this answer is, but I simply can not risk it with the cost of those fees. – RTS May 16 '11 at 6:45
In my not-an-expert, how-I-think-the-law-ought-to-work opinion, you could reasonably argue that your code doesn't contain an AAC or MP3 decoder – you're just calling Apple's API, they're the ones who wrote the decoder, and they've already paid the license fee. But ultimately the question is whether that argument holds up in court... and that's a question for a patent lawyer, not an army of developers on Stack Overflow. :-) – Scott Forbes May 16 '11 at 7:40
feedback

I don't believe so. Apple has already coughed up that dough to include the libraries in the iPhone base system.

link|improve this answer
Do you know where I can get a definitive answer? – RTS Sep 12 '10 at 6:42
2  
Call ADC (Apple). – Graham Perks Sep 12 '10 at 19:29
feedback

No you do not. Apple already pays licensing fees in proportion to the number of devices they sell, for all codecs they support. As long as you use the public API:s that Apple provide your fees are covered.

If you where to bundle your own decoding software in your application, only then would you need to pay licenses, and in proportion to the number of copies to distribute.

Just don't, the decoders Apple provide are not only free of charge to use, they are hardware accelerated for better performance, and less battery consumption.

link|improve this answer
feedback

+1

I never saw anything about paying a license when using mp3 in app

link|improve this answer
3  
This would be more appropriate as a comment. – icktoofay May 9 '11 at 6:39
feedback

The AAC format is patent encumbered see fees

The MP3 (full name is MPEG-1 Audio Layer 3) format is patent encumbered as well. I read somewhere that Linux can not play mp3 due to this patent limitation.

But there is also the opinion that MP3 patent holders will not enforce any fees from decoders (like mp3 players)

the good book that i can suggest is "Mark Pilgrim - HTML5 Up and Running 2010". It is not about iPhone but it covers the audio/video formats in first precision.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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