00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00031 #if ! defined( FFOSTREAM_HH )
00032 #define FFOSTREAM_HH
00033
00034
00035 #include <string>
00036
00037
00038 #include "libpiave/piave_base.hh"
00039 #include "libpiave/avstream.hh"
00040
00041 #include "ffmpeg.hh"
00042
00043 namespace PIAVE {
00044
00050 class OutFFMpegStream : public OutAVFStream
00051 {
00052 public:
00053 OutFFMpegStream( const std::string& fileName );
00054 virtual ~OutFFMpegStream();
00055 virtual void putFrame( Frame & f );
00056
00057 private:
00058 void initEncoder();
00059
00060 private:
00061 AVCodec * _avCodec;
00062 AVCodecContext _avCodecContext;
00063 FILE * _file;
00064 AVPicture _picture;
00065 static const int OUTBUFSIZE = 100000;
00066 uint8_t * _picture_buf;
00067 uint8_t _outbuf[ OUTBUFSIZE ];
00068 };
00069
00070 }
00071
00072
00073 #endif