X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscode_job.cc;h=6d5edd7c060c662dc404445c1e3ed1a1175d4ace;hb=872557b0261c0daf2206a24e38f33b1c9871c8a3;hp=f4e3d7af9cee1a02a5f2e57bc159c47ab8b1dd64;hpb=266fe11af7f3bdc194cfedf92db7352b7b68be97;p=dcpomatic.git diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index f4e3d7af9..6d5edd7c0 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -24,23 +24,22 @@ #include #include #include "transcode_job.h" -#include "j2k_wav_encoder.h" #include "film.h" -#include "format.h" #include "transcoder.h" -#include "film_state.h" #include "log.h" -#include "encoder_factory.h" -using namespace std; -using namespace boost; +#include "i18n.h" -/** @param s FilmState to use. - * @param o Options. - * @param l A log that we can write to. +using std::string; +using std::stringstream; +using std::fixed; +using std::setprecision; +using boost::shared_ptr; + +/** @param s Film to use. */ -TranscodeJob::TranscodeJob (shared_ptr s, shared_ptr o, Log* l) - : Job (s, o, l) +TranscodeJob::TranscodeJob (shared_ptr f) + : Job (f) { } @@ -48,9 +47,7 @@ TranscodeJob::TranscodeJob (shared_ptr s, shared_ptrname; - return s.str (); + return String::compose (_("Transcode %1"), _film->name()); } void @@ -58,60 +55,62 @@ TranscodeJob::run () { try { - _log->log ("Transcode job starting"); + _film->log()->log (N_("Transcode job starting")); - _encoder = encoder_factory (_fs, _opt, _log); - Transcoder w (_fs, _opt, this, _log, _encoder); - w.go (); + _transcoder.reset (new Transcoder (_film, shared_from_this ())); + _transcoder->go (); set_progress (1); set_state (FINISHED_OK); - _log->log ("Transcode job completed successfully"); + _film->log()->log (N_("Transcode job completed successfully")); } catch (std::exception& e) { - stringstream s; set_progress (1); set_state (FINISHED_ERROR); - - s << "Transcode job failed (" << e.what() << ")"; - _log->log (s.str ()); + _film->log()->log (String::compose (N_("Transcode job failed (%1)"), e.what())); throw; - } } string TranscodeJob::status () const { - if (!_encoder) { - return "0%"; + if (!_transcoder) { + return _("0%"); } - if (_encoder->skipping ()) { - return "skipping frames already encoded"; - } - - - float const fps = _encoder->current_frames_per_second (); + float const fps = _transcoder->current_encoding_rate (); if (fps == 0) { return Job::status (); } stringstream s; - s << Job::status () << "; " << fixed << setprecision (1) << fps << " frames per second"; + s << Job::status (); + + if (!finished ()) { + s << N_("; ") << fixed << setprecision (1) << fps << N_(" ") << _("frames per second"); + } + return s.str (); } 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; } - return ((_fs->length - _encoder->last_frame()) / fps); + /* Compute approximate proposed length here, as it's only here that we need it */ + OutputVideoFrame const left = _film->time_to_video_frames (_film->length ()) - _transcoder->video_frames_out(); + return left / fps; }