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, 8 insertions, 6 deletions
diff --git a/engines/sword25/fmv/oggtheora/yuvtorgba.h b/engines/sword25/fmv/oggtheora/yuvtorgba.h
index 5b0332a807..6593254ff9 100644
--- a/engines/sword25/fmv/oggtheora/yuvtorgba.h
+++ b/engines/sword25/fmv/oggtheora/yuvtorgba.h
@@ -39,19 +39,21 @@
// 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, byte *Pixels, int PixelsSize);
+ static void YUVtoRGBA(yuv_buffer & YUVBuffer, const theora_info & TheoraInfo, std::vector<unsigned char> & Pixels);
};
-} // End of namespace Sword25
-
#endif