d38fd63626359a09c41b79c97d3d39927e2a2bf2
[dcpomatic.git] / src / lib / ffmpeg.h
1 /*
2     Copyright (C) 2013-2016 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 "file_group.h"
24 #include "ffmpeg_subtitle_period.h"
25 extern "C" {
26 #include <libavcodec/avcodec.h>
27 }
28 #include <boost/shared_ptr.hpp>
29 #include <boost/thread/mutex.hpp>
30
31 struct AVFormatContext;
32 struct AVFrame;
33 struct AVIOContext;
34
35 class FFmpegContent;
36 class FFmpegAudioStream;
37 class Log;
38
39 class FFmpeg
40 {
41 public:
42         FFmpeg (boost::shared_ptr<const FFmpegContent>);
43         virtual ~FFmpeg ();
44
45         boost::shared_ptr<const FFmpegContent> ffmpeg_content () const {
46                 return _ffmpeg_content;
47         }
48
49         int avio_read (uint8_t *, int);
50         int64_t avio_seek (int64_t, int);
51
52 protected:
53         AVCodecContext* video_codec_context () const;
54         AVCodecContext* subtitle_codec_context () const;
55         ContentTime pts_offset (
56                 std::vector<boost::shared_ptr<FFmpegAudioStream> > audio_streams, boost::optional<ContentTime> first_video, double video_frame_rate
57                 ) const;
58
59         static FFmpegSubtitlePeriod subtitle_period (AVSubtitle const & sub);
60         static std::string subtitle_id (AVSubtitle const & sub);
61         static bool subtitle_starts_image (AVSubtitle const & sub);
62
63         boost::shared_ptr<const FFmpegContent> _ffmpeg_content;
64
65         uint8_t* _avio_buffer;
66         int _avio_buffer_size;
67         AVIOContext* _avio_context;
68         FileGroup _file_group;
69
70         AVFormatContext* _format_context;
71         AVPacket _packet;
72         AVFrame* _frame;
73
74         /** Index of video stream within AVFormatContext */
75         boost::optional<int> _video_stream;
76
77         /* It would appear (though not completely verified) that one must have
78            a mutex around calls to avcodec_open* and avcodec_close... and here
79            it is.
80         */
81         static boost::mutex _mutex;
82
83 private:
84         void setup_general ();
85         void setup_decoders ();
86
87         static void ffmpeg_log_callback (void* ptr, int level, const char* fmt, va_list vl);
88         static boost::weak_ptr<Log> _ffmpeg_log;
89 };
90
91 #endif