533fdcf1a435d6aeb88eb298285ef6843c40bec4
[dcpomatic.git] / src / lib / video_decoder.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2012 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 #include "video_decoder.h"
23 #include "subtitle.h"
24 #include "film.h"
25 #include "image.h"
26 #include "log.h"
27 #include "job.h"
28
29 #include "i18n.h"
30
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::optional;
34
35 VideoDecoder::VideoDecoder (shared_ptr<const Film> f)
36         : Decoder (f)
37         , _video_frame (0)
38         , _last_content_time (0)
39 {
40
41 }
42
43 /** Called by subclasses to tell the world that some video data is ready.
44  *  We find a subtitle then emit it for listeners.
45  *  @param image frame to emit.
46  *  @param t Time of the frame within the source.
47  */
48 void
49 VideoDecoder::emit_video (shared_ptr<Image> image, bool same, Time t)
50 {
51         shared_ptr<Subtitle> sub;
52         if (_timed_subtitle && _timed_subtitle->displayed_at (t)) {
53                 sub = _timed_subtitle->subtitle ();
54         }
55
56         TIMING (N_("Decoder emits %1"), _video_frame);
57         Video (image, same, sub, t);
58         ++_video_frame;
59
60         _last_content_time = t;
61 }
62
63 /** Set up the current subtitle.  This will be put onto frames that
64  *  fit within its time specification.  s may be 0 to say that there
65  *  is no current subtitle.
66  *  @param s New current subtitle, or 0.
67  */
68 void
69 VideoDecoder::emit_subtitle (shared_ptr<TimedSubtitle> s)
70 {
71         _timed_subtitle = s;
72         
73         if (_timed_subtitle) {
74                 Position const p = _timed_subtitle->subtitle()->position ();
75                 _timed_subtitle->subtitle()->set_position (Position (p.x - _film->crop().left, p.y - _film->crop().top));
76         }
77 }
78
79 void
80 VideoDecoder::set_progress (Job* j) const
81 {
82         assert (j);
83
84         if (_film->length()) {
85                 j->set_progress (float (_video_frame) / _film->time_to_video_frames (_film->length()));
86         }
87 }