Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef GRIM_MPEG_PLAYER_H
00024 #define GRIM_MPEG_PLAYER_H
00025
00026 #include "engines/grim/movie/movie.h"
00027
00028 #ifdef USE_MPEG2
00029
00030 namespace Grim {
00031
00032 class MpegPlayer : public MoviePlayer {
00033 public:
00034 MpegPlayer();
00035 private:
00036 bool loadFile(const Common::String &filename) override;
00037
00038 };
00039
00040 }
00041
00042 #endif // USE_MPEG2
00043
00044 #endif