Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
38 lines
1,010 B
C++
38 lines
1,010 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_AUDIOOUTPUTAUDIOUNIT_H
|
|
#define LIBTGVOIP_AUDIOOUTPUTAUDIOUNIT_H
|
|
|
|
#include <AudioUnit/AudioUnit.h>
|
|
#include "../../audio/AudioOutput.h"
|
|
#include "../../utils.h"
|
|
|
|
namespace tgvoip{ namespace audio{
|
|
class AudioUnitIO;
|
|
|
|
class AudioOutputAudioUnit : public AudioOutput{
|
|
public:
|
|
TGVOIP_DISALLOW_COPY_AND_ASSIGN(AudioOutputAudioUnit);
|
|
AudioOutputAudioUnit(std::string deviceID, AudioUnitIO* io);
|
|
virtual ~AudioOutputAudioUnit();
|
|
virtual void Start();
|
|
virtual void Stop();
|
|
virtual bool IsPlaying();
|
|
void HandleBufferCallback(AudioBufferList* ioData);
|
|
#if TARGET_OS_OSX
|
|
virtual void SetCurrentDevice(std::string deviceID);
|
|
#endif
|
|
|
|
private:
|
|
bool isPlaying;
|
|
unsigned char remainingData[10240];
|
|
size_t remainingDataSize;
|
|
AudioUnitIO* io;
|
|
};
|
|
}}
|
|
|
|
#endif //LIBTGVOIP_AUDIOOUTPUTAUDIOUNIT_H
|