aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/sound.h
diff options
context:
space:
mode:
authorNipun Garg2019-08-07 22:31:49 +0530
committerEugene Sandulenko2019-09-03 17:17:32 +0200
commit6581e482300b0665a5af5aa75c5bf87cd33228ed (patch)
treeaee57d3acc76269ccdead56606bd728f84b5566c /engines/hdb/sound.h
parentc95682dc5015f7975581d1082ccad54dc32f0caf (diff)
downloadscummvm-rg350-6581e482300b0665a5af5aa75c5bf87cd33228ed.tar.gz
scummvm-rg350-6581e482300b0665a5af5aa75c5bf87cd33228ed.tar.bz2
scummvm-rg350-6581e482300b0665a5af5aa75c5bf87cd33228ed.zip
HDB: Add OGG Support for Linux
Diffstat (limited to 'engines/hdb/sound.h')
-rw-r--r--engines/hdb/sound.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h
index 516df9b3fd..c9c2eedb37 100644
--- a/engines/hdb/sound.h
+++ b/engines/hdb/sound.h
@@ -51,6 +51,7 @@
#include "audio/mixer.h"
#include "audio/decoders/wave.h"
#include "audio/decoders/mp3.h"
+#include "audio/decoders/vorbis.h"
namespace HDB {
@@ -1443,7 +1444,8 @@ enum SndMem {
enum SndType {
SNDTYPE_NONE = 0,
SNDTYPE_WAV = -1,
- SNDTYPE_MP3 = 1
+ SNDTYPE_MP3 = 1,
+ SNDTYPE_OGG = 2
};
struct SoundCache {