00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface AVRecorder : NSObject
00010 {
00011 struct AVRecorderPrivate *_priv;
00012 }
00013
00014 - (id)init;
00015 - (void)dealloc;
00016 - (void)setFilePath:(id)fp8;
00017 - (id)filePath;
00018 - (void)setAttribute:(id)fp8 forKey:(id)fp12;
00019 - (id)attributeForKey:(id)fp8;
00020 - (BOOL)activate:(id *)fp8;
00021 - (BOOL)start;
00022 - (void)stop;
00023 - (BOOL)isRecording;
00024 - (BOOL)isActive;
00025 - (void)deactivate;
00026 - (float)micVolume;
00027 - (void)setMicVolume:(float)fp8;
00028 - (long long)recordedFileSizeInBytes;
00029 - (double)recordedDuration;
00030 - (unsigned int)audioNumDeviceChannels;
00031 - (BOOL)audioCurrentAverageVolumeLevels:(float *)fp8 andPeakVolumeLevels:(float *)fp12;
00032 - (BOOL)audioCurrentAverageDecibelLevels:(float *)fp8 andPeakDecibelLevels:(float *)fp12;
00033
00034 @end
00035