d374dc98c8ec131df3aadaa68c4fe03b1f5f00b1
[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 : public VideoSource, public AudioSource, public VideoSink, public AudioSink, public boost::enable_shared_from_this<Playlist>
39 {
40 public:
41         Playlist (boost::shared_ptr<const Film>, std::list<boost::shared_ptr<Content> >);
42
43         ContentAudioFrame audio_length () const;
44         int audio_channels () const;
45         int audio_frame_rate () const;
46         int64_t audio_channel_layout () const;
47         bool has_audio () const;
48         
49         float video_frame_rate () const;
50         libdcp::Size video_size () const;
51         ContentVideoFrame video_length () const;
52
53         void disable_video ();
54         void disable_audio ();
55         void disable_subtitles ();
56         void disable_video_sync ();
57
58         bool pass ();
59         void set_progress (boost::shared_ptr<Job>);
60         bool seek (double);
61         bool seek_to_last ();
62
63 private:
64         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s);
65         void process_audio (boost::shared_ptr<AudioBuffers>);
66         void setup_decoders ();
67         
68         boost::shared_ptr<const Film> _film;
69
70         enum {
71                 VIDEO_NONE,
72                 VIDEO_FFMPEG,
73                 VIDEO_IMAGEMAGICK
74         } _video_from;
75         
76         enum {
77                 AUDIO_NONE,
78                 AUDIO_FFMPEG,
79                 AUDIO_SNDFILE
80         } _audio_from;
81
82         boost::shared_ptr<FFmpegContent> _ffmpeg;
83         std::list<boost::shared_ptr<ImageMagickContent> > _imagemagick;
84         std::list<boost::shared_ptr<SndfileContent> > _sndfile;
85
86         bool _have_setup_decoders;
87         boost::shared_ptr<FFmpegDecoder> _ffmpeg_decoder;
88         bool _ffmpeg_decoder_done;
89         std::list<boost::shared_ptr<ImageMagickDecoder> > _imagemagick_decoders;
90         std::list<boost::shared_ptr<ImageMagickDecoder> >::iterator _imagemagick_decoder;
91         std::list<boost::shared_ptr<SndfileDecoder> > _sndfile_decoders;
92
93         bool _video_sync;
94 };