| Index: samples/android_sample/jni/sound_service.h
|
| diff --git a/samples/android_sample/jni/sound_service.h b/samples/android_sample/jni/sound_service.h
|
| deleted file mode 100644
|
| index 378a61d298703cd84a138ee3d98ce822ca073dde..0000000000000000000000000000000000000000
|
| --- a/samples/android_sample/jni/sound_service.h
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -#ifndef SOUND_SERVICE_H
|
| -#define SOUND_SERVICE_H
|
| -
|
| -#include <android_native_app_glue.h>
|
| -#include <SLES/OpenSLES.h>
|
| -#include <SLES/OpenSLES_Android.h>
|
| -#include <SLES/OpenSLES_AndroidConfiguration.h>
|
| -#include "jni/types.h"
|
| -
|
| -class SoundService {
|
| - public:
|
| - explicit SoundService(android_app* application);
|
| - int32_t Start();
|
| - void Stop();
|
| -
|
| - int32_t PlayBackground(const char* path);
|
| - void StopBackground();
|
| -
|
| - private:
|
| - android_app* application_;
|
| - SLObjectItf engine_;
|
| - SLEngineItf engine_if_;
|
| - SLObjectItf output_mix_;
|
| - SLObjectItf background_player_;
|
| - SLPlayItf background_player_if_;
|
| - SLSeekItf background_player_seek_if_;
|
| -};
|
| -
|
| -void PlayBackground(const char* path);
|
| -void StopBackground();
|
| -#endif
|
|
|