6dd74c36c6ee9fd62dcc6eb31f1a8eaa3b045094
[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  *  @param req Job that must be completed before this job is run.
42  */
43 TranscodeJob::TranscodeJob (shared_ptr<Film> f, DecodeOptions o, shared_ptr<Job> req)
44         : Job (f, req)
45         , _decode_opt (o)
46 {
47         
48 }
49
50 string
51 TranscodeJob::name () const
52 {
53         return String::compose ("Transcode %1", _film->name());
54 }
55
56 void
57 TranscodeJob::run ()
58 {
59         try {
60
61                 _film->log()->log ("Transcode job starting");
62                 _film->log()->log (String::compose ("Audio delay is %1ms", _film->audio_delay()));
63
64                 _encoder.reset (new Encoder (_film));
65                 Transcoder w (_film, _decode_opt, this, _encoder);
66                 w.go ();
67                 set_progress (1);
68                 set_state (FINISHED_OK);
69
70                 _film->set_dcp_intrinsic_duration (_encoder->video_frames_out ());
71
72                 _film->log()->log ("Transcode job completed successfully");
73                 _film->log()->log (String::compose ("DCP intrinsic duration is %1", _encoder->video_frames_out()));
74
75         } catch (std::exception& e) {
76
77                 set_progress (1);
78                 set_state (FINISHED_ERROR);
79                 _film->log()->log (String::compose ("Transcode job failed (%1)", e.what()));
80
81                 throw;
82         }
83 }
84
85 string
86 TranscodeJob::status () const
87 {
88         if (!_encoder) {
89                 return "0%";
90         }
91
92         if (_encoder->skipping () && !finished ()) {
93                 return "skipping already-encoded frames";
94         }
95                 
96         
97         float const fps = _encoder->current_frames_per_second ();
98         if (fps == 0) {
99                 return Job::status ();
100         }
101
102         stringstream s;
103
104         s << Job::status ();
105
106         if (!finished ()) {
107                 s << "; " << fixed << setprecision (1) << fps << " frames per second";
108         }
109         
110         return s.str ();
111 }
112
113 int
114 TranscodeJob::remaining_time () const
115 {
116         float fps = _encoder->current_frames_per_second ();
117         if (fps == 0) {
118                 return 0;
119         }
120
121         if (!_film->length()) {
122                 return 0;
123         }
124
125         /* Compute approximate proposed length here, as it's only here that we need it */
126         int length = _film->length().get();
127         DCPFrameRate const dfr (_film->frames_per_second ());
128         if (dfr.skip) {
129                 length /= 2;
130         }
131         /* If we are repeating it shouldn't affect transcode time, so don't take it into account */
132
133         /* We assume that dcp_length() is valid, if it is set */
134         int const left = length - _encoder->video_frames_out();
135         return left / fps;
136 }