Runs.
[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
52         void disable_video ();
53
54         bool pass ();
55         void set_progress (boost::shared_ptr<Job>);
56
57 private:
58         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s);
59         void process_audio (boost::shared_ptr<AudioBuffers>);
60         
61         enum {
62                 VIDEO_NONE,
63                 VIDEO_FFMPEG,
64                 VIDEO_IMAGEMAGICK
65         } _video_from;
66         
67         enum {
68                 AUDIO_NONE,
69                 AUDIO_FFMPEG,
70                 AUDIO_SNDFILE
71         } _audio_from;
72
73         boost::shared_ptr<FFmpegContent> _ffmpeg;
74         std::list<boost::shared_ptr<ImageMagickContent> > _imagemagick;
75         std::list<boost::shared_ptr<SndfileContent> > _sndfile;
76
77         boost::shared_ptr<FFmpegDecoder> _ffmpeg_decoder;
78         bool _ffmpeg_decoder_done;
79         std::list<boost::shared_ptr<ImageMagickDecoder> > _imagemagick_decoders;
80         std::list<boost::shared_ptr<ImageMagickDecoder> >::iterator _imagemagick_decoder;
81         std::list<boost::shared_ptr<SndfileDecoder> > _sndfile_decoders;
82 };