Hacks.
[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 "playlist.h"
27 #include "audio_buffers.h"
28 #include "content.h"
29
30 class Job;
31 class Film;
32 class Playlist;
33 class AudioContent;
34 class Piece;
35 class Image;
36 class Resampler;
37
38 /** @class Player
39  *  @brief A class which can `play' a Playlist; emitting its audio and video.
40  */
41  
42 class Player : 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
50         bool pass ();
51         void seek (Time);
52         void seek_back ();
53
54         /** @return position that we are at; ie the time of the next thing we will emit on pass() */
55         Time position () const {
56                 return _position;
57         }
58
59         void set_video_container_size (libdcp::Size);
60
61         /** Emitted when a video frame is ready.
62          *  First parameter is the video image.
63          *  Second parameter is true if the image is the same as the last one that was emitted.
64          *  Third parameter is the time.
65          */
66         boost::signals2::signal<void (boost::shared_ptr<const Image>, bool, Time)> Video;
67         
68         /** Emitted when some audio data is ready */
69         boost::signals2::signal<void (boost::shared_ptr<const AudioBuffers>, Time)> Audio;
70
71 private:
72
73         void process_video (boost::weak_ptr<Piece>, boost::shared_ptr<const Image>, bool, VideoContent::Frame);
74         void process_audio (boost::weak_ptr<Piece>, boost::shared_ptr<const AudioBuffers>, AudioContent::Frame);
75         void setup_pieces ();
76         void playlist_changed ();
77         void content_changed (boost::weak_ptr<Content>, int);
78         void do_seek (Time, bool);
79         void add_black_piece (Time, Time);
80         void add_silent_piece (Time, Time);
81         void flush ();
82         boost::shared_ptr<Resampler> resampler (boost::shared_ptr<AudioContent>);
83
84         boost::shared_ptr<const Film> _film;
85         boost::shared_ptr<const Playlist> _playlist;
86         
87         bool _video;
88         bool _audio;
89
90         /** Our pieces are ready to go; if this is false the pieces must be (re-)created before they are used */
91         bool _have_valid_pieces;
92         std::list<boost::shared_ptr<Piece> > _pieces;
93         Time _position;
94         AudioBuffers _audio_buffers;
95         Time _next_audio;
96         boost::optional<libdcp::Size> _video_container_size;
97         std::map<boost::shared_ptr<AudioContent>, boost::shared_ptr<Resampler> > _resamplers;
98 };
99
100 #endif