Remove now-unused job dependencies.
[dcpomatic.git] / src / lib / transcode_job.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/transcode_job.cc
21  *  @brief A job which transcodes from one format to another.
22  */
23
24 #include <iostream>
25 #include <iomanip>
26 #include "transcode_job.h"
27 #include "film.h"
28 #include "format.h"
29 #include "transcoder.h"
30 #include "log.h"
31 #include "encoder.h"
32
33 using std::string;
34 using std::stringstream;
35 using std::fixed;
36 using std::setprecision;
37 using boost::shared_ptr;
38
39 /** @param s Film to use.
40  *  @param o Decode options.
41  */
42 TranscodeJob::TranscodeJob (shared_ptr<Film> f, DecodeOptions o)
43         : Job (f)
44         , _decode_opt (o)
45 {
46         
47 }
48
49 string
50 TranscodeJob::name () const
51 {
52         return String::compose ("Transcode %1", _film->name());
53 }
54
55 void
56 TranscodeJob::run ()
57 {
58         try {
59
60                 _film->log()->log ("Transcode job starting");
61                 _film->log()->log (String::compose ("Audio delay is %1ms", _film->audio_delay()));
62
63                 _encoder.reset (new Encoder (_film));
64                 Transcoder w (_film, _decode_opt, this, _encoder);
65                 w.go ();
66                 set_progress (1);
67                 set_state (FINISHED_OK);
68
69                 _film->set_dcp_intrinsic_duration (_encoder->video_frames_out ());
70
71                 _film->log()->log ("Transcode job completed successfully");
72                 _film->log()->log (String::compose ("DCP intrinsic duration is %1", _encoder->video_frames_out()));
73
74         } catch (std::exception& e) {
75
76                 set_progress (1);
77                 set_state (FINISHED_ERROR);
78                 _film->log()->log (String::compose ("Transcode job failed (%1)", e.what()));
79
80                 throw;
81         }
82 }
83
84 string
85 TranscodeJob::status () const
86 {
87         if (!_encoder) {
88                 return "0%";
89         }
90
91         float const fps = _encoder->current_frames_per_second ();
92         if (fps == 0) {
93                 return Job::status ();
94         }
95
96         stringstream s;
97
98         s << Job::status ();
99
100         if (!finished ()) {
101                 s << "; " << fixed << setprecision (1) << fps << " frames per second";
102         }
103         
104         return s.str ();
105 }
106
107 int
108 TranscodeJob::remaining_time () const
109 {
110         float fps = _encoder->current_frames_per_second ();
111         if (fps == 0) {
112                 return 0;
113         }
114
115         if (!_film->length()) {
116                 return 0;
117         }
118
119         /* Compute approximate proposed length here, as it's only here that we need it */
120         int length = _film->length().get();
121         DCPFrameRate const dfr (_film->frames_per_second ());
122         if (dfr.skip) {
123                 length /= 2;
124         }
125         /* If we are repeating it shouldn't affect transcode time, so don't take it into account */
126
127         /* We assume that dcp_length() is valid, if it is set */
128         int const left = length - _encoder->video_frames_out();
129         return left / fps;
130 }