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
43 lines
1 KiB
C++
43 lines
1 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_AUDIOINPUTANDROID_H
|
|
#define LIBTGVOIP_AUDIOINPUTANDROID_H
|
|
|
|
#include <jni.h>
|
|
#include "../../audio/AudioInput.h"
|
|
#include "../../threading.h"
|
|
|
|
namespace tgvoip{ namespace audio{
|
|
class AudioInputAndroid : public AudioInput{
|
|
|
|
public:
|
|
AudioInputAndroid();
|
|
virtual ~AudioInputAndroid();
|
|
virtual void Start();
|
|
virtual void Stop();
|
|
void HandleCallback(JNIEnv* env, jobject buffer);
|
|
unsigned int GetEnabledEffects();
|
|
static jmethodID initMethod;
|
|
static jmethodID releaseMethod;
|
|
static jmethodID startMethod;
|
|
static jmethodID stopMethod;
|
|
static jmethodID getEnabledEffectsMaskMethod;
|
|
static jclass jniClass;
|
|
|
|
static constexpr unsigned int EFFECT_AEC=1;
|
|
static constexpr unsigned int EFFECT_NS=2;
|
|
|
|
private:
|
|
jobject javaObject;
|
|
bool running;
|
|
Mutex mutex;
|
|
unsigned int enabledEffects=0;
|
|
|
|
};
|
|
}}
|
|
|
|
#endif //LIBTGVOIP_AUDIOINPUTANDROID_H
|