monkey2_glue.h 590 B

123456789101112131415161718192021
  1. #ifndef BB_THEORAPLAYER_GLUE_H
  2. #define BB_THEORAPLAYER_GLUE_H
  3. #include <bbmonkey.h>
  4. namespace theoraplayer{
  5. class Manager;
  6. class VideoClip;
  7. class MemoryDataSource;
  8. }
  9. theoraplayer::Manager *bb_theoraplayer_getManager();
  10. theoraplayer::VideoClip *bb_theoraplayer_createVideoClip( theoraplayer::Manager *self,const char *filename );
  11. theoraplayer::VideoClip *bb_theoraplayer_createVideoClip( theoraplayer::Manager *self,const void *data,int length );
  12. theoraplayer::MemoryDataSource *bb_theoraplayer_createMemoryDataSource( const void *data,int length,const char *formatName );
  13. #endif