Fix subtitle controls in the viewer.
[dcpomatic.git] / src / lib / player.h
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 #ifndef DCPOMATIC_PLAYER_H
23 #define DCPOMATIC_PLAYER_H
24
25 #include <list>
26 #include <boost/shared_ptr.hpp>
27 #include <boost/enable_shared_from_this.hpp>
28 #include "video_source.h"
29 #include "audio_source.h"
30 #include "video_sink.h"
31 #include "audio_sink.h"
32 #include "playlist.h"
33 #include "audio_buffers.h"
34
35 class Job;
36 class Film;
37 class Playlist;
38 class AudioContent;
39 class Piece;
40
41 /** @class Player
42  *  @brief A class which can `play' a Playlist; emitting its audio and video.
43  */
44  
45 class Player : public VideoSource, public AudioSource, public boost::enable_shared_from_this<Player>
46 {
47 public:
48         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
49
50         void disable_video ();
51         void disable_audio ();
52
53         bool pass ();
54         void seek (Time);
55         void seek_back ();
56         void seek_forward ();
57
58         /** @return position that we are at; ie the time of the next thing we will emit on pass() */
59         Time position () const {
60                 return _position;
61         }
62
63         void set_video_container_size (libdcp::Size);
64
65 private:
66
67         void process_video (boost::weak_ptr<Content>, boost::shared_ptr<const Image>, bool, Time);
68         void process_audio (boost::weak_ptr<Content>, boost::shared_ptr<const AudioBuffers>, Time);
69         void setup_pieces ();
70         void playlist_changed ();
71         void content_changed (boost::weak_ptr<Content>, int);
72         void do_seek (Time, bool);
73         void add_black_piece (Time, Time);
74         void add_silent_piece (Time, Time);
75         void flush ();
76
77         boost::shared_ptr<const Film> _film;
78         boost::shared_ptr<const Playlist> _playlist;
79         
80         bool _video;
81         bool _audio;
82
83         /** Our pieces are ready to go; if this is false the pieces must be (re-)created before they are used */
84         bool _have_valid_pieces;
85         std::list<boost::shared_ptr<Piece> > _pieces;
86         Time _position;
87         AudioBuffers _audio_buffers;
88         Time _next_audio;
89         boost::optional<libdcp::Size> _video_container_size;
90 };
91
92 #endif