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, 8 insertions, 11 deletions
diff --git a/engines/sword25/fmv/oggtheora/theorastate.h b/engines/sword25/fmv/oggtheora/theorastate.h
index 967ca259ad..07934c26ea 100644
--- a/engines/sword25/fmv/oggtheora/theorastate.h
+++ b/engines/sword25/fmv/oggtheora/theorastate.h
@@ -42,21 +42,20 @@
#include "sword25/kernel/common.h"
#include <theora/theora.h>
-namespace Sword25 {
-
// -----------------------------------------------------------------------------
-// Class definitions
+// Klassendefinition
// -----------------------------------------------------------------------------
-class TheoraState {
+class BS_TheoraState
+{
public:
- TheoraState();
- virtual ~TheoraState();
+ BS_TheoraState();
+ virtual ~BS_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; }
@@ -68,6 +67,4 @@ private:
theora_state m_State;
};
-} // End of namespace Sword25
-
#endif