summaryrefslogtreecommitdiff
path: root/source/modules/asura-openal/audio/sound_decoder.cpp
blob: ad9f761e5c2e28dae1213f26d914d5c81738ebe1 (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
#ifndef __ASURA_ENGINE_SOUND_DECODER_H__
#define __ASURA_ENGINE_SOUND_DECODER_H__

#include "Sound.h"
#include "FileSystem/DataBuffer.h"

namespace AsuraEngine
{
	namespace Audio
	{

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

			SoundDecoder();
			virtual ~SoundDecoder();

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

		};

	}
}

#endif