简体   繁体   中英

AudioFileReadPackets deprecated in iOS8

我在AudioFileReadPackets中遇到了奇怪的行为,因为它在iOS 8中被弃用了。应该如何替换它?

From the Apple's Documentation:

AudioFileReadPackets is deprecated in iOS 8.0 . You can try this: AudioFileReadPacketData

If you do not need to read a fixed duration of audio data, but rather want to use your memory buffer most efficiently, use AudioFileReadPacketData instead of AudioFileReadPackets .When reading variable bit-rate (VBR) audio data, using AudioFileReadPackets function requires that you allocate more memory than you would for the AudioFileReadPacketData function. See the descriptions for the outBuffer parameter in each of these two functions. In addition, AudioFileReadPackets function is less efficient than AudioFileReadPacketData when reading compressed file formats that do not have packet tables, such as MP3 or ADTS. Use this function only when you need to read a fixed duration of audio data, or when you are reading only uncompressed audio.

 Audio File Services reads one 32-bit chunk of a file at a time. 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM