AudioToolbox框架详细解析 (一) —— 基本概览

版本记录

版本号 时间
V1.0 2017.12.25

前言

AudioToolbox是专门处理声音的一个框架,AudioToolbox这个库是C的接口,偏向于底层,用于在线流媒体音乐的播放,可以调用该库的相关接口自己封装一个在线播放器类,接下来几篇我们就详细的解析一个这个框架。

Overview

首先看一下该框架的基本信息。

录制或播放音频,转换格式,解析音频流以及配置音频会话。

AudioToolbox框架提供录制,回放和流解析的接口。 在iOS中,框架为管理音频会话提供了额外的接口。


框架基本

下面我们就看一下框架的基本情况。

接着看一下API

/*!
    @file       AudioToolbox.h
    @framework  AudioToolbox.framework
    @copyright  (c) 2002-2015 by Apple, Inc., all rights reserved.
    @abstract   Umbrella header for AudioToolbox framework.
*/


#ifndef AudioToolbox_AudioToolbox_h
#define AudioToolbox_AudioToolbox_h

#define AUDIO_TOOLBOX_VERSION 1060

#include <Availability.h>
#include <TargetConditionals.h>
#if !defined(__COREAUDIO_USE_FLAT_INCLUDES__)
    #include <AudioToolbox/AUComponent.h>
    #include <AudioToolbox/AUGraph.h>
    #include <AudioToolbox/AudioComponent.h>
    #include <AudioToolbox/AudioConverter.h>
    #include <AudioToolbox/AudioFile.h>
    #include <AudioToolbox/AudioFileStream.h>
    #include <AudioToolbox/AudioFormat.h>
    #include <AudioToolbox/AudioOutputUnit.h>
    #include <AudioToolbox/AudioQueue.h>
    #include <AudioToolbox/AudioServices.h>
    #include <AudioToolbox/AudioUnitParameters.h>
    #include <AudioToolbox/AudioUnitProperties.h>
    #include <AudioToolbox/CAFFile.h>
    #include <AudioToolbox/ExtendedAudioFile.h>
    #include <AudioToolbox/MusicDevice.h>
    #include <AudioToolbox/MusicPlayer.h>

    #if !TARGET_OS_IPHONE
        // OS X only
        #include <AudioToolbox/AudioCodec.h>
        #include <AudioToolbox/AudioFileComponent.h>
        #include <AudioToolbox/AudioUnitUtilities.h>
        #include <AudioToolbox/AUMIDIController.h>
        #include <AudioToolbox/CoreAudioClock.h>
    #endif

    #ifdef __OBJC2__
        // iOS (all architectures), OS X 64-bit only
        #import <AudioToolbox/AUAudioUnit.h>
        #import <AudioToolbox/AUAudioUnitImplementation.h>
        #import <AudioToolbox/AUParameters.h>
    #endif

#else
    #include <AUComponent.h>
    #include <AUGraph.h>
    #include <AudioComponent.h>
    #include <AudioConverter.h>
    #include <AudioFile.h>
    #include <AudioFileComponent.h>
    #include <AudioFileStream.h>
    #include <AudioFormat.h>
    #include <AudioOutputUnit.h>
    #include <AudioQueue.h>
    #include <AudioServices.h>
    #include <AudioUnitParameters.h>
    #include <AudioUnitProperties.h>
    #include <CAFFile.h>
    #include <ExtendedAudioFile.h>
    #include <MusicDevice.h>
    #include <MusicPlayer.h>

    #include <AudioCodec.h>
    #include <AudioUnitUtilities.h>
    #include <AUMIDIController.h>
    #include <CoreAudioClock.h>
#endif

/*! @mainpage

    @section section_intro          Introduction

    The AudioUnit framework contains a set of related API's dealing with:
    
    - Audio components, providing various types of plug-in functionality.
    - Audio Units, audio processing plug-ins.
    - Audio codecs, plug-ins which decode and encode compressed audio.
    
    @section section_component      Audio Components
    
    See AudioComponent.h for API's to find and use audio components, as well as information
    on how audio components are packaged and built.
    
    In addition, `<AVFoundation/AVAudioUnitComponent.h>` provides a higher-level interface for
    finding audio unit components.
    
    See @ref AUExtensionPackaging and AUAudioUnitImplementation.h for information on creating
    version 3 audio units.
    
    @section section_audiounit      Audio Units
*/

#include <stdio.h>

CF_ASSUME_NONNULL_BEGIN

#if defined(__cplusplus)
extern "C"
{
#endif

// prints out the internal state of an object to stdio
extern void CAShow (void* inObject) 
                                            __OSX_AVAILABLE_STARTING(__MAC_10_2,__IPHONE_2_0);

// prints out the internal state of an object to the supplied FILE
extern void CAShowFile (void* inObject, FILE* inFile) 
                                            __OSX_AVAILABLE_STARTING(__MAC_10_2,__IPHONE_2_0);
    
#if !TARGET_OS_IPHONE
// this will return the name of a sound bank from a sound bank file
// the name should be released by the caller
struct FSRef;
extern OSStatus GetNameFromSoundBank (const struct FSRef *inSoundBankRef, CFStringRef __nullable * __nonnull outName)
                                            __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_2,__MAC_10_5, __IPHONE_NA, __IPHONE_NA);
