X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscode_job.cc;h=f7cc500fe2fead1ef78cef63ff353abf67ac62ef;hb=0b6652b491ffe7544a6f4a14fe968615d4481594;hp=477c73c753a686a889982f6b700efde3fa41483e;hpb=8dd455ba867122056e2093e259a9a045aeeea451;p=dcpomatic.git diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index 477c73c75..f7cc500fe 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -24,12 +24,13 @@ #include #include #include "transcode_job.h" -#include "j2k_wav_encoder.h" #include "film.h" #include "format.h" #include "transcoder.h" #include "log.h" -#include "encoder_factory.h" +#include "encoder.h" + +#include "i18n.h" using std::string; using std::stringstream; @@ -38,13 +39,11 @@ 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. + * @param o Decode options. */ -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, DecodeOptions o) + : Job (f) + , _decode_opt (o) { } @@ -52,7 +51,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 @@ -60,22 +59,25 @@ 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 = encoder_factory (_film, _encode_opt); + _encoder.reset (new Encoder (_film)); Transcoder w (_film, _decode_opt, this, _encoder); w.go (); set_progress (1); set_state (FINISHED_OK); - _film->log()->log ("Transcode job completed successfully"); + _film->set_dcp_intrinsic_duration (_encoder->video_frames_out ()); + + _film->log()->log (N_("Transcode job completed successfully")); + _film->log()->log (String::compose (N_("DCP intrinsic duration is %1"), _encoder->video_frames_out())); } 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; } @@ -85,14 +87,9 @@ string TranscodeJob::status () const { if (!_encoder) { - return "0%"; + return _("0%"); } - if (_encoder->skipping () && !finished ()) { - return "skipping already-encoded frames"; - } - - float const fps = _encoder->current_frames_per_second (); if (fps == 0) { return Job::status (); @@ -103,7 +100,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 (); @@ -117,11 +114,19 @@ TranscodeJob::remaining_time () const return 0; } - if (!_film->dcp_length()) { + if (!_film->length()) { return 0; } + /* Compute approximate proposed length here, as it's only here that we need it */ + int length = _film->length().get(); + FrameRateConversion const frc (_film->source_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 */ + /* 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(); + int const left = length - _encoder->video_frames_out(); return left / fps; }