X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Ftranscode_job.cc;h=7d11d51a9589c474306068fbafd47f20eb05ed6f;hp=c7102879413b7f3a3a628a9596557c68b14b7aa0;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=1d45262d8e0e77b6f9c874c11858cbbd530c5dc5 diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index c71028794..7d11d51a9 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,18 +21,19 @@ * @brief A job which transcodes from one format to another. */ -#include -#include #include "transcode_job.h" #include "film.h" #include "transcoder.h" #include "log.h" #include "safe_stringstream.h" +#include "compose.hpp" +#include +#include #include "i18n.h" -#define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, Log::TYPE_GENERAL); -#define LOG_ERROR_NC(...) _film->log()->log (__VA_ARGS__, Log::TYPE_ERROR); +#define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_GENERAL); +#define LOG_ERROR_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_ERROR); using std::string; using std::fixed; @@ -42,10 +43,10 @@ using boost::shared_ptr; /** @param s Film to use. */ -TranscodeJob::TranscodeJob (shared_ptr f) - : Job (f) +TranscodeJob::TranscodeJob (shared_ptr film) + : Job (film) { - + } string @@ -54,6 +55,12 @@ TranscodeJob::name () const return String::compose (_("Transcode %1"), _film->name()); } +string +TranscodeJob::json_name () const +{ + return N_("transcode"); +} + void TranscodeJob::run () { @@ -70,9 +77,6 @@ TranscodeJob::run () _transcoder.reset (); } catch (...) { - set_progress (1); - set_state (FINISHED_ERROR); - LOG_ERROR_NC (N_("Transcode job failed or cancelled")); _transcoder.reset (); throw; } @@ -95,10 +99,12 @@ TranscodeJob::status () const s << Job::status (); if (!finished () && !_transcoder->finishing ()) { - /* TRANSLATORS: fps here is an abbreviation for frames per second */ - s << "; " << fixed << setprecision (1) << fps << " " << _("fps"); + /// TRANSLATORS: fps here is an abbreviation for frames per second + s << "; " << _transcoder->video_frames_out() << "/" + << _film->length().frames_round (_film->video_frame_rate ()) << " " << _("frames") << "; " + << fixed << setprecision (1) << fps << " " << _("fps"); } - + return s.str (); } @@ -108,11 +114,11 @@ TranscodeJob::remaining_time () const { /* _transcoder might be destroyed by the job-runner thread */ shared_ptr t = _transcoder; - + if (!t) { return 0; } - + float fps = t->current_encoding_rate (); if (fps == 0) { @@ -120,5 +126,5 @@ TranscodeJob::remaining_time () const } /* Compute approximate proposed length here, as it's only here that we need it */ - return (_film->length().frames (_film->video_frame_rate ()) - t->video_frames_out()) / fps; + return (_film->length().frames_round (_film->video_frame_rate ()) - t->video_frames_out()) / fps; }