summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/Src/OpenSLESStream.h
blob: 839b5dc4b95b94909728982fae2df1b0f7a32de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#ifndef _OPENSLSTREAM_H_
#define _OPENSLSTREAM_H_

#include "Thread.h"
#include "SoundStream.h"

class OpenSLESStream : public SoundStream
{
#ifdef ANDROID
public:
	OpenSLESStream(CMixer *mixer, void *hWnd = NULL)
		: SoundStream(mixer)
	{};

	virtual ~OpenSLESStream() {};

	virtual bool Start();
	virtual void Stop();
	static bool isValid() { return true; }
	virtual bool usesMixer() const { return true; }

private:
	std::thread thread;
	Common::Event soundSyncEvent;
#else
public:
	OpenSLESStream(CMixer *mixer, void *hWnd = NULL): SoundStream(mixer) {}
#endif // HAVE_OPENSL
};

#endif