Merge master and multifarious hackery.
[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 #include "i18n.h"
34
35 using std::string;
36 using std::stringstream;
37 using std::fixed;
38 using std::setprecision;
39 using boost::shared_ptr;
40
41 /** @param s Film to use.
42  */
43 TranscodeJob::TranscodeJob (shared_ptr<Film> f)
44         : Job (f)
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 (N_("Transcode job starting"));
61
62                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
63                 _transcoder->go ();
64                 set_progress (1);
65                 set_state (FINISHED_OK);
66
67                 _film->log()->log (N_("Transcode job completed successfully"));
68
69         } catch (std::exception& e) {
70
71                 set_progress (1);
72                 set_state (FINISHED_ERROR);
73                 _film->log()->log (String::compose (N_("Transcode job failed (%1)"), e.what()));
74
75                 throw;
76         }
77 }
78
79 string
80 TranscodeJob::status () const
81 {
82         if (!_transcoder) {
83                 return _("0%");
84         }
85
86         float const fps = _transcoder->current_encoding_rate ();
87         if (fps == 0) {
88                 return Job::status ();
89         }
90
91         stringstream s;
92
93         s << Job::status ();
94
95         if (!finished ()) {
96                 s << N_("; ") << fixed << setprecision (1) << fps << N_(" ") << _("frames per second");
97         }
98         
99         return s.str ();
100 }
101
102 int
103 TranscodeJob::remaining_time () const
104 {
105         if (!_transcoder) {
106                 return 0;
107         }
108         
109         float fps = _transcoder->current_encoding_rate ();
110
111         if (fps == 0) {
112                 return 0;
113         }
114
115         /* Compute approximate proposed length here, as it's only here that we need it */
116         OutputVideoFrame const left = _film->time_to_video_frames (_film->length ()) - _transcoder->video_frames_out();
117         return left / fps;
118 }