aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/codec.h
diff options
context:
space:
mode:
authorGravatar Elvio Basello2010-12-29 20:49:54 +0000
committerGravatar Elvio Basello2010-12-29 20:49:54 +0000
commit957971067398248cc386821c8fca0267d840665b (patch)
tree9529f5888b763597c1e0ac548ee203f6cbfa64bd /src/modules/dcc/codec.h
parentImplemented 3-stages locking in popups (unlocked/softlocked for epilogue,prol... (diff)
downloadKVIrc-957971067398248cc386821c8fca0267d840665b.tar.gz
KVIrc-957971067398248cc386821c8fca0267d840665b.tar.bz2
KVIrc-957971067398248cc386821c8fca0267d840665b.zip
yet more splitting
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5262 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/codec.h')
-rw-r--r--src/modules/dcc/codec.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/modules/dcc/codec.h b/src/modules/dcc/codec.h
index fe4955161..16897304c 100644
--- a/src/modules/dcc/codec.h
+++ b/src/modules/dcc/codec.h
@@ -25,9 +25,13 @@
//=============================================================================
#include "KviCString.h"
-#include "KviTheoraDecoder.h"
#include "KviDataBuffer.h"
+#ifndef COMPILE_DISABLE_OGG_THEORA
+ #include "KviOggTheoraDecoder.h"
+ #include "KviOggTheoraEncoder.h"
+#endif
+
class KviDccVoiceCodec
{
public:
@@ -97,8 +101,8 @@ public:
virtual int encodedFrameSize();
virtual int decodedFrameSize();
private:
- KviTheoraEncoder *m_pEncoder;
- KviTheoraDecoder *m_pDecoder;
+ KviOggTheoraEncoder * m_pEncoder;
+ KviOggTheoraDecoder * m_pDecoder;
};
#endif // COMPILE_DISABLE_OGG_THEORA
#endif //_CODEC_H_