X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.cc;h=47385cc614c8c1387e756b254edbb85f6c78b333;hb=6bc12a2eeb9c84a539688f2f7eb876e3ea278a9f;hp=a8da40b7c39e08ada1e013d7cd90b8d157ff17c3;hpb=1f2bc4d8f3601ad1e12b94f37b3889fcd003509b;p=dcpomatic.git diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index a8da40b7c..47385cc61 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -22,56 +22,80 @@ #include "film.h" #include "image.h" #include "log.h" -#include "options.h" #include "job.h" +#include "i18n.h" + using boost::shared_ptr; using boost::optional; -VideoDecoder::VideoDecoder (shared_ptr f, shared_ptr o, Job* j) - : Decoder (f, o, j) +VideoDecoder::VideoDecoder (shared_ptr f) + : Decoder (f) , _video_frame (0) + , _last_source_time (0) { } /** Called by subclasses to tell the world that some video data is ready. * We find a subtitle then emit it for listeners. - * @param frame to decode; caller manages memory. + * @param image frame to emit. + * @param t Time of the frame within the source, in seconds. */ void -VideoDecoder::emit_video (shared_ptr image) +VideoDecoder::emit_video (shared_ptr image, double t) { shared_ptr sub; - if (_timed_subtitle && _timed_subtitle->displayed_at (double (video_frame()) / _film->frames_per_second())) { + if (_timed_subtitle && _timed_subtitle->displayed_at (t)) { sub = _timed_subtitle->subtitle (); } - signal_video (image, sub); + signal_video (image, false, sub); + _last_source_time = t; } +bool +VideoDecoder::have_last_video () const +{ + return _last_image; +} + +/** Called by subclasses to repeat the last video frame that we + * passed to emit_video(). If emit_video hasn't yet been called, + * we will generate a black frame. + */ void VideoDecoder::repeat_last_video () { if (!_last_image) { - _last_image.reset (new CompactImage (pixel_format(), native_size())); + _last_image.reset (new SimpleImage (pixel_format(), native_size(), true)); _last_image->make_black (); } - signal_video (_last_image, _last_subtitle); + signal_video (_last_image, true, _last_subtitle); } +/** Emit our signal to say that some video data is ready. + * @param image Video frame. + * @param same true if `image' is the same as the last one we emitted. + * @param sub Subtitle for this frame, or 0. + */ void -VideoDecoder::signal_video (shared_ptr image, shared_ptr sub) +VideoDecoder::signal_video (shared_ptr image, bool same, shared_ptr sub) { - TIMING ("Decoder emits %1", _video_frame); - Video (image, sub); + TIMING (N_("Decoder emits %1"), _video_frame); + Video (image, same, sub); ++_video_frame; _last_image = image; _last_subtitle = sub; } +/** Set up the current subtitle. This will be put onto frames that + * fit within its time specification. s may be 0 to say that there + * is no current subtitle. + * @param s New current subtitle, or 0. + */ void VideoDecoder::emit_subtitle (shared_ptr s) { @@ -84,15 +108,11 @@ VideoDecoder::emit_subtitle (shared_ptr s) } void -VideoDecoder::set_subtitle_stream (shared_ptr s) +VideoDecoder::set_progress (Job* j) const { - _subtitle_stream = s; -} + assert (j); -void -VideoDecoder::set_progress () const -{ - if (_job && _film->dcp_length()) { - _job->set_progress (float (_video_frame) / _film->length().get()); + if (_film->video_length()) { + j->set_progress (float (_video_frame) / _film->video_length()); } }