Compiles; strange hang on adding content to a film.
[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 #include "playlist.h"
31 #include "audio_buffers.h"
32
33 class Job;
34 class Film;
35 class Playlist;
36 class AudioContent;
37 class Decoder;
38
39 /** @class Player
40  *  @brief A class which can `play' a Playlist; emitting its audio and video.
41  */
42  
43 class Player : public VideoSource, public AudioSource, public boost::enable_shared_from_this<Player>
44 {
45 public:
46         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
47
48         void disable_video ();
49         void disable_audio ();
50         void disable_subtitles ();
51
52         bool pass ();
53         bool seek (Time);
54         void seek_back ();
55         void seek_forward ();
56
57         Time last_video () const {
58                 return _last_video;
59         }
60
61 private:
62
63         struct RegionDecoder
64         {
65                 RegionDecoder ()
66                         : last (0)
67                 {}
68                 
69                 Playlist::Region region;
70                 boost::shared_ptr<Decoder> decoder;
71                 Time last;
72         };
73         
74         void process_video (boost::shared_ptr<RegionDecoder>, boost::shared_ptr<const Image>, bool, boost::shared_ptr<Subtitle>, Time);
75         void process_audio (boost::shared_ptr<RegionDecoder>, boost::shared_ptr<const AudioBuffers>, Time);
76         void setup_decoders ();
77         void playlist_changed ();
78         void content_changed (boost::weak_ptr<Content>, int);
79         void emit_black_frame ();
80         void emit_silence (Time);
81
82         boost::shared_ptr<const Film> _film;
83         boost::shared_ptr<const Playlist> _playlist;
84         
85         bool _video;
86         bool _audio;
87         bool _subtitles;
88
89         /** Our decoders are ready to go; if this is false the decoders must be (re-)created before they are used */
90         bool _have_valid_decoders;
91         std::list<boost::shared_ptr<RegionDecoder> > _decoders;
92
93         Time _position;
94         AudioBuffers _audio_buffers;
95         Time _last_video;
96         bool _last_was_black;
97         Time _last_audio;
98 };
99
100 #endif