aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/oggtheora/yuvtorgba.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/fmv/oggtheora/yuvtorgba.h')
-rw-r--r--engines/sword25/fmv/oggtheora/yuvtorgba.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/engines/sword25/fmv/oggtheora/yuvtorgba.h b/engines/sword25/fmv/oggtheora/yuvtorgba.h
index 6593254ff9..5b0332a807 100644
--- a/engines/sword25/fmv/oggtheora/yuvtorgba.h
+++ b/engines/sword25/fmv/oggtheora/yuvtorgba.h
@@ -39,21 +39,19 @@
// Includes
// -----------------------------------------------------------------------------
-#include "sword25/kernel/memlog_off.h"
-#include <vector>
-#include "sword25/kernel/memlog_on.h"
-
#include "sword25/kernel/common.h"
-#include "theora/theora.h"
+#include <theora/theora.h>
+namespace Sword25 {
// -----------------------------------------------------------------------------
// Klassendefinition
// -----------------------------------------------------------------------------
-class BS_YUVtoRGBA
-{
+class BS_YUVtoRGBA {
public:
- static void YUVtoRGBA(yuv_buffer & YUVBuffer, const theora_info & TheoraInfo, std::vector<unsigned char> & Pixels);
+ static void YUVtoRGBA(yuv_buffer &YUVBuffer, const theora_info &TheoraInfo, byte *Pixels, int PixelsSize);
};
+} // End of namespace Sword25
+
#endif