aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/fmv/oggtheora/yuvtorgba.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-31 09:45:15 +0000
committerEugene Sandulenko2010-10-12 23:21:28 +0000
commitf71295ab6d6899b21809837b6c6bf317a45193ef (patch)
treeeb2e28aed94b138c0f356d8eb5c905a9c3bc3b87 /engines/sword25/fmv/oggtheora/yuvtorgba.h
parentcb95db7cc04a5a3d14f408835cd371e0a0abd4ed (diff)
downloadscummvm-rg350-f71295ab6d6899b21809837b6c6bf317a45193ef.tar.gz
scummvm-rg350-f71295ab6d6899b21809837b6c6bf317a45193ef.tar.bz2
scummvm-rg350-f71295ab6d6899b21809837b6c6bf317a45193ef.zip
Revert "SWORD25: Commit of in-progress MoviePlayer code"
This reverts commit cb95db7cc04a5a3d14f408835cd371e0a0abd4ed. svn-id: r53296
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