Merge master.
[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 DVDOMATIC_PLAYER_H
21 #define DVDOMATIC_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 FFmpegDecoder;
32 class ImageMagickDecoder;
33 class SndfileDecoder;
34 class Job;
35 class Film;
36 class Playlist;
37 class AudioContent;
38
39 class Player : public VideoSource, public AudioSource, public VideoSink, public boost::enable_shared_from_this<Player>
40 {
41 public:
42         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>);
43
44         void disable_video ();
45         void disable_audio ();
46         void disable_subtitles ();
47         void disable_video_sync ();
48
49         bool pass ();
50         void set_progress (boost::shared_ptr<Job>);
51         bool seek (double);
52         bool seek_to_last ();
53
54         double last_video_time () const;
55
56 private:
57         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s);
58         void process_audio (boost::weak_ptr<const AudioContent>, boost::shared_ptr<AudioBuffers>);
59         void setup_decoders ();
60         void playlist_changed ();
61         void content_changed (boost::weak_ptr<Content>, int);
62
63         boost::shared_ptr<const Film> _film;
64         boost::shared_ptr<const Playlist> _playlist;
65         
66         bool _video;
67         bool _audio;
68         bool _subtitles;
69         
70         bool _have_valid_decoders;
71         boost::shared_ptr<FFmpegDecoder> _ffmpeg_decoder;
72         bool _ffmpeg_decoder_done;
73         std::list<boost::shared_ptr<ImageMagickDecoder> > _imagemagick_decoders;
74         std::list<boost::shared_ptr<ImageMagickDecoder> >::iterator _imagemagick_decoder;
75         std::list<boost::shared_ptr<SndfileDecoder> > _sndfile_decoders;
76
77         boost::shared_ptr<AudioBuffers> _sndfile_buffers;
78
79         bool _video_sync;
80 };
81
82 #endif