Move audio into Encoder so that J2KStillEncoder can use it too. Rename J2KWAVEncoder...
[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_factory.h"
32 #include "encoder.h"
33
34 using std::string;
35 using std::stringstream;
36 using std::fixed;
37 using std::setprecision;
38 using boost::shared_ptr;
39
40 /** @param s Film to use.
41  *  @param o Options.
42  *  @param req Job that must be completed before this job is run.
43  */
44 TranscodeJob::TranscodeJob (shared_ptr<Film> f, shared_ptr<const DecodeOptions> od, shared_ptr<const EncodeOptions> oe, shared_ptr<Job> req)
45         : Job (f, req)
46         , _decode_opt (od)
47         , _encode_opt (oe)
48 {
49         
50 }
51
52 string
53 TranscodeJob::name () const
54 {
55         return String::compose ("Transcode %1", _film->name());
56 }
57
58 void
59 TranscodeJob::run ()
60 {
61         try {
62
63                 _film->log()->log ("Transcode job starting");
64                 _film->log()->log (String::compose ("Audio delay is %1ms", _film->audio_delay()));
65
66                 _encoder = encoder_factory (_film, _encode_opt);
67                 Transcoder w (_film, _decode_opt, this, _encoder);
68                 w.go ();
69                 set_progress (1);
70                 set_state (FINISHED_OK);
71
72                 _film->log()->log ("Transcode job completed successfully");
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         if (_encoder->skipping () && !finished ()) {
92                 return "skipping already-encoded frames";
93         }
94                 
95         
96         float const fps = _encoder->current_frames_per_second ();
97         if (fps == 0) {
98                 return Job::status ();
99         }
100
101         stringstream s;
102
103         s << Job::status ();
104
105         if (!finished ()) {
106                 s << "; " << fixed << setprecision (1) << fps << " frames per second";
107         }
108         
109         return s.str ();
110 }
111
112 int
113 TranscodeJob::remaining_time () const
114 {
115         float fps = _encoder->current_frames_per_second ();
116         if (fps == 0) {
117                 return 0;
118         }
119
120         if (!_film->dcp_length()) {
121                 return 0;
122         }
123
124         /* We assume that dcp_length() is valid, if it is set */
125         SourceFrame const left = _film->dcp_trim_start() + _film->dcp_length().get() - _encoder->video_frame();
126         return left / fps;
127 }