Amazing Audio Engine
- 授权协议: zlib
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: http://theamazingaudioengine.com
- 软件文档: http://theamazingaudioengine.com/doc/
软件介绍
Amazing Audio Engine 是基于 Core Audio 的远程 IO 系统用以提供低延迟的音频连接,通过内置的混音、过滤和生效。该框架支持大多数音频格式和比特率,同时提供音频输入、录制和监控功能。
示例代码:
// Create an instance of the audio controller
self.audioController = [[[AEAudioController alloc]
initWithAudioDescription:
[AEAudioController nonInterleaved16BitStereoAudioDescription]]
autorelease];
AEBlockChannel *channel = [AEBlockChannel channelWithBlock:
^(const AudioTimeStamp *time,
UInt32 frames,
AudioBufferList *audio) {
// Generate audio here
}];
// Add and start playing channel
[_audioController addChannels:[NSArray arrayWithObjects:channel, nil]];
// Start the audio engine.
[_audioController start:NULL];
UML基础与Rose建模案例
吴建 / 人民邮电出版社 / 2004-10 / 29.00元
《UML 基础与Rose建模案例》介绍了用UML(统一建模语言)进行软件建模的基础知识以及Rational Rose工具的使用方法,其中,前8章是基础部分,对软件工程思想、UML的相关概念、Rational Rose工具以及RUP软件过程等进行了详细的介绍;后3章是案例部分,通过3个综合实例,对UML建模(以Rose为实现工具)的全过程进行了剖析;最后的附录中给出了UML中常用的术语、标准元素和元......一起来看看 《UML基础与Rose建模案例》 这本书的介绍吧!
