Merge master.
[dcpomatic.git] / src / lib / ffmpeg.h
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_FFMPEG_H
21 #define DCPOMATIC_FFMPEG_H
22
23 #include <vector>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/thread/mutex.hpp>
26 extern "C" {
27 #include <libavcodec/avcodec.h>
28 }
29 #include "file_group.h"
30
31 struct AVFilterGraph;
32 struct AVCodecContext;
33 struct AVFilterContext;
34 struct AVFormatContext;
35 struct AVFrame;
36 struct AVBufferContext;
37 struct AVCodec;
38 struct AVStream;
39 struct AVIOContext;
40
41 class FFmpegContent;
42
43 class FFmpeg
44 {
45 public:
46         FFmpeg (boost::shared_ptr<const FFmpegContent>);
47         virtual ~FFmpeg ();
48
49         boost::shared_ptr<const FFmpegContent> ffmpeg_content () const {
50                 return _ffmpeg_content;
51         }
52
53         int avio_read (uint8_t *, int);
54         int64_t avio_seek (int64_t, int);
55
56 protected:
57         AVCodecContext* video_codec_context () const;
58         AVCodecContext* audio_codec_context () const;
59         
60         boost::shared_ptr<const FFmpegContent> _ffmpeg_content;
61
62         uint8_t* _avio_buffer;
63         int _avio_buffer_size;
64         AVIOContext* _avio_context;
65         FileGroup _file_group;
66         
67         AVFormatContext* _format_context;
68         AVPacket _packet;
69         AVFrame* _frame;
70
71         /** Index of video stream within AVFormatContext */
72         int _video_stream;
73
74         /* It would appear (though not completely verified) that one must have
75            a mutex around calls to avcodec_open* and avcodec_close... and here
76            it is.
77         */
78         static boost::mutex _mutex;
79
80 private:
81         void setup_general ();
82         void setup_decoders ();
83 };
84
85 #endif