Split examiner parts off decoder.
[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 #include <vector>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/thread/mutex.hpp>
23 extern "C" {
24 #include <libavcodec/avcodec.h>
25 }
26
27 struct AVFilterGraph;
28 struct AVCodecContext;
29 struct AVFilterContext;
30 struct AVFormatContext;
31 struct AVFrame;
32 struct AVBufferContext;
33 struct AVCodec;
34 struct AVStream;
35
36 class FFmpegContent;
37
38 class FFmpeg
39 {
40 public:
41         FFmpeg (boost::shared_ptr<const FFmpegContent>);
42         virtual ~FFmpeg ();
43
44         boost::shared_ptr<const FFmpegContent> ffmpeg_content () const {
45                 return _ffmpeg_content;
46         }
47
48 protected:
49         boost::shared_ptr<const FFmpegContent> _ffmpeg_content;
50         AVFormatContext* _format_context;
51         AVPacket _packet;
52         AVFrame* _frame;
53         int _video_stream;
54
55         AVCodecContext* _video_codec_context;
56         AVCodec* _video_codec;
57         AVCodecContext* _audio_codec_context;    ///< may be 0 if there is no audio
58         AVCodec* _audio_codec;                   ///< may be 0 if there is no audio
59
60         /* It would appear (though not completely verified) that one must have
61            a mutex around calls to avcodec_open* and avcodec_close... and here
62            it is.
63         */
64         static boost::mutex _mutex;
65
66 private:
67         void setup_general ();
68         void setup_video ();
69         void setup_audio ();
70 };