Add missing files.
[dcpomatic.git] / src / lib / player.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 #ifndef DCPOMATIC_PLAYER_H
21 #define DCPOMATIC_PLAYER_H
22
23 #include <list>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/enable_shared_from_this.hpp>
26 #include "video_source.h"
27 #include "audio_source.h"
28 #include "video_sink.h"
29 #include "audio_sink.h"
30
31 class VideoDecoder;
32 class AudioDecoder;
33 class Job;
34 class Film;
35 class Playlist;
36 class AudioContent;
37
38 /** @class Player
39  *  @brief A class which can `play' a Playlist; emitting its audio and video.
40  */
41  
42 class Player : public TimedVideoSource, public TimedAudioSource, public TimedVideoSink, public boost::enable_shared_from_this<Player>
43 {
44 public:
45         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
46
47         void disable_video ();
48         void disable_audio ();
49         void disable_subtitles ();
50
51         bool pass ();
52         void set_progress (boost::shared_ptr<Job>);
53         bool seek (double);
54         void seek_back ();
55         void seek_forward ();
56
57         double last_video_time () const;
58
59 private:
60         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s, double);
61         void process_audio (boost::weak_ptr<const AudioContent>, boost::shared_ptr<AudioBuffers>, double);
62         void setup_decoders ();
63         void playlist_changed ();
64         void content_changed (boost::weak_ptr<Content>, int);
65
66         boost::shared_ptr<const Film> _film;
67         boost::shared_ptr<const Playlist> _playlist;
68         
69         bool _video;
70         bool _audio;
71         bool _subtitles;
72
73         /** Our decoders are ready to go; if this is false the decoders must be (re-)created before they are used */
74         bool _have_valid_decoders;
75         /** Video decoders in order of presentation */
76         std::vector<boost::shared_ptr<VideoDecoder> > _video_decoders;
77         /** Start positions of each video decoder in seconds*/
78         std::vector<double> _video_start;
79         /** Index of current video decoder */
80         size_t _video_decoder;
81         /** Audio decoders in order of presentation (if they are from FFmpeg) */
82         std::vector<boost::shared_ptr<AudioDecoder> > _audio_decoders;
83         /** Start positions of each audio decoder (if they are from FFmpeg) in seconds */
84         std::vector<double> _audio_start;
85         /** Current audio decoder index if we are running them sequentially; otherwise undefined */
86         size_t _sequential_audio_decoder;
87
88         boost::shared_ptr<AudioBuffers> _audio_buffers;
89         boost::optional<double> _audio_time;
90 };
91
92 #endif