Bump version
[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 #include "i18n.h"
29
30 using std::cout;
31 using boost::shared_ptr;
32 using boost::optional;
33
34 VideoDecoder::VideoDecoder (shared_ptr<Film> f, DecodeOptions o)
35         : Decoder (f, o)
36         , _video_frame (0)
37         , _last_source_time (0)
38 {
39
40 }
41
42 /** Called by subclasses to tell the world that some video data is ready.
43  *  We find a subtitle then emit it for listeners.
44  *  @param image frame to emit.
45  *  @param t Time of the frame within the source, in seconds.
46  */
47 void
48 VideoDecoder::emit_video (shared_ptr<Image> image, bool same, double t)
49 {
50         shared_ptr<Subtitle> sub;
51         if (_timed_subtitle && _timed_subtitle->displayed_at (t)) {
52                 sub = _timed_subtitle->subtitle ();
53         }
54
55         Video (image, same, sub, t);
56         ++_video_frame;
57         
58         _last_source_time = t;
59 }
60
61 /** Set up the current subtitle.  This will be put onto frames that
62  *  fit within its time specification.  s may be 0 to say that there
63  *  is no current subtitle.
64  *  @param s New current subtitle, or 0.
65  */
66 void
67 VideoDecoder::emit_subtitle (shared_ptr<TimedSubtitle> s)
68 {
69         _timed_subtitle = s;
70         
71         if (_timed_subtitle) {
72                 Position const p = _timed_subtitle->subtitle()->position ();
73                 _timed_subtitle->subtitle()->set_position (Position (p.x - _film->crop().left, p.y - _film->crop().top));
74         }
75 }
76
77 /** Set which stream of subtitles we should use from our source.
78  *  @param s Stream to use.
79  */
80 void
81 VideoDecoder::set_subtitle_stream (shared_ptr<SubtitleStream> s)
82 {
83         _subtitle_stream = s;
84 }
85
86 void
87 VideoDecoder::set_progress (Job* j) const
88 {
89         assert (j);
90         
91         if (_film->length()) {
92                 j->set_progress (float (_video_frame) / _film->length().get());
93         }
94 }