1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TGOpusAudioRecorder.m

763 lines
27 KiB
Mathematica
Raw Normal View History

2014-07-10 16:11:09 +02:00
/*
* This is the source code of Telegram for iOS v. 1.1
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Peter Iakovlev, 2013.
*/
#import "TGOpusAudioRecorder.h"
#import "TGAppDelegate.h"
#import "ASQueue.h"
#import "ActionStage.h"
#import "TGLiveUploadActor.h"
#import <AVFoundation/AVFoundation.h>
#import <AudioUnit/AudioUnit.h>
#import "opus.h"
#import "opusenc.h"
2015-10-01 18:19:52 +02:00
#import "TGDataItem.h"
#import "TGAudioSessionManager.h"
2016-02-25 01:03:51 +01:00
#import "TGAudioWaveform.h"
#define kOutputBus 0
#define kInputBus 1
static const int TGOpusAudioPlayerSampleRate = 48000; // libopusfile is bound to use 48 kHz
2014-07-10 16:11:09 +02:00
static const int TGOpusAudioRecorderSampleRate = 16000;
typedef struct
{
AudioComponentInstance audioUnit;
bool audioUnitStarted;
bool audioUnitInitialized;
2016-02-25 01:03:51 +01:00
AudioComponentInstance playbackUnit;
bool playbackUnitStarted;
bool playbackUnitInitialized;
2014-07-10 16:11:09 +02:00
int globalAudioRecorderId;
} TGOpusAudioRecorderContext;
2016-02-25 01:03:51 +01:00
static NSData *toneAudioBuffer;
static int64_t toneAudioOffset;
static TGOpusAudioRecorderContext globalRecorderContext = { .audioUnit = NULL, .audioUnitStarted = false, .audioUnitInitialized = false, .playbackUnit = NULL, .playbackUnitStarted = false, .playbackUnitInitialized = false, .globalAudioRecorderId = -1};
2014-07-10 16:11:09 +02:00
static __weak TGOpusAudioRecorder *globalRecorder = nil;
static dispatch_semaphore_t playSoundSemaphore = nil;
@interface TGOpusAudioRecorder () <ASWatcher>
{
2015-10-01 18:19:52 +02:00
TGDataItem *_tempFileItem;
2014-07-10 16:11:09 +02:00
TGOggOpusWriter *_oggWriter;
NSMutableData *_audioBuffer;
NSString *_liveUploadPath;
2015-10-01 18:19:52 +02:00
SMetaDisposable *_currentAudioSession;
2016-02-25 01:03:51 +01:00
bool _recording;
bool _waitForTone;
NSTimeInterval _waitForToneStart;
bool _stopped;
NSMutableData *_waveformSamples;
int16_t _waveformPeak;
int _waveformPeakCount;
int16_t _micLevelPeak;
int _micLevelPeakCount;
2014-07-10 16:11:09 +02:00
}
@property (nonatomic, strong) ASHandle *actionHandle;
@property (nonatomic) int recorderId;
@end
@implementation TGOpusAudioRecorder
- (instancetype)initWithFileEncryption:(bool)fileEncryption
{
self = [super init];
if (self != nil)
{
_actionHandle = [[ASHandle alloc] initWithDelegate:self];
2015-10-01 18:19:52 +02:00
_tempFileItem = [[TGDataItem alloc] initWithTempFile];
_currentAudioSession = [[SMetaDisposable alloc] init];
2014-07-10 16:11:09 +02:00
2016-02-25 01:03:51 +01:00
_waveformSamples = [[NSMutableData alloc] init];
2014-07-10 16:11:09 +02:00
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
static int nextRecorderId = 1;
_recorderId = nextRecorderId++;
globalRecorderContext.globalAudioRecorderId = _recorderId;
globalRecorder = self;
static int nextActionId = 0;
int actionId = nextActionId++;
_liveUploadPath = [[NSString alloc] initWithFormat:@"/tg/liveUpload/(%d)", actionId];
2015-10-01 18:19:52 +02:00
2014-07-10 16:11:09 +02:00
[ActionStageInstance() requestActor:_liveUploadPath options:@{
2015-10-01 18:19:52 +02:00
@"fileItem": _tempFileItem,
2014-07-10 16:11:09 +02:00
@"encryptFile": @(fileEncryption)
} flags:0 watcher:self];
}];
}
return self;
}
- (void)dealloc
{
[ActionStageInstance() removeWatcher:self];
[self cleanup];
}
+ (ASQueue *)processingQueue
{
static ASQueue *queue = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
queue = [[ASQueue alloc] initWithName:"org.telegram.opusAudioRecorderQueue"];
});
return queue;
}
- (void)cleanup
{
intptr_t objectId = (intptr_t)self;
int recorderId = _recorderId;
globalRecorder = nil;
_oggWriter = nil;
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
if (globalRecorderContext.globalAudioRecorderId == recorderId)
{
globalRecorderContext.globalAudioRecorderId++;
if (globalRecorderContext.audioUnitStarted && globalRecorderContext.audioUnit != NULL)
{
OSStatus status = noErr;
status = AudioOutputUnitStop(globalRecorderContext.audioUnit);
if (status != noErr)
TGLog(@"[TGOpusAudioRecorder#%x AudioOutputUnitStop failed: %d]", objectId, (int)status);
globalRecorderContext.audioUnitStarted = false;
}
if (globalRecorderContext.audioUnit != NULL)
{
OSStatus status = noErr;
status = AudioComponentInstanceDispose(globalRecorderContext.audioUnit);
if (status != noErr)
TGLog(@"[TGOpusAudioRecorder#%x AudioComponentInstanceDispose failed: %d]", objectId, (int)status);
globalRecorderContext.audioUnit = NULL;
}
2016-02-25 01:03:51 +01:00
if (globalRecorderContext.playbackUnitStarted && globalRecorderContext.playbackUnit != NULL)
{
OSStatus status = noErr;
status = AudioOutputUnitStop(globalRecorderContext.playbackUnit);
if (status != noErr)
TGLog(@"[TGOpusAudioRecorder#%x playback AudioOutputUnitStop failed: %d]", objectId, (int)status);
globalRecorderContext.playbackUnitStarted = false;
}
if (globalRecorderContext.playbackUnit != NULL)
{
OSStatus status = noErr;
status = AudioComponentInstanceDispose(globalRecorderContext.playbackUnit);
if (status != noErr)
TGLog(@"[TGOpusAudioRecorder#%x playback AudioComponentInstanceDispose failed: %d]", objectId, (int)status);
globalRecorderContext.playbackUnit = NULL;
}
2014-07-10 16:11:09 +02:00
}
}];
[self _endAudioSession];
}
2016-02-25 01:03:51 +01:00
- (void)_beginAudioSession:(bool)speaker
2014-07-10 16:11:09 +02:00
{
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
2015-10-01 18:19:52 +02:00
__weak TGOpusAudioRecorder *weakSelf = self;
2016-02-25 01:03:51 +01:00
[_currentAudioSession setDisposable:[[TGAudioSessionManager instance] requestSessionWithType:speaker ? TGAudioSessionTypePlayAndRecordHeadphones : TGAudioSessionTypePlayAndRecord interrupted:^
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
__strong TGOpusAudioRecorder *strongSelf = weakSelf;
if (strongSelf != nil)
{
2016-02-25 01:03:51 +01:00
NSLog(@"_beginAudioSession completed");
if (strongSelf->_pauseRecording) {
strongSelf->_pauseRecording();
}
2015-10-01 18:19:52 +02:00
}
}]];
2016-02-25 01:03:51 +01:00
} synchronous:true];
2014-07-10 16:11:09 +02:00
}
- (void)_endAudioSession
{
2015-10-01 18:19:52 +02:00
id<SDisposable> currentAudioSession = _currentAudioSession;
2014-07-10 16:11:09 +02:00
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
2015-10-01 18:19:52 +02:00
[currentAudioSession dispose];
2014-07-10 16:11:09 +02:00
}];
}
2016-02-25 01:03:51 +01:00
- (void)prepareRecord:(bool)playTone completion:(void (^)())completion
2014-07-10 16:11:09 +02:00
{
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
2016-02-25 01:03:51 +01:00
if (_stopped) {
if (completion) {
completion();
}
return;
}
//[self _beginAudioSession];
2014-07-10 16:11:09 +02:00
AudioComponentDescription desc;
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_RemoteIO;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
AudioComponent inputComponent = AudioComponentFindNext(NULL, &desc);
AudioComponentInstanceNew(inputComponent, &globalRecorderContext.audioUnit);
OSStatus status = noErr;
static const UInt32 one = 1;
status = AudioUnitSetProperty(globalRecorderContext.audioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &one, sizeof(one));
if (status != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitSetProperty kAudioOutputUnitProperty_EnableIO failed: %d]", self, (int)status);
[self cleanup];
return;
}
AudioStreamBasicDescription inputAudioFormat;
inputAudioFormat.mSampleRate = TGOpusAudioRecorderSampleRate;
inputAudioFormat.mFormatID = kAudioFormatLinearPCM;
inputAudioFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
inputAudioFormat.mFramesPerPacket = 1;
inputAudioFormat.mChannelsPerFrame = 1;
inputAudioFormat.mBitsPerChannel = 16;
inputAudioFormat.mBytesPerPacket = 2;
inputAudioFormat.mBytesPerFrame = 2;
status = AudioUnitSetProperty(globalRecorderContext.audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output, 1, &inputAudioFormat, sizeof(inputAudioFormat));
if (status != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitSetProperty kAudioUnitProperty_StreamFormat failed: %d]", self, (int)status);
[self cleanup];
return;
}
AudioStreamBasicDescription audioFormat;
audioFormat.mSampleRate = TGOpusAudioRecorderSampleRate;
audioFormat.mFormatID = kAudioFormatLinearPCM;
audioFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
audioFormat.mFramesPerPacket = 1;
audioFormat.mChannelsPerFrame = 1;
audioFormat.mBitsPerChannel = 16;
audioFormat.mBytesPerPacket = 2;
audioFormat.mBytesPerFrame = 2;
status = AudioUnitSetProperty(globalRecorderContext.audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input, 0, &audioFormat, sizeof(audioFormat));
if (status != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitSetProperty kAudioUnitProperty_StreamFormat failed: %d]", self, (int)status);
[self cleanup];
return;
}
AURenderCallbackStruct callbackStruct;
callbackStruct.inputProc = &TGOpusRecordingCallback;
2015-10-01 18:19:52 +02:00
callbackStruct.inputProcRefCon = (void *)(intptr_t)_recorderId;
2014-07-10 16:11:09 +02:00
if (AudioUnitSetProperty(globalRecorderContext.audioUnit, kAudioOutputUnitProperty_SetInputCallback, kAudioUnitScope_Global, 0, &callbackStruct, sizeof(callbackStruct)) != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitSetProperty kAudioOutputUnitProperty_SetInputCallback failed]", self);
[self cleanup];
return;
}
static const UInt32 zero = 0;
if (AudioUnitSetProperty(globalRecorderContext.audioUnit, kAudioUnitProperty_ShouldAllocateBuffer, kAudioUnitScope_Output, 0, &zero, sizeof(zero)) != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitSetProperty kAudioUnitProperty_ShouldAllocateBuffer failed]", self);
[self cleanup];
return;
}
_oggWriter = [[TGOggOpusWriter alloc] init];
2015-10-01 18:19:52 +02:00
if (![_oggWriter beginWithDataItem:_tempFileItem])
2014-07-10 16:11:09 +02:00
{
TGLog(@"[TGOpusAudioRecorder#%x error initializing ogg opus writer]", self);
[self cleanup];
return;
}
CFAbsoluteTime startTime = CFAbsoluteTimeGetCurrent();
status = AudioUnitInitialize(globalRecorderContext.audioUnit);
if (status == noErr)
globalRecorderContext.audioUnitInitialized = true;
else
{
TGLog(@"[TGOpusAudioRecorder#%x AudioUnitInitialize failed: %d]", self, (int)status);
[self cleanup];
return;
}
TGLog(@"[TGOpusAudioRecorder#%x setup time: %f ms]", self, (CFAbsoluteTimeGetCurrent() - startTime) * 1000.0);
status = AudioOutputUnitStart(globalRecorderContext.audioUnit);
if (status == noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x initialization time: %f ms]", self, (CFAbsoluteTimeGetCurrent() - startTime) * 1000.0);
TGLog(@"[TGOpusAudioRecorder#%x started]", self);
globalRecorderContext.audioUnitStarted = true;
}
else
{
TGLog(@"[TGOpusAudioRecorder#%x AudioOutputUnitStart failed: %d]", self, (int)status);
[self cleanup];
2016-02-25 01:03:51 +01:00
return;
}
if (playTone) {
[self loadToneBuffer];
_waitForTone = true;
toneAudioOffset = 0;
AudioComponentDescription desc;
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_RemoteIO;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
AudioComponent inputComponent = AudioComponentFindNext(NULL, &desc);
AudioComponentInstanceNew(inputComponent, &globalRecorderContext.playbackUnit);
OSStatus status = noErr;
static const UInt32 one = 1;
status = AudioUnitSetProperty(globalRecorderContext.playbackUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Output, kOutputBus, &one, sizeof(one));
if (status != noErr)
{
TGLog(@"[TGOpusAudioPlayer#%x AudioUnitSetProperty kAudioOutputUnitProperty_EnableIO failed: %d]", self, (int)status);
[self cleanup];
return;
}
AudioStreamBasicDescription outputAudioFormat;
outputAudioFormat.mSampleRate = TGOpusAudioPlayerSampleRate;
outputAudioFormat.mFormatID = kAudioFormatLinearPCM;
outputAudioFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
outputAudioFormat.mFramesPerPacket = 1;
outputAudioFormat.mChannelsPerFrame = 1;
outputAudioFormat.mBitsPerChannel = 16;
outputAudioFormat.mBytesPerPacket = 2;
outputAudioFormat.mBytesPerFrame = 2;
status = AudioUnitSetProperty(globalRecorderContext.playbackUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input, kOutputBus, &outputAudioFormat, sizeof(outputAudioFormat));
if (status != noErr)
{
TGLog(@"[TGOpusAudioPlayer#%x playback AudioUnitSetProperty kAudioUnitProperty_StreamFormat failed: %d]", self, (int)status);
[self cleanup];
return;
}
AURenderCallbackStruct callbackStruct;
callbackStruct.inputProc = &TGOpusAudioPlayerCallback;
callbackStruct.inputProcRefCon = (void *)(intptr_t)_recorderId;
if (AudioUnitSetProperty(globalRecorderContext.playbackUnit, kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Global, kOutputBus, &callbackStruct, sizeof(callbackStruct)) != noErr)
{
TGLog(@"[TGOpusAudioPlayer#%x playback AudioUnitSetProperty kAudioUnitProperty_SetRenderCallback failed]", self);
[self cleanup];
return;
}
status = AudioUnitInitialize(globalRecorderContext.playbackUnit);
if (status == noErr)
{
status = AudioOutputUnitStart(globalRecorderContext.playbackUnit);
if (status != noErr)
{
TGLog(@"[TGOpusAudioRecorder#%x playback AudioOutputUnitStart failed: %d]", self, (int)status);
}
} else {
TGLog(@"[TGOpusAudioRecorder#%x playback AudioUnitInitialize failed: %d]", self, (int)status);
[self cleanup];
}
_waitForToneStart = CACurrentMediaTime();
}
if (completion) {
completion();
2014-07-10 16:11:09 +02:00
}
}];
}
2016-02-25 01:03:51 +01:00
- (void)loadToneBuffer {
if (toneAudioBuffer != nil) {
return;
}
NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
[NSNumber numberWithFloat:48000.0], AVSampleRateKey,
[NSNumber numberWithInt:16], AVLinearPCMBitDepthKey,
[NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
[NSNumber numberWithBool:NO], AVLinearPCMIsFloatKey,
[NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
nil];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:[[NSBundle mainBundle] URLForResource:@"begin_record" withExtension: @"caf"] options:nil];
if (asset == nil) {
NSLog(@"asset is not defined!");
return;
}
NSError *assetError = nil;
AVAssetReader *iPodAssetReader = [AVAssetReader assetReaderWithAsset:asset error:&assetError];
if (assetError) {
NSLog (@"error: %@", assetError);
return;
}
AVAssetReaderOutput *readerOutput = [AVAssetReaderAudioMixOutput assetReaderAudioMixOutputWithAudioTracks:asset.tracks audioSettings:outputSettings];
if (! [iPodAssetReader canAddOutput: readerOutput]) {
NSLog (@"can't add reader output... die!");
return;
}
// add output reader to reader
[iPodAssetReader addOutput: readerOutput];
if (! [iPodAssetReader startReading]) {
NSLog(@"Unable to start reading!");
return;
}
NSMutableData *data = [[NSMutableData alloc] init];
while (iPodAssetReader.status == AVAssetReaderStatusReading) {
// Check if the available buffer space is enough to hold at least one cycle of the sample data
CMSampleBufferRef nextBuffer = [readerOutput copyNextSampleBuffer];
if (nextBuffer) {
AudioBufferList abl;
CMBlockBufferRef blockBuffer = NULL;
CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer(nextBuffer, NULL, &abl, sizeof(abl), NULL, NULL, kCMSampleBufferFlag_AudioBufferList_Assure16ByteAlignment, &blockBuffer);
UInt64 size = CMSampleBufferGetTotalSampleSize(nextBuffer);
if (size != 0) {
[data appendBytes:abl.mBuffers[0].mData length:size];
}
CFRelease(nextBuffer);
if (blockBuffer) {
CFRelease(blockBuffer);
}
}
else {
break;
}
}
toneAudioBuffer = data;
}
- (void)record {
_recording = true;
}
2014-07-10 16:11:09 +02:00
static OSStatus TGOpusRecordingCallback(void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, __unused AudioBufferList *ioData)
{
@autoreleasepool
{
if (globalRecorderContext.globalAudioRecorderId != (int)inRefCon)
return noErr;
AudioBuffer buffer;
buffer.mNumberChannels = 1;
buffer.mDataByteSize = inNumberFrames * 2;
buffer.mData = malloc(inNumberFrames * 2);
AudioBufferList bufferList;
bufferList.mNumberBuffers = 1;
bufferList.mBuffers[0] = buffer;
OSStatus status = AudioUnitRender(globalRecorderContext.audioUnit, ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, &bufferList);
if (status == noErr)
{
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
TGOpusAudioRecorder *recorder = globalRecorder;
2016-02-25 01:03:51 +01:00
if (recorder != nil && recorder.recorderId == (int)(intptr_t)inRefCon && recorder->_recording) {
if (recorder->_waitForTone) {
if (CACurrentMediaTime() - recorder->_waitForToneStart > 0.3) {
[recorder _processBuffer:&buffer];
}
} else {
[recorder _processBuffer:&buffer];
}
}
2014-07-10 16:11:09 +02:00
free(buffer.mData);
}];
}
}
return noErr;
}
2016-02-25 01:03:51 +01:00
static OSStatus TGOpusAudioPlayerCallback(void *inRefCon, __unused AudioUnitRenderActionFlags *ioActionFlags, __unused const AudioTimeStamp *inTimeStamp, __unused UInt32 inBusNumber, __unused UInt32 inNumberFrames, AudioBufferList *ioData)
{
if (globalRecorderContext.globalAudioRecorderId != (int)inRefCon)
return noErr;
for (int i = 0; i < (int)ioData->mNumberBuffers; i++)
{
AudioBuffer *buffer = &ioData->mBuffers[i];
buffer->mNumberChannels = 1;
int audioBytesToCopy = MAX(0, MIN((int)buffer->mDataByteSize, ((int)toneAudioBuffer.length) - (int)toneAudioOffset));
if (audioBytesToCopy != 0) {
memcpy(buffer->mData, toneAudioBuffer.bytes + (int)toneAudioOffset, audioBytesToCopy);
toneAudioOffset += audioBytesToCopy;
}
int remainingBytes = ((int)buffer->mDataByteSize) - audioBytesToCopy;
if (remainingBytes > 0) {
memset(buffer->mData + buffer->mDataByteSize - remainingBytes, 0, remainingBytes);
}
}
return noErr;
}
- (void)processWaveformPreview:(int16_t const *)samples count:(int)count {
for (int i = 0; i < count; i++) {
int16_t sample = samples[i];
if (sample < 0) {
sample = -sample;
}
if (_waveformPeak < sample) {
_waveformPeak = sample;
}
_waveformPeakCount++;
if (_waveformPeakCount >= 100) {
[_waveformSamples appendBytes:&_waveformPeak length:2];
_waveformPeak = 0;
_waveformPeakCount = 0;
}
if (_micLevelPeak < sample) {
_micLevelPeak = sample;
}
_micLevelPeakCount++;
if (_micLevelPeakCount >= 1200) {
if (_micLevel) {
CGFloat level = (CGFloat)_micLevelPeak / 4000.0;
_micLevel(level);
}
_micLevelPeak = 0;
_micLevelPeakCount = 0;
}
}
}
2014-07-10 16:11:09 +02:00
- (void)_processBuffer:(AudioBuffer const *)buffer
{
@autoreleasepool
{
if (_oggWriter == nil)
return;
static const int millisecondsPerPacket = 60;
static const int encoderPacketSizeInBytes = TGOpusAudioRecorderSampleRate / 1000 * millisecondsPerPacket * 2;
unsigned char currentEncoderPacket[encoderPacketSizeInBytes];
int bufferOffset = 0;
while (true)
{
int currentEncoderPacketSize = 0;
while (currentEncoderPacketSize < encoderPacketSizeInBytes)
{
if (_audioBuffer.length != 0)
{
int takenBytes = MIN((int)_audioBuffer.length, encoderPacketSizeInBytes - currentEncoderPacketSize);
if (takenBytes != 0)
{
memcpy(currentEncoderPacket + currentEncoderPacketSize, _audioBuffer.bytes, takenBytes);
[_audioBuffer replaceBytesInRange:NSMakeRange(0, takenBytes) withBytes:NULL length:0];
currentEncoderPacketSize += takenBytes;
}
}
else if (bufferOffset < (int)buffer->mDataByteSize)
{
int takenBytes = MIN((int)buffer->mDataByteSize - bufferOffset, encoderPacketSizeInBytes - currentEncoderPacketSize);
if (takenBytes != 0)
{
memcpy(currentEncoderPacket + currentEncoderPacketSize, ((const char *)buffer->mData) + bufferOffset, takenBytes);
bufferOffset += takenBytes;
currentEncoderPacketSize += takenBytes;
}
}
else
break;
}
if (currentEncoderPacketSize < encoderPacketSizeInBytes)
{
if (_audioBuffer == nil)
_audioBuffer = [[NSMutableData alloc] initWithCapacity:encoderPacketSizeInBytes];
[_audioBuffer appendBytes:currentEncoderPacket length:currentEncoderPacketSize];
break;
}
else
{
NSUInteger previousBytesWritten = [_oggWriter encodedBytes];
2016-02-25 01:03:51 +01:00
[self processWaveformPreview:(int16_t const *)currentEncoderPacket count:currentEncoderPacketSize / 2];
2014-07-10 16:11:09 +02:00
[_oggWriter writeFrame:currentEncoderPacket frameByteCount:(NSUInteger)currentEncoderPacketSize];
NSUInteger currentBytesWritten = [_oggWriter encodedBytes];
if (currentBytesWritten != previousBytesWritten)
{
[ActionStageInstance() dispatchOnStageQueue:^
{
TGLiveUploadActor *actor = (TGLiveUploadActor *)[ActionStageInstance() executingActorWithPath:_liveUploadPath];
[actor updateSize:currentBytesWritten];
}];
}
}
}
}
}
2016-02-25 01:03:51 +01:00
- (TGDataItem *)stopRecording:(NSTimeInterval *)recordedDuration liveData:(__autoreleasing TGLiveUploadActorData **)liveData waveform:(__autoreleasing TGAudioWaveform **)waveform
2014-07-10 16:11:09 +02:00
{
2016-02-25 01:03:51 +01:00
_stopped = true;
2015-10-01 18:19:52 +02:00
__block TGDataItem *dataItemResult = nil;
2014-07-10 16:11:09 +02:00
__block NSTimeInterval durationResult = 0.0;
__block NSUInteger totalBytes = 0;
[[TGOpusAudioRecorder processingQueue] dispatchOnQueue:^
{
if (_oggWriter != nil && [_oggWriter writeFrame:NULL frameByteCount:0])
{
2015-10-01 18:19:52 +02:00
dataItemResult = _tempFileItem;
2014-07-10 16:11:09 +02:00
durationResult = [_oggWriter encodedDuration];
totalBytes = [_oggWriter encodedBytes];
}
[self cleanup];
} synchronous:true];
2016-02-25 01:03:51 +01:00
int16_t scaledSamples[100];
memset(scaledSamples, 0, 100 * 2);
int16_t *samples = _waveformSamples.mutableBytes;
int count = (int)_waveformSamples.length / 2;
for (int i = 0; i < count; i++) {
int16_t sample = samples[i];
int index = i * 100 / count;
if (scaledSamples[index] < sample) {
scaledSamples[index] = sample;
}
}
int16_t peak = 0;
int64_t sumSamples = 0;
for (int i = 0; i < 100; i++) {
int16_t sample = scaledSamples[i];
if (peak < sample) {
peak = sample;
}
sumSamples += peak;
}
uint16_t calculatedPeak = 0;
calculatedPeak = (uint16_t)(sumSamples * 1.8f / 100);
if (calculatedPeak < 2500) {
calculatedPeak = 2500;
}
for (int i = 0; i < 100; i++) {
uint16_t sample = (uint16_t)((int64_t)samples[i]);
if (sample > calculatedPeak) {
scaledSamples[i] = calculatedPeak;
}
}
TGAudioWaveform *resultWaveform = [[TGAudioWaveform alloc] initWithSamples:[NSData dataWithBytes:scaledSamples length:100 * 2] peak:calculatedPeak];
NSData *bitstream = [resultWaveform bitstream];
resultWaveform = [[TGAudioWaveform alloc] initWithBitstream:bitstream bitsPerSample:5];
2014-07-10 16:11:09 +02:00
if (recordedDuration != NULL)
*recordedDuration = durationResult;
2016-02-25 01:03:51 +01:00
if (waveform != NULL) {
*waveform = resultWaveform;
}
2014-07-10 16:11:09 +02:00
if (liveData != NULL)
{
dispatch_sync([ActionStageInstance() globalStageDispatchQueue], ^
{
TGLiveUploadActor *actor = (TGLiveUploadActor *)[ActionStageInstance() executingActorWithPath:_liveUploadPath];
*liveData = [actor finishRestOfFile:totalBytes];
});
}
2015-10-01 18:19:52 +02:00
return dataItemResult;
2014-07-10 16:11:09 +02:00
}
- (NSTimeInterval)currentDuration
{
return [_oggWriter encodedDuration];
}
@end