Add interface to set up still image lengths.
[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 #include "ffmpeg_content.h"
28
29 class Content;
30 class FFmpegContent;
31 class FFmpegDecoder;
32 class ImageMagickContent;
33 class ImageMagickDecoder;
34 class SndfileContent;
35 class SndfileDecoder;
36 class Job;
37 class Film;
38
39 class Playlist
40 {
41 public:
42         Playlist ();
43
44         void setup (ContentList);
45
46         ContentAudioFrame audio_length () const;
47         int audio_channels () const;
48         int audio_frame_rate () const;
49         int64_t audio_channel_layout () const;
50         bool has_audio () const;
51         
52         float video_frame_rate () const;
53         libdcp::Size video_size () const;
54         ContentVideoFrame video_length () const;
55
56         enum VideoFrom {
57                 VIDEO_NONE,
58                 VIDEO_FFMPEG,
59                 VIDEO_IMAGEMAGICK
60         };
61
62         enum AudioFrom {
63                 AUDIO_NONE,
64                 AUDIO_FFMPEG,
65                 AUDIO_SNDFILE
66         };
67
68         VideoFrom video_from () const {
69                 return _video_from;
70         }
71
72         AudioFrom audio_from () const {
73                 return _audio_from;
74         }
75
76         boost::shared_ptr<const FFmpegContent> ffmpeg () const {
77                 return _ffmpeg;
78         }
79
80         std::list<boost::shared_ptr<const ImageMagickContent> > imagemagick () const {
81                 return _imagemagick;
82         }
83
84         std::list<boost::shared_ptr<const SndfileContent> > sndfile () const {
85                 return _sndfile;
86         }
87
88         mutable boost::signals2::signal<void ()> Changed;
89         mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int)> ContentChanged;
90         
91 private:
92         void content_changed (boost::weak_ptr<Content>, int);
93         
94         VideoFrom _video_from;
95         AudioFrom _audio_from;
96
97         boost::shared_ptr<const FFmpegContent> _ffmpeg;
98         std::list<boost::shared_ptr<const ImageMagickContent> > _imagemagick;
99         std::list<boost::shared_ptr<const SndfileContent> > _sndfile;
100
101         std::list<boost::signals2::connection> _content_connections;
102 };