8e1e4e3c59e791abe2fa494e05fe2b7f207620ae
[dcpomatic.git] / src / lib / 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 /** @file  src/decoder.cc
21  *  @brief Parent class for decoders of content.
22  */
23
24 #include <iostream>
25 #include <stdint.h>
26 #include <boost/lexical_cast.hpp>
27 #include "film.h"
28 #include "format.h"
29 #include "job.h"
30 #include "options.h"
31 #include "exceptions.h"
32 #include "image.h"
33 #include "util.h"
34 #include "log.h"
35 #include "decoder.h"
36 #include "delay_line.h"
37 #include "subtitle.h"
38 #include "filter_graph.h"
39
40 using std::string;
41 using std::stringstream;
42 using std::min;
43 using std::pair;
44 using std::list;
45 using boost::shared_ptr;
46 using boost::optional;
47
48 /** @param f Film.
49  *  @param o Options.
50  *  @param j Job that we are running within, or 0
51  */
52 Decoder::Decoder (boost::shared_ptr<Film> f, boost::shared_ptr<const Options> o, Job* j)
53         : _film (f)
54         , _opt (o)
55         , _job (j)
56         , _video_frame (0)
57 {
58         
59 }
60
61 /** Start decoding */
62 void
63 Decoder::go ()
64 {
65         if (_job && !_film->dcp_length()) {
66                 _job->set_progress_unknown ();
67         }
68
69         while (pass () == false) {
70                 if (_job && _film->dcp_length()) {
71                         _job->set_progress (float (_video_frame) / _film->length().get());
72                 }
73         }
74 }
75
76 /** Called by subclasses to tell the world that some video data is ready.
77  *  We do some post-processing / filtering then emit it for listeners.
78  *  @param frame to decode; caller manages memory.
79  */
80 void
81 Decoder::emit_video (shared_ptr<Image> image)
82 {
83         shared_ptr<Subtitle> sub;
84         if (_timed_subtitle && _timed_subtitle->displayed_at (double (video_frame()) / _film->frames_per_second())) {
85                 sub = _timed_subtitle->subtitle ();
86         }
87
88         Video (image, sub);
89 }
90
91 void
92 Decoder::repeat_last_video ()
93 {
94         if (!_last_image) {
95                 _last_image.reset (new CompactImage (pixel_format(), native_size()));
96                 _last_image->make_black ();
97         }
98
99         emit_video (_last_image, _last_subtitle);
100 }
101
102 void
103 Decoder::emit_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
104 {
105         TIMING ("Decoder emits %1", _video_frame);
106         Video (image, sub);
107         ++_video_frame;
108
109         _last_image = image;
110         _last_subtitle = sub;
111 }
112
113 void
114 Decoder::emit_subtitle (shared_ptr<TimedSubtitle> s)
115 {
116         _timed_subtitle = s;
117         
118         if (_timed_subtitle && _opt->apply_crop) {
119                 Position const p = _timed_subtitle->subtitle()->position ();
120                 _timed_subtitle->subtitle()->set_position (Position (p.x - _film->crop().left, p.y - _film->crop().top));
121         }
122 }
123
124 void
125 Decoder::set_audio_stream (optional<AudioStream> s)
126 {
127         _audio_stream = s;
128 }
129
130 void
131 Decoder::set_subtitle_stream (optional<SubtitleStream> s)
132 {
133         _subtitle_stream = s;
134 }