Various bits.
[dcpomatic.git] / src / lib / playlist.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 <list>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/enable_shared_from_this.hpp>
23 #include "video_source.h"
24 #include "audio_source.h"
25 #include "video_sink.h"
26 #include "audio_sink.h"
27
28 class Content;
29 class FFmpegContent;
30 class FFmpegDecoder;
31 class ImageMagickContent;
32 class ImageMagickDecoder;
33 class SndfileContent;
34 class SndfileDecoder;
35 class Job;
36 class Film;
37
38 class Playlist
39 {
40 public:
41         Playlist ();
42
43         void setup (std::list<boost::shared_ptr<Content> >);
44
45         ContentAudioFrame audio_length () const;
46         int audio_channels () const;
47         int audio_frame_rate () const;
48         int64_t audio_channel_layout () const;
49         bool has_audio () const;
50         
51         float video_frame_rate () const;
52         libdcp::Size video_size () const;
53         ContentVideoFrame video_length () const;
54
55         enum VideoFrom {
56                 VIDEO_NONE,
57                 VIDEO_FFMPEG,
58                 VIDEO_IMAGEMAGICK
59         };
60
61         enum AudioFrom {
62                 AUDIO_NONE,
63                 AUDIO_FFMPEG,
64                 AUDIO_SNDFILE
65         };
66
67         VideoFrom video_from () const {
68                 return _video_from;
69         }
70
71         AudioFrom audio_from () const {
72                 return _audio_from;
73         }
74
75         boost::shared_ptr<const FFmpegContent> ffmpeg () const {
76                 return _ffmpeg;
77         }
78
79         std::list<boost::shared_ptr<const ImageMagickContent> > imagemagick () const {
80                 return _imagemagick;
81         }
82
83         std::list<boost::shared_ptr<const SndfileContent> > sndfile () const {
84                 return _sndfile;
85         }
86         
87 private:
88         VideoFrom _video_from;
89         AudioFrom _audio_from;
90
91         boost::shared_ptr<const FFmpegContent> _ffmpeg;
92         std::list<boost::shared_ptr<const ImageMagickContent> > _imagemagick;
93         std::list<boost::shared_ptr<const SndfileContent> > _sndfile;
94 };
95
96 class Player : public VideoSource, public AudioSource, public VideoSink, public AudioSink, public boost::enable_shared_from_this<Player>
97 {
98 public:
99         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
100
101         void disable_video ();
102         void disable_audio ();
103         void disable_subtitles ();
104         void disable_video_sync ();
105
106         bool pass ();
107         void set_progress (boost::shared_ptr<Job>);
108         bool seek (double);
109         bool seek_to_last ();
110
111         double last_video_time () const;
112
113 private:
114         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s);
115         void process_audio (boost::shared_ptr<AudioBuffers>);
116         void setup_decoders ();
117
118         boost::shared_ptr<const Film> _film;
119         boost::shared_ptr<const Playlist> _playlist;
120         
121         bool _video;
122         bool _audio;
123         bool _subtitles;
124         
125         bool _have_setup_decoders;
126         boost::shared_ptr<FFmpegDecoder> _ffmpeg_decoder;
127         bool _ffmpeg_decoder_done;
128         std::list<boost::shared_ptr<ImageMagickDecoder> > _imagemagick_decoders;
129         std::list<boost::shared_ptr<ImageMagickDecoder> >::iterator _imagemagick_decoder;
130         std::list<boost::shared_ptr<SndfileDecoder> > _sndfile_decoders;
131
132         bool _video_sync;
133 };