summaryrefslogtreecommitdiff
path: root/source/modules/asura-openal/Audio/SoundDecoder.h
blob: 8392a0303d74dba146e316ac7ce422d1a8b18f09 (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
#ifndef __ASURA_ENGINE_SOUND_DECODER_H__
#define __ASURA_ENGINE_SOUND_DECODER_H__

#include <asura-base/FileSystem/DataBuffer.h>

#include "sound.h"

namespace AsuraEngine
{
	namespace Audio
	{

		///
		/// Ƶļ
		/// 
		class SoundDecoder
		{
		public:

			SoundDecoder();
			virtual ~SoundDecoder();

			virtual Sound* Decode(const AEFileSystem::DataBuffer* db);

		};

	}
}

#endif