aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/oggtheora/theorastate.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/fmv/oggtheora/theorastate.h')
-rw-r--r--engines/sword25/fmv/oggtheora/theorastate.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/engines/sword25/fmv/oggtheora/theorastate.h b/engines/sword25/fmv/oggtheora/theorastate.h
index 07934c26ea..967ca259ad 100644
--- a/engines/sword25/fmv/oggtheora/theorastate.h
+++ b/engines/sword25/fmv/oggtheora/theorastate.h
@@ -42,20 +42,21 @@
#include "sword25/kernel/common.h"
#include <theora/theora.h>
+namespace Sword25 {
+
// -----------------------------------------------------------------------------
-// Klassendefinition
+// Class definitions
// -----------------------------------------------------------------------------
-class BS_TheoraState
-{
+class TheoraState {
public:
- BS_TheoraState();
- virtual ~BS_TheoraState();
+ TheoraState();
+ virtual ~TheoraState();
- int DecodeHeader(ogg_packet * OggPacketPtr);
+ int DecodeHeader(ogg_packet *OggPacketPtr);
int DecodeInit();
- int DecodePacketIn(ogg_packet * OggPacketPtr);
- int DecodeYUVOut(yuv_buffer * YUV);
+ int DecodePacketIn(ogg_packet *OggPacketPtr);
+ int DecodeYUVOut(yuv_buffer *YUV);
double GranuleTime();
const theora_info & GetInfo() const { return m_Info; }
@@ -67,4 +68,6 @@ private:
theora_state m_State;
};
+} // End of namespace Sword25
+
#endif