X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fplayer.cc;h=8cc1849e865f0909001a55374954bca5fbe48247;hb=871fd0585082b5e00b5b0053dadd298b9ddf60b6;hp=26ded61b8b6f94dcee125068d212c02ed3eea3da;hpb=50ce388189f9c930ea0ba80cfb20237cfa464a3f;p=dcpomatic.git diff --git a/src/lib/player.cc b/src/lib/player.cc index 26ded61b8..8cc1849e8 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -22,15 +22,18 @@ #include "film.h" #include "ffmpeg_decoder.h" #include "ffmpeg_content.h" -#include "imagemagick_decoder.h" -#include "imagemagick_content.h" +#include "still_image_decoder.h" +#include "still_image_content.h" #include "sndfile_decoder.h" #include "sndfile_content.h" +#include "subtitle_content.h" #include "playlist.h" #include "job.h" #include "image.h" #include "ratio.h" #include "resampler.h" +#include "log.h" +#include "scaler.h" using std::list; using std::cout; @@ -43,7 +46,7 @@ using boost::shared_ptr; using boost::weak_ptr; using boost::dynamic_pointer_cast; -#define DEBUG_PLAYER 1 +//#define DEBUG_PLAYER 1 class Piece { @@ -71,11 +74,11 @@ public: std::ostream& operator<<(std::ostream& s, Piece const & p) { if (dynamic_pointer_cast (p.content)) { - s << "\tffmpeg "; - } else if (dynamic_pointer_cast (p.content)) { - s << "\timagemagick"; + s << "\tffmpeg "; + } else if (dynamic_pointer_cast (p.content)) { + s << "\tstill image"; } else if (dynamic_pointer_cast (p.content)) { - s << "\tsndfile "; + s << "\tsndfile "; } s << " at " << p.content->start() << " until " << p.content->end(); @@ -92,10 +95,10 @@ Player::Player (shared_ptr f, shared_ptr p) , _have_valid_pieces (false) , _video_position (0) , _audio_position (0) - , _audio_buffers (f->dcp_audio_channels(), 0) + , _audio_buffers (f->audio_channels(), 0) { _playlist->Changed.connect (bind (&Player::playlist_changed, this)); - _playlist->ContentChanged.connect (bind (&Player::content_changed, this, _1, _2)); + _playlist->ContentChanged.connect (bind (&Player::content_changed, this, _1, _2, _3)); _film->Changed.connect (bind (&Player::film_changed, this, _1)); set_video_container_size (_film->container()->size (_film->full_frame ())); } @@ -124,8 +127,8 @@ Player::pass () cout << "= PASS\n"; #endif - Time earliest_t = TIME_MAX; - shared_ptr earliest; + Time earliest_t = TIME_MAX; + shared_ptr earliest; enum { VIDEO, AUDIO @@ -136,7 +139,7 @@ Player::pass () continue; } - if (dynamic_pointer_cast ((*i)->decoder)) { + if (_video && dynamic_pointer_cast ((*i)->decoder)) { if ((*i)->video_position < earliest_t) { earliest_t = (*i)->video_position; earliest = *i; @@ -144,7 +147,7 @@ Player::pass () } } - if (dynamic_pointer_cast ((*i)->decoder)) { + if (_audio && dynamic_pointer_cast ((*i)->decoder)) { if ((*i)->audio_position < earliest_t) { earliest_t = (*i)->audio_position; earliest = *i; @@ -166,7 +169,7 @@ Player::pass () case VIDEO: if (earliest_t > _video_position) { #ifdef DEBUG_PLAYER - cout << "no video here; emitting black frame.\n"; + cout << "no video here; emitting black frame (earliest=" << earliest_t << ", video_position=" << _video_position << ").\n"; #endif emit_black (); } else { @@ -188,6 +191,18 @@ Player::pass () cout << "Pass " << *earliest << "\n"; #endif earliest->decoder->pass (); + + if (earliest->decoder->done()) { + shared_ptr ac = dynamic_pointer_cast (earliest->content); + assert (ac); + shared_ptr re = resampler (ac, false); + if (re) { + shared_ptr b = re->flush (); + if (b->frames ()) { + process_audio (earliest, b, ac->audio_length ()); + } + } + } } break; } @@ -196,11 +211,11 @@ Player::pass () cout << "\tpost pass " << _video_position << " " << _audio_position << "\n"; #endif - return false; + return false; } void -Player::process_video (weak_ptr weak_piece, shared_ptr image, bool same, VideoContent::Frame frame) +Player::process_video (weak_ptr weak_piece, shared_ptr image, Eyes eyes, bool same, VideoContent::Frame frame) { shared_ptr piece = weak_piece.lock (); if (!piece) { @@ -210,54 +225,42 @@ Player::process_video (weak_ptr weak_piece, shared_ptr image shared_ptr content = dynamic_pointer_cast (piece->content); assert (content); - FrameRateConversion frc (content->video_frame_rate(), _film->dcp_video_frame_rate()); + FrameRateConversion frc (content->video_frame_rate(), _film->video_frame_rate()); if (frc.skip && (frame % 2) == 1) { return; } - image = image->crop (content->crop(), true); + shared_ptr work_image = image->crop (content->crop(), true); libdcp::Size const image_size = content->ratio()->size (_video_container_size); - image = image->scale_and_convert_to_rgb (image_size, _film->scaler(), true); + work_image = work_image->scale_and_convert_to_rgb (image_size, _film->scaler(), true); -#if 0 - if (film->with_subtitles ()) { - shared_ptr sub; - if (_timed_subtitle && _timed_subtitle->displayed_at (t)) { - sub = _timed_subtitle->subtitle (); - } - - if (sub) { - dcpomatic::Rect const tx = subtitle_transformed_area ( - float (image_size.width) / content->video_size().width, - float (image_size.height) / content->video_size().height, - sub->area(), film->subtitle_offset(), film->subtitle_scale() - ); - - shared_ptr im = sub->image()->scale (tx.size(), film->scaler(), true); - image->alpha_blend (im, tx.position()); - } + Time time = content->start() + (frame * frc.factor() * TIME_HZ / _film->video_frame_rate()); + + if (_film->with_subtitles () && _out_subtitle.image && time >= _out_subtitle.from && time <= _out_subtitle.to) { + work_image->alpha_blend (_out_subtitle.image, _out_subtitle.position); } -#endif if (image_size != _video_container_size) { assert (image_size.width <= _video_container_size.width); assert (image_size.height <= _video_container_size.height); - shared_ptr im (new SimpleImage (PIX_FMT_RGB24, _video_container_size, true)); + shared_ptr im (new Image (PIX_FMT_RGB24, _video_container_size, true)); im->make_black (); - im->copy (image, Position ((_video_container_size.width - image_size.width) / 2, (_video_container_size.height - image_size.height) / 2)); - image = im; + im->copy (work_image, Position ((_video_container_size.width - image_size.width) / 2, (_video_container_size.height - image_size.height) / 2)); + work_image = im; } - Time time = content->start() + (frame * frc.factor() * TIME_HZ / _film->dcp_video_frame_rate()); - - Video (image, same, time); - time += TIME_HZ / _film->dcp_video_frame_rate(); +#ifdef DCPOMATIC_DEBUG + _last_video = piece->content; +#endif + + Video (work_image, eyes, same, time); + time += TIME_HZ / _film->video_frame_rate(); if (frc.repeat) { - Video (image, true, time); - time += TIME_HZ / _film->dcp_video_frame_rate(); + Video (work_image, eyes, true, time); + time += TIME_HZ / _film->video_frame_rate(); } _video_position = piece->video_position = time; @@ -274,43 +277,73 @@ Player::process_audio (weak_ptr weak_piece, shared_ptr content = dynamic_pointer_cast (piece->content); assert (content); + /* Resample */ if (content->content_audio_frame_rate() != content->output_audio_frame_rate()) { - audio = resampler(content)->run (audio); + shared_ptr r = resampler (content, true); + audio = r->run (audio); } /* Remap channels */ - shared_ptr dcp_mapped (new AudioBuffers (_film->dcp_audio_channels(), audio->frames())); + shared_ptr dcp_mapped (new AudioBuffers (_film->audio_channels(), audio->frames())); dcp_mapped->make_silent (); list > map = content->audio_mapping().content_to_dcp (); for (list >::iterator i = map.begin(); i != map.end(); ++i) { - dcp_mapped->accumulate_channel (audio.get(), i->first, i->second); + if (i->first < audio->channels() && i->second < dcp_mapped->channels()) { + dcp_mapped->accumulate_channel (audio.get(), i->first, i->second); + } } - /* The time of this audio may indicate that some of our buffered audio is not going to - be added to any more, so it can be emitted. - */ + audio = dcp_mapped; + + /* Convert frame to time. After resampling, the frame time (in the DCP rate) will be T_D where + T_D = frame * DCP_rate / original_rate. Hence the time in seconds is T_D / DCP_rate. + */ + Time time = content->start() + (frame * TIME_HZ / _film->audio_frame_rate()) + (content->audio_delay() * TIME_HZ / 1000); + + /* We must cut off anything that comes before the start of all time */ + if (time < 0) { + int const frames = - time * _film->audio_frame_rate() / TIME_HZ; + if (frames >= audio->frames ()) { + return; + } + + shared_ptr trimmed (new AudioBuffers (audio->channels(), audio->frames() - frames)); + trimmed->copy_from (audio.get(), audio->frames() - frames, frames, 0); - Time const time = content->start() + (frame * TIME_HZ / _film->dcp_audio_frame_rate()); + audio = trimmed; + time = 0; + } + + /* The time of this audio may indicate that some of our buffered audio is not going to + be added to any more, so it can be emitted. + */ - if (time > _audio_position) { - /* We can emit some audio from our buffers */ - OutputAudioFrame const N = _film->time_to_audio_frames (time - _audio_position); + if (time > _audio_position) { + /* We can emit some audio from our buffers */ + OutputAudioFrame const N = _film->time_to_audio_frames (time - _audio_position); + if (N > _audio_buffers.frames()) { + /* We need some extra silence before whatever is in the buffers */ + _audio_buffers.ensure_size (N); + _audio_buffers.move (0, N - _audio_buffers.frames(), _audio_buffers.frames ()); + _audio_buffers.make_silent (0, _audio_buffers.frames()); + _audio_buffers.set_frames (N); + } assert (N <= _audio_buffers.frames()); - shared_ptr emit (new AudioBuffers (_audio_buffers.channels(), N)); - emit->copy_from (&_audio_buffers, N, 0, 0); - Audio (emit, _audio_position); - _audio_position = piece->audio_position = time + _film->audio_frames_to_time (N); - - /* And remove it from our buffers */ - if (_audio_buffers.frames() > N) { - _audio_buffers.move (N, 0, _audio_buffers.frames() - N); - } - _audio_buffers.set_frames (_audio_buffers.frames() - N); - } - - /* Now accumulate the new audio into our buffers */ - _audio_buffers.ensure_size (_audio_buffers.frames() + audio->frames()); - _audio_buffers.accumulate_frames (audio.get(), 0, 0, audio->frames ()); + shared_ptr emit (new AudioBuffers (_audio_buffers.channels(), N)); + emit->copy_from (&_audio_buffers, N, 0, 0); + Audio (emit, _audio_position); + _audio_position = piece->audio_position = time + _film->audio_frames_to_time (N); + + /* And remove it from our buffers */ + if (_audio_buffers.frames() > N) { + _audio_buffers.move (N, 0, _audio_buffers.frames() - N); + } + _audio_buffers.set_frames (_audio_buffers.frames() - N); + } + + /* Now accumulate the new audio into our buffers */ + _audio_buffers.ensure_size (_audio_buffers.frames() + audio->frames()); + _audio_buffers.accumulate_frames (audio.get(), 0, 0, audio->frames ()); _audio_buffers.set_frames (_audio_buffers.frames() + audio->frames()); } @@ -335,7 +368,10 @@ Player::flush () } -/** @return true on error */ +/** Seek so that the next pass() will yield (approximately) the requested frame. + * Pass accurate = true to try harder to get close to the request. + * @return true on error + */ void Player::seek (Time t, bool accurate) { @@ -358,11 +394,19 @@ Player::seek (Time t, bool accurate) s = max (static_cast