cn.tee3.avd_SDK-Objectc  2.1.0
AVDAudioParams.h
浏览该文件的文档.
1 //
2 // AVDAudioParams.h
3 // avd_sdk
4 //
5 // Created by skin on 15-9-19.
6 // Copyright (c) 2015年 t3ee. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
16 @interface AVDAudioParams : NSObject
17 @property(nonatomic, assign) NSUInteger channel;
18 @property(nonatomic, assign) NSUInteger sampleRate;
19 @property(nonatomic, assign) NSUInteger bitrate;
20 
21 - (instancetype) initWithChannel:(NSInteger)c sampleRate:(NSInteger)s bitrate:(NSInteger)b;
22 
23 @end
音频参数信息结构.
Definition: AVDAudioParams.h:16
NSUInteger bitrate
Definition: AVDAudioParams.h:19
NSUInteger sampleRate
Definition: AVDAudioParams.h:18
NSUInteger channel
Definition: AVDAudioParams.h:17