summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-openal
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-openal')
-rw-r--r--source/libs/asura-lib-openal/sound.cpp0
-rw-r--r--source/libs/asura-lib-openal/sound.h31
-rw-r--r--source/libs/asura-lib-openal/sound_decode_task.cpp0
-rw-r--r--source/libs/asura-lib-openal/sound_decode_task.h25
-rw-r--r--source/libs/asura-lib-openal/sound_decoder.cpp29
-rw-r--r--source/libs/asura-lib-openal/sound_decoder.h30
6 files changed, 0 insertions, 115 deletions
diff --git a/source/libs/asura-lib-openal/sound.cpp b/source/libs/asura-lib-openal/sound.cpp
deleted file mode 100644
index e69de29..0000000
--- a/source/libs/asura-lib-openal/sound.cpp
+++ /dev/null
diff --git a/source/libs/asura-lib-openal/sound.h b/source/libs/asura-lib-openal/sound.h
deleted file mode 100644
index 6c2d7c2..0000000
--- a/source/libs/asura-lib-openal/sound.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __ASURA_ENGINE_SOUND_H__
-#define __ASURA_ENGINE_SOUND_H__
-
-#include <asura-lib-utils/scripting/portable.hpp>
-
-namespace AsuraEngine
-{
- namespace Audio
- {
-
- ///
- /// Ƶļ
- ///
- class Sound ASURA_FINAL
- : public AEScripting::Portable<Sound>
- {
- public:
-
- Sound();
- ~Sound();
-
- private:
-
-
-
- };
-
- }
-}
-
-#endif \ No newline at end of file
diff --git a/source/libs/asura-lib-openal/sound_decode_task.cpp b/source/libs/asura-lib-openal/sound_decode_task.cpp
deleted file mode 100644
index e69de29..0000000
--- a/source/libs/asura-lib-openal/sound_decode_task.cpp
+++ /dev/null
diff --git a/source/libs/asura-lib-openal/sound_decode_task.h b/source/libs/asura-lib-openal/sound_decode_task.h
deleted file mode 100644
index d39013f..0000000
--- a/source/libs/asura-lib-openal/sound_decode_task.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __ASURA_OPENAL_SOUND_DECODER_TASK_H__
-#define __ASURA_OPENAL_SOUND_DECODER_TASK_H__
-
-#include <asura-lib-utils/threading/thread_task.h>
-
-namespace AsuraEngine
-{
- namespace OpenAL
- {
-
- ///
- /// Ƶļ
- ///
- class SoundDecodeTask : public AEThreading::ThreadTask
- {
- public:
-
- private:
-
- };
-
- }
-}
-
-#endif \ No newline at end of file
diff --git a/source/libs/asura-lib-openal/sound_decoder.cpp b/source/libs/asura-lib-openal/sound_decoder.cpp
deleted file mode 100644
index ad9f761..0000000
--- a/source/libs/asura-lib-openal/sound_decoder.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#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 \ No newline at end of file
diff --git a/source/libs/asura-lib-openal/sound_decoder.h b/source/libs/asura-lib-openal/sound_decoder.h
deleted file mode 100644
index 2a3f087..0000000
--- a/source/libs/asura-lib-openal/sound_decoder.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __ASURA_ENGINE_SOUND_DECODER_H__
-#define __ASURA_ENGINE_SOUND_DECODER_H__
-
-#include <asura-lib-utils/io/data_buffer.h>
-
-#include "sound.h"
-
-namespace AsuraEngine
-{
- namespace Audio
- {
-
- ///
- /// Ƶļ
- ///
- class SoundDecoder
- {
- public:
-
- SoundDecoder();
- virtual ~SoundDecoder();
-
- virtual Sound* Decode(const AEIO::DataBuffer* db);
-
- };
-
- }
-}
-
-#endif \ No newline at end of file