Merge ChangeLog.
[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 "j2k_wav_encoder.h"
28 #include "film.h"
29 #include "format.h"
30 #include "transcoder.h"
31 #include "log.h"
32 #include "encoder_factory.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  */
43 TranscodeJob::TranscodeJob (shared_ptr<Film> f, shared_ptr<const Options> o, shared_ptr<Job> req)
44         : Job (f, req)
45         , _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 = encoder_factory (_film, _opt);
65                 Transcoder w (_film, _opt, this, _encoder);
66                 w.go ();
67                 set_progress (1);
68                 set_state (FINISHED_OK);
69
70                 _film->log()->log ("Transcode job completed successfully");
71
72         } catch (std::exception& e) {
73
74                 set_progress (1);
75                 set_state (FINISHED_ERROR);
76                 _film->log()->log (String::compose ("Transcode job failed (%1)", e.what()));
77
78                 throw;
79         }
80 }
81
82 string
83 TranscodeJob::status () const
84 {
85         if (!_encoder) {
86                 return "0%";
87         }
88
89         if (_encoder->skipping () && !finished ()) {
90                 return "skipping already-encoded frames";
91         }
92                 
93         
94         float const fps = _encoder->current_frames_per_second ();
95         if (fps == 0) {
96                 return Job::status ();
97         }
98
99         stringstream s;
100
101         s << Job::status ();
102
103         if (!finished ()) {
104                 s << "; " << fixed << setprecision (1) << fps << " frames per second";
105         }
106         
107         return s.str ();
108 }
109
110 int
111 TranscodeJob::remaining_time () const
112 {
113         float fps = _encoder->current_frames_per_second ();
114         if (fps == 0) {
115                 return 0;
116         }
117
118         /* We assume that dcp_length() is valid */
119         SourceFrame const left = _film->dcp_trim_start() + _film->dcp_length().get() - _encoder->video_frame();
120         return left / fps;
121 }