Various bits and pieces.
[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         void disable_subtitles ();
53
54         bool pass ();
55         void seek (Time);
56         void seek_back ();
57         void seek_forward ();
58
59         Time position () const {
60                 return _position;
61         }
62
63 private:
64
65         void process_video (boost::weak_ptr<Content>, boost::shared_ptr<const Image>, bool, boost::shared_ptr<Subtitle>, Time);
66         void process_audio (boost::weak_ptr<Content>, boost::shared_ptr<const AudioBuffers>, Time);
67         void setup_pieces ();
68         void playlist_changed ();
69         void content_changed (boost::weak_ptr<Content>, int);
70
71         boost::shared_ptr<const Film> _film;
72         boost::shared_ptr<const Playlist> _playlist;
73         
74         bool _video;
75         bool _audio;
76         bool _subtitles;
77
78         /** Our pieces are ready to go; if this is false the pieces must be (re-)created before they are used */
79         bool _have_valid_pieces;
80         std::list<boost::shared_ptr<Piece> > _pieces;
81
82         /** Time of the earliest thing not yet to have been emitted */
83         Time _position;
84         AudioBuffers _audio_buffers;
85         Time _next_audio;
86 };
87
88 #endif