1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 17:51:06 +01:00
libtgvoip/os/android/OpenSLEngineWrapper.h

27 lines
633 B
C
Raw Normal View History

2017-02-02 17:24:40 +01:00
//
// 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_OPENSLENGINEWRAPPER_H
#define LIBTGVOIP_OPENSLENGINEWRAPPER_H
#include <SLES/OpenSLES.h>
#include <SLES/OpenSLES_Android.h>
namespace tgvoip{ namespace audio{
class OpenSLEngineWrapper{
2017-02-02 17:24:40 +01:00
public:
static SLEngineItf CreateEngine();
static void DestroyEngine();
private:
static SLObjectItf sharedEngineObj;
static SLEngineItf sharedEngine;
static int count;
};
}}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_OPENSLENGINEWRAPPER_H