#endif

/*!
    @function       CopyNameFromSoundBank
     
    @discussion     This will return the name of a sound bank from a DLS or SF2 bank.
                    The name should be released by the caller.

    @param          inURL
                        The URL for the sound bank.
    @param          outName
                        A pointer to a CFStringRef to be created and returned by the function.
    @result         returns noErr if successful.
*/

extern OSStatus
CopyNameFromSoundBank (CFURLRef inURL, CFStringRef __nullable * __nonnull outName)
                                            __OSX_AVAILABLE_STARTING(__MAC_10_5,__IPHONE_7_0);

/*!
    @function       CopyInstrumentInfoFromSoundBank
     
    @discussion     This will return a CFArray of CFDictionaries, one per instrument found in the DLS or SF2 bank.
                    Each dictionary will contain four items accessed via CFStringRef versions of the keys kInstrumentInfoKey_MSB,
                    kInstrumentInfoKey_LSB, kInstrumentInfoKey_Program, and kInstrumentInfoKey_Name.
                        MSB: An NSNumberRef for the most-significant byte of the bank number.  GM melodic banks will return 120 (0x78).
                             GM percussion banks will return 121 (0x79).  Custom banks will return their literal value.
                        LSB: An NSNumberRef for the least-significant byte of the bank number.  All GM banks will return
                             the bank variation number (0-127).
                        Program Number: An NSNumberRef for the program number (0-127) of an instrument within a particular bank.
                        Name: A CFStringRef containing the name of the instrument.
 
                    Using these MSB, LSB, and Program values will guarantee that the correct instrument is loaded by the DLS synth
                    or Sampler Audio Unit.
                    The CFArray should be released by the caller.

    @param          inURL
                        The URL for the sound bank.
    @param          outInstrumentInfo
                        A pointer to a CFArrayRef to be created and returned by the function.
    @result         returns noErr if successful.
*/

extern OSStatus CopyInstrumentInfoFromSoundBank (CFURLRef inURL, CFArrayRef __nullable * __nonnull outInstrumentInfo)
                                                        __OSX_AVAILABLE_STARTING(__MAC_10_8,__IPHONE_7_0);
    
#define kInstrumentInfoKey_Name     "name"
#define kInstrumentInfoKey_MSB      "MSB"
#define kInstrumentInfoKey_LSB      "LSB"
#define kInstrumentInfoKey_Program  "program"

#if defined(__cplusplus)
}
#endif

CF_ASSUME_NONNULL_END

#endif // AudioToolbox_AudioToolbox_h

框架详细

下面我们就看一下框架的详细情况。

1. Classes

  • AUAudioUnit

    • AUAudioUnit类定义了一个音频单元的主机接口。
  • AUAudioUnitBus

    • AUAudioUnitBus类定义音频单元上的输入或输出连接点。
  • AUAudioUnitBusArray

    • AUAudioUnitBusArray类定义音频单元输入或输出总线的容器。
  • AUAudioUnitPreset

    • AUAudioUnitPreset类描述audio unit开发人员提供的自定义参数设置的接口。 这些预设通常会产生有用的声音或起点。
  • AUAudioUnitV2Bridge

    • AUAudioUnitV2Bridge类将version 2 audio unit包装在AUAudioUnit子类中。
  • AUParameter

    • AUParameter对象表示单个音频单元audio unit参数。
  • AUParameterGroup

    • AUParameterGroup对象表示一组相关的音频单元参数。 一个参数组对于其子类是符合KVC的。
  • AUParameterNode

    • AUParameterNode对象表示音频单元参数树中的节点。 节点是AUParameterAUParameterGroup类的实例。
  • AUParameterTree

    • AUParameterTree对象是顶级group节点,代表所有音频单元的参数。 音频单元的参数被组织成一个包含组和参数的树(组可以嵌套)。

2. Protocols

  • AUAudioUnitFactory

    • 实现这个协议来创建一个version 3 audio unit
  • AUCocoaUIBase

3. Reference

  • Audio Converter Services
  • Audio File Services
  • Audio File Stream Services
  • Audio Format Services
  • Audio Queue Services
  • Audio Session Services
  • Audio Toolbox Debugging
  • Audio Unit Processing Graph Services
  • Extended Audio File Services
  • System Sound Services
  • AudioToolbox Structures
  • AudioToolbox Enumerations
  • AudioToolbox Constants
  • AudioToolbox Functions
  • AudioToolbox Data Types

后记

未完,待续~~~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容