Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/recorder.h @ 9869

Last change on this file since 9869 was 9869, checked in by bensch, 17 years ago

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 1.5 KB
Line 
1/*!
2 * @file recorder.h
3 *
4 */
5
6#ifndef _RECORDER_H
7#define _RECORDER_H
8
9#include "sdlincl.h"
10
11#ifdef HAVE_AVFORMAT_H
12  #include <avformat.h>
13#else
14  #include <ffmpeg/avformat.h>
15#endif
16
17#include "glincl.h"
18#include "world_entity.h"
19
20class Recorder : public WorldEntity
21{
22  ObjectListDeclaration(Recorder);
23  public:
24    Recorder (const TiXmlElement* root = NULL);
25    virtual ~Recorder ();
26
27    virtual void draw () const;
28    virtual void tick (float dt);
29
30    virtual void loadParams(const TiXmlElement* root);
31
32  private:
33    void initVideo(const std::string& filename);
34    void addVideoStream();
35    void openVideo();
36    void closeVideo();
37    void allocPicture();
38    void writeVideoFrame();
39    void fillYuvImage();
40
41    void setStreamDuration(float duration);
42    void setFPS(float fps);
43
44
45  private:
46    AVFrame*            picture;
47    uint8_t*            buffer;
48    int                 frame_count;
49    int                 buffer_size;
50
51    AVOutputFormat*     output_format;
52    AVFormatContext*    format_context;
53    AVCodecContext*     codec_context;
54    AVCodec*            codec;
55    AVStream*           video_stream;
56    AVPacket            packet;
57    double              video_pts;
58
59    uint8_t*            picture_buf;
60    int                 size;
61
62    int                 height;
63    int                 width;
64    float               time;
65
66    float               stream_duration;
67    float               stream_frame_rate;
68    int                 stream_nb_frames;
69
70    AVFrame*            RGB_frame;
71};
72
73#endif /* _RECORDER_H */
Note: See TracBrowser for help on using the repository browser.