2020-03-30 12:00:09 +00: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>
|
|
|
|
|
2020-04-24 09:21:58 +00:00
|
|
|
namespace tgvoip
|
|
|
|
{
|
|
|
|
namespace audio
|
|
|
|
{
|
|
|
|
class OpenSLEngineWrapper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static SLEngineItf CreateEngine();
|
|
|
|
static void DestroyEngine();
|
2020-03-30 12:00:09 +00:00
|
|
|
|
2020-04-24 09:21:58 +00:00
|
|
|
private:
|
|
|
|
static SLObjectItf sharedEngineObj;
|
|
|
|
static SLEngineItf sharedEngine;
|
|
|
|
static int count;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 12:00:09 +00:00
|
|
|
|
|
|
|
#endif //LIBTGVOIP_OPENSLENGINEWRAPPER_H
|