mirror of
https://github.com/danog/libtgvoip.git
synced 2024-11-26 20:24:38 +01:00
5380aaba0d
- Refactored audio I/O to allow sharing a common context between input and output, for those OSes that require this - Rewritten periodic operation handling to use a "run loop" thingy instead of an ugly loop formerly known as tick thread - Fixed a bunch of compiler warnings (closes #13) - Added automake so you no longer need to use the GYP file for standalone builds (closes #43)
40 lines
1.4 KiB
Objective-C
40 lines
1.4 KiB
Objective-C
//
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
// you should have received with this source code distribution.
|
|
//
|
|
|
|
#ifndef LIBTGVOIP_AUDIOINPUTAUDIOUNIT_OSX_H
|
|
#define LIBTGVOIP_AUDIOINPUTAUDIOUNIT_OSX_H
|
|
|
|
#include <AudioUnit/AudioUnit.h>
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
#import <CoreAudio/CoreAudio.h>
|
|
#include "../../audio/AudioInput.h"
|
|
|
|
namespace tgvoip{ namespace audio{
|
|
class AudioInputAudioUnitLegacy : public AudioInput{
|
|
|
|
public:
|
|
AudioInputAudioUnitLegacy(std::string deviceID);
|
|
virtual ~AudioInputAudioUnitLegacy();
|
|
virtual void Start();
|
|
virtual void Stop();
|
|
void HandleBufferCallback(AudioBufferList* ioData);
|
|
static void EnumerateDevices(std::vector<AudioInputDevice>& devs);
|
|
virtual void SetCurrentDevice(std::string deviceID);
|
|
|
|
private:
|
|
static OSStatus BufferCallback(void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData);
|
|
static OSStatus DefaultDeviceChangedCallback(AudioObjectID inObjectID, UInt32 inNumberAddresses, const AudioObjectPropertyAddress *inAddresses, void *inClientData);
|
|
unsigned char remainingData[10240];
|
|
size_t remainingDataSize;
|
|
bool isRecording;
|
|
AudioUnit unit;
|
|
AudioBufferList inBufferList;
|
|
int hardwareSampleRate;
|
|
};
|
|
}}
|
|
|
|
#endif //LIBTGVOIP_AUDIOINPUTAUDIOUNIT_OSX_H
|