Merge master.
[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 "transcoder.h"
29 #include "log.h"
30
31 #include "i18n.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  */
41 TranscodeJob::TranscodeJob (shared_ptr<const Film> f)
42         : Job (f)
43 {
44         
45 }
46
47 string
48 TranscodeJob::name () const
49 {
50         return String::compose (_("Transcode %1"), _film->name());
51 }
52
53 void
54 TranscodeJob::run ()
55 {
56         try {
57
58                 _film->log()->log (N_("Transcode job starting"));
59
60                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
61                 _transcoder->go ();
62                 set_progress (1);
63                 set_state (FINISHED_OK);
64
65                 _film->log()->log (N_("Transcode job completed successfully"));
66                 _transcoder.reset ();
67
68         } catch (...) {
69                 set_progress (1);
70                 set_state (FINISHED_ERROR);
71                 _film->log()->log (N_("Transcode job failed or cancelled"));
72                 _transcoder.reset ();
73                 throw;
74         }
75 }
76
77 string
78 TranscodeJob::status () const
79 {
80         if (!_transcoder) {
81                 return Job::status ();
82         }
83
84         float const fps = _transcoder->current_encoding_rate ();
85         if (fps == 0) {
86                 return Job::status ();
87         }
88
89         stringstream s;
90
91         s << Job::status ();
92
93         if (!finished () && !_transcoder->finishing ()) {
94                 s << "; " << fixed << setprecision (1) << fps << " " << _("frames per second");
95         }
96         
97         return s.str ();
98 }
99
100 int
101 TranscodeJob::remaining_time () const
102 {
103         if (!_transcoder) {
104                 return 0;
105         }
106         
107         float fps = _transcoder->current_encoding_rate ();
108
109         if (fps == 0) {
110                 return 0;
111         }
112
113         /* Compute approximate proposed length here, as it's only here that we need it */
114         VideoFrame const left = _film->time_to_video_frames (_film->length ()) - _transcoder->video_frames_out();
115         return left / fps;
116 }