| 
                Last change
                  on this file since 6579 was
                  6532,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: merged branches/movie_play to the trunk. no conflicts, but a minor virtual function  
 
           | 
        
        | 
            File size:
            932 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file media_container.h | 
|---|
| 3 |   *  Manages the media files | 
|---|
| 4 |  | 
|---|
| 5 | */ | 
|---|
| 6 |  | 
|---|
| 7 | #ifndef _MEDIA_CONTAINER | 
|---|
| 8 | #define _MEDIA_CONTAINER | 
|---|
| 9 |  | 
|---|
| 10 | #include <SDL.h> | 
|---|
| 11 |  | 
|---|
| 12 | #ifdef HAVE_AVFORMAT_H | 
|---|
| 13 |   #include <avformat.h> | 
|---|
| 14 | #else | 
|---|
| 15 |   #include <ffmpeg/avformat.h> | 
|---|
| 16 | #endif | 
|---|
| 17 |  | 
|---|
| 18 | /* include base_object.h since all classes are derived from this one */ | 
|---|
| 19 | #include "base_object.h" | 
|---|
| 20 | #include "texture_sequence.h" | 
|---|
| 21 |  | 
|---|
| 22 | #include "glincl.h" | 
|---|
| 23 |  | 
|---|
| 24 | class MediaContainer : public TextureSequence | 
|---|
| 25 | { | 
|---|
| 26 |  | 
|---|
| 27 | private: | 
|---|
| 28 |  | 
|---|
| 29 |   AVFormatContext* format_context; | 
|---|
| 30 |   AVCodecContext* codec_context; | 
|---|
| 31 |   AVCodec* codec; | 
|---|
| 32 |   AVFrame* frame; | 
|---|
| 33 |   AVPacket packet; | 
|---|
| 34 |   AVFrame* RGB_frame; | 
|---|
| 35 |  | 
|---|
| 36 |   GLuint texture; | 
|---|
| 37 |   uint8_t* data; | 
|---|
| 38 |   uint8_t* buffer; | 
|---|
| 39 |   int num_bytes; | 
|---|
| 40 |   int video_stream; | 
|---|
| 41 |   double fps; | 
|---|
| 42 |  | 
|---|
| 43 | public: | 
|---|
| 44 |  | 
|---|
| 45 |   MediaContainer(const char* filename); | 
|---|
| 46 |   MediaContainer(); | 
|---|
| 47 |   ~MediaContainer(); | 
|---|
| 48 |  | 
|---|
| 49 |   bool loadMedia(const char* filename); | 
|---|
| 50 |   void loadFrames(); | 
|---|
| 51 |  | 
|---|
| 52 |   double getFPS(); | 
|---|
| 53 |  | 
|---|
| 54 | private: | 
|---|
| 55 |    | 
|---|
| 56 |   GLuint getNextFrame(); | 
|---|
| 57 |  | 
|---|
| 58 | }; | 
|---|
| 59 |  | 
|---|
| 60 |  | 
|---|
| 61 | #endif /* _MEDIA_CONTAINER */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.