X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Ftranscode_job.cc;h=0c3b8c37b978b9d5c94c058cfafbde11db552ec0;hb=cd4a82d90677cec80e891ac190000cb70767446f;hp=dfb9b107192748f7dbe8c6b4f2280cd69fa05057;hpb=2f56f38ce56b36f20d59593f56981e7ed330c484;p=dcpomatic.git diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index dfb9b1071..0c3b8c37b 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -30,6 +30,8 @@ #include "log.h" #include "encoder.h" +#include "i18n.h" + using std::string; using std::stringstream; using std::fixed; @@ -37,13 +39,9 @@ using std::setprecision; using boost::shared_ptr; /** @param s Film to use. - * @param o Options. - * @param req Job that must be completed before this job is run. */ -TranscodeJob::TranscodeJob (shared_ptr f, shared_ptr od, shared_ptr oe, shared_ptr req) - : Job (f, req) - , _decode_opt (od) - , _encode_opt (oe) +TranscodeJob::TranscodeJob (shared_ptr f) + : Job (f) { } @@ -51,7 +49,7 @@ TranscodeJob::TranscodeJob (shared_ptr f, shared_ptr string TranscodeJob::name () const { - return String::compose ("Transcode %1", _film->name()); + return String::compose (_("Transcode %1"), _film->name()); } void @@ -59,22 +57,21 @@ TranscodeJob::run () { try { - _film->log()->log ("Transcode job starting"); - _film->log()->log (String::compose ("Audio delay is %1ms", _film->audio_delay())); + _film->log()->log (N_("Transcode job starting")); + _film->log()->log (String::compose (N_("Audio delay is %1ms"), _film->audio_delay())); - _encoder.reset (new Encoder (_film, _encode_opt)); - Transcoder w (_film, _decode_opt, this, _encoder); - w.go (); + _transcoder.reset (new Transcoder (_film, shared_from_this ())); + _transcoder->go (); set_progress (1); set_state (FINISHED_OK); - _film->log()->log ("Transcode job completed successfully"); + _film->log()->log (N_("Transcode job completed successfully")); } catch (std::exception& e) { set_progress (1); set_state (FINISHED_ERROR); - _film->log()->log (String::compose ("Transcode job failed (%1)", e.what())); + _film->log()->log (String::compose (N_("Transcode job failed (%1)"), e.what())); throw; } @@ -83,16 +80,11 @@ TranscodeJob::run () string TranscodeJob::status () const { - if (!_encoder) { - return "0%"; + if (!_transcoder) { + return _("0%"); } - if (_encoder->skipping () && !finished ()) { - return "skipping already-encoded frames"; - } - - - float const fps = _encoder->current_frames_per_second (); + float const fps = _transcoder->current_encoding_rate (); if (fps == 0) { return Job::status (); } @@ -102,7 +94,7 @@ TranscodeJob::status () const s << Job::status (); if (!finished ()) { - s << "; " << fixed << setprecision (1) << fps << " frames per second"; + s << N_("; ") << fixed << setprecision (1) << fps << N_(" ") << _("frames per second"); } return s.str (); @@ -111,16 +103,28 @@ TranscodeJob::status () const int TranscodeJob::remaining_time () const { - float fps = _encoder->current_frames_per_second (); + if (!_transcoder) { + return 0; + } + + float fps = _transcoder->current_encoding_rate (); + if (fps == 0) { return 0; } - if (!_film->dcp_length()) { + if (!_film->video_length()) { return 0; } - /* We assume that dcp_length() is valid, if it is set */ - SourceFrame const left = _film->dcp_trim_start() + _film->dcp_length().get() - _encoder->video_frame(); + /* Compute approximate proposed length here, as it's only here that we need it */ + int length = _film->video_length(); + FrameRateConversion const frc (_film->video_frame_rate(), _film->dcp_frame_rate()); + if (frc.skip) { + length /= 2; + } + /* If we are repeating it shouldn't affect transcode time, so don't take it into account */ + + int const left = length - _transcoder->video_frames_out(); return left / fps; }