Runs.
[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  *  @param o Decode options.
43  */
44 TranscodeJob::TranscodeJob (shared_ptr<Film> f, DecodeOptions o)
45         : Job (f)
46         , _decode_opt (o)
47 {
48         
49 }
50
51 string
52 TranscodeJob::name () const
53 {
54         return String::compose (_("Transcode %1"), _film->name());
55 }
56
57 void
58 TranscodeJob::run ()
59 {
60         try {
61
62                 _film->log()->log (N_("Transcode job starting"));
63                 _film->log()->log (String::compose (N_("Audio delay is %1ms"), _film->audio_delay()));
64
65                 Transcoder w (_film, _decode_opt, shared_from_this ());
66                 w.go ();
67                 set_progress (1);
68                 set_state (FINISHED_OK);
69
70                 _film->log()->log (N_("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 (N_("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         /* XXX */
90 //      float const fps = _encoder->current_frames_per_second ();
91         float const fps = 0;
92         if (fps == 0) {
93                 return Job::status ();
94         }
95
96         stringstream s;
97
98         s << Job::status ();
99
100         if (!finished ()) {
101                 s << N_("; ") << fixed << setprecision (1) << fps << N_(" ") << _("frames per second");
102         }
103         
104         return s.str ();
105 }
106
107 int
108 TranscodeJob::remaining_time () const
109 {
110         return 0;
111 #if 0
112         XXX
113         float fps = _encoder->current_frames_per_second ();
114         if (fps == 0) {
115                 return 0;
116         }
117
118         if (!_video->length()) {
119                 return 0;
120         }
121
122         /* Compute approximate proposed length here, as it's only here that we need it */
123         int length = _film->length().get();
124         FrameRateConversion const frc (_film->source_frame_rate(), _film->dcp_frame_rate());
125         if (frc.skip) {
126                 length /= 2;
127         }
128         /* If we are repeating it shouldn't affect transcode time, so don't take it into account */
129
130         /* We assume that dcp_length() is valid, if it is set */
131         int const left = length - _encoder->video_frames_out();
132         return left / fps;
133 #endif  
134 }