mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-02 17:51:06 +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)
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
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_AUDIOUNITIO_H
|
|
#define LIBTGVOIP_AUDIOUNITIO_H
|
|
|
|
#include <AudioUnit/AudioUnit.h>
|
|
#include <AudioToolbox/AudioToolbox.h>
|
|
#include "../../threading.h"
|
|
#include <string>
|
|
#include "../../audio/AudioIO.h"
|
|
|
|
namespace tgvoip{ namespace audio{
|
|
class AudioInputAudioUnit;
|
|
class AudioOutputAudioUnit;
|
|
|
|
class AudioUnitIO : public AudioIO{
|
|
public:
|
|
AudioUnitIO();
|
|
~AudioUnitIO();
|
|
void EnableInput(bool enabled);
|
|
void EnableOutput(bool enabled);
|
|
virtual AudioInput* GetInput();
|
|
virtual AudioOutput* GetOutput();
|
|
#if TARGET_OS_OSX
|
|
void SetCurrentDevice(bool input, std::string deviceID);
|
|
#endif
|
|
|
|
private:
|
|
static OSStatus BufferCallback(void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData);
|
|
void BufferCallback(AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 bus, UInt32 numFrames, AudioBufferList* ioData);
|
|
void StartIfNeeded();
|
|
#if TARGET_OS_OSX
|
|
static OSStatus DefaultDeviceChangedCallback(AudioObjectID inObjectID, UInt32 inNumberAddresses, const AudioObjectPropertyAddress *inAddresses, void *inClientData);
|
|
std::string currentInputDevice;
|
|
std::string currentOutputDevice;
|
|
#endif
|
|
AudioComponentInstance unit;
|
|
AudioInputAudioUnit* input;
|
|
AudioOutputAudioUnit* output;
|
|
AudioBufferList inBufferList;
|
|
bool inputEnabled;
|
|
bool outputEnabled;
|
|
bool started;
|
|
};
|
|
}}
|
|
|
|
#endif /* LIBTGVOIP_AUDIOUNITIO_H */
|