f4501bbf3e5e5672033b88f868ddbc049907fd49
[dcpomatic.git] / src / lib / video_decoder.cc
1 /*
2     Copyright (C) 2012 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 #include "video_decoder.h"
21 #include "subtitle.h"
22 #include "film.h"
23 #include "image.h"
24 #include "log.h"
25 #include "options.h"
26 #include "job.h"
27
28 using boost::shared_ptr;
29 using boost::optional;
30
31 VideoDecoder::VideoDecoder (shared_ptr<Film> f, shared_ptr<const DecodeOptions> o, Job* j)
32         : Decoder (f, o, j)
33         , _video_frame (0)
34         , _last_source_frame (0)
35 {
36
37 }
38
39 /** Called by subclasses to tell the world that some video data is ready.
40  *  We find a subtitle then emit it for listeners.
41  *  @param image frame to emit.
42  *  @param f Frame within the source.
43  */
44 void
45 VideoDecoder::emit_video (shared_ptr<Image> image, SourceFrame f)
46 {
47         shared_ptr<Subtitle> sub;
48         if (_timed_subtitle && _timed_subtitle->displayed_at (f / _film->frames_per_second())) {
49                 _film->log()->log (String::compose ("putting subtitle using %1 instead of %2", f, video_frame()));
50                 sub = _timed_subtitle->subtitle ();
51         }
52
53         signal_video (image, sub);
54         _last_source_frame = f;
55 }
56
57 void
58 VideoDecoder::repeat_last_video ()
59 {
60         if (!_last_image) {
61                 _last_image.reset (new SimpleImage (pixel_format(), native_size(), false));
62                 _last_image->make_black ();
63         }
64
65         signal_video (_last_image, _last_subtitle);
66 }
67
68 void
69 VideoDecoder::signal_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
70 {
71         TIMING ("Decoder emits %1", _video_frame);
72         Video (image, sub);
73         ++_video_frame;
74
75         _last_image = image;
76         _last_subtitle = sub;
77 }
78
79 void
80 VideoDecoder::emit_subtitle (shared_ptr<TimedSubtitle> s)
81 {
82         _timed_subtitle = s;
83         
84         if (_timed_subtitle) {
85                 Position const p = _timed_subtitle->subtitle()->position ();
86                 _timed_subtitle->subtitle()->set_position (Position (p.x - _film->crop().left, p.y - _film->crop().top));
87         }
88 }
89
90 void
91 VideoDecoder::set_subtitle_stream (shared_ptr<SubtitleStream> s)
92 {
93         _subtitle_stream = s;
94 }
95
96 void
97 VideoDecoder::set_progress () const
98 {
99         if (_job && _film->length()) {
100                 _job->set_progress (float (_video_frame) / _film->length().get());
101         }
102 }