mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-03 10:07:45 +01:00
333c4a1101
Added simple audio resampler Replaced prebuilt static libs with their sources & added that to all project files (closes #5)
29 lines
718 B
C++
29 lines
718 B
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_AUDIOOUTPUT_H
|
|
#define LIBTGVOIP_AUDIOOUTPUT_H
|
|
|
|
#include <stdint.h>
|
|
#include "../MediaStreamItf.h"
|
|
|
|
class CAudioOutput : public CMediaStreamItf{
|
|
public:
|
|
virtual ~CAudioOutput();
|
|
virtual void Configure(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels)=0;
|
|
virtual bool IsPlaying()=0;
|
|
virtual float GetLevel();
|
|
static CAudioOutput* Create();
|
|
static int32_t GetEstimatedDelay();
|
|
|
|
#if defined(__ANDROID__)
|
|
static int systemVersion;
|
|
#endif
|
|
};
|
|
|
|
|
|
#endif //LIBTGVOIP_AUDIOOUTPUT_H
|