X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fdcp_decoder.cc;h=e8ace8beedcfb61b2b0604103acd099c64e4b5d0;hp=758ddea2674174bc4e6d2b68c03811de481c6fc3;hb=HEAD;hpb=a9a24536dfd68cb7b8fe6d026e164875fae089f0 diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc index 758ddea26..17f0e73b5 100644 --- a/src/lib/dcp_decoder.cc +++ b/src/lib/dcp_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2020 Carl Hetherington + Copyright (C) 2014-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -18,68 +18,77 @@ */ + #include "atmos_decoder.h" -#include "dcp_decoder.h" -#include "dcp_content.h" #include "audio_content.h" -#include "video_decoder.h" #include "audio_decoder.h" -#include "j2k_image_proxy.h" -#include "text_decoder.h" -#include "ffmpeg_image_proxy.h" -#include "image.h" #include "config.h" +#include "constants.h" +#include "dcp_content.h" +#include "dcp_decoder.h" #include "digester.h" +#include "ffmpeg_image_proxy.h" #include "frame_interval_checker.h" -#include +#include "image.h" +#include "j2k_image_proxy.h" +#include "text_decoder.h" +#include "video_decoder.h" #include -#include +#include +#include #include #include -#include -#include +#include +#include +#include +#include #include #include #include -#include -#include -#include -#include +#include #include +#include +#include +#include +#include #include -#include -#include -#include #include #include "i18n.h" -using std::list; + using std::cout; +using std::dynamic_pointer_cast; +using std::list; +using std::make_shared; +using std::map; +using std::shared_ptr; using std::string; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::vector; using boost::optional; using namespace dcpomatic; -DCPDecoder::DCPDecoder (shared_ptr film, shared_ptr c, bool fast, bool tolerant, shared_ptr old) - : DCP (c, tolerant) - , Decoder (film) - , _decode_referenced (false) + +DCPDecoder::DCPDecoder (shared_ptr film, shared_ptr content, bool fast, bool tolerant, shared_ptr old) + : Decoder (film) + , _dcp_content (content) { - if (c->can_be_played()) { - if (c->video) { - video.reset (new VideoDecoder (this, c)); + if (content->can_be_played()) { + if (content->video) { + video = make_shared(this, content); } - if (c->audio) { - audio.reset (new AudioDecoder (this, c->audio, fast)); + if (content->audio && !content->audio->mapping().mapped_output_channels().empty()) { + audio = make_shared(this, content->audio, fast); } - BOOST_FOREACH (shared_ptr i, c->text) { - /* XXX: this time here should be the time of the first subtitle, not 0 */ - text.push_back (shared_ptr (new TextDecoder (this, i, ContentTime()))); + for (auto i: content->text) { + text.push_back (make_shared(this, i)); + /* We should really call maybe_set_position() on this TextDecoder to set the time + * of the first subtitle, but it probably doesn't matter since we'll always + * have regularly occurring video (and maybe audio) content. + */ } - if (c->atmos) { - atmos.reset (new AtmosDecoder (this, c)); + if (content->atmos) { + atmos = make_shared(this, content); } } @@ -91,20 +100,19 @@ DCPDecoder::DCPDecoder (shared_ptr film, shared_ptrlazy_digest() == _lazy_digest) { _reels = old->_reels; } else { - - list > cpl_list = cpls (); + auto cpl_list = dcp::find_and_resolve_cpls(content->directories(), tolerant); if (cpl_list.empty()) { throw DCPError (_("No CPLs found in DCP.")); } shared_ptr cpl; - BOOST_FOREACH (shared_ptr i, cpl_list) { + for (auto i: cpl_list) { if (_dcp_content->cpl() && i->id() == _dcp_content->cpl().get()) { cpl = i; } @@ -114,7 +122,11 @@ DCPDecoder::DCPDecoder (shared_ptr film, shared_ptrkdm()) { + cpl->add (decrypt_kdm_with_helpful_error(content->kdm().get())); } _reels = cpl->reels (); @@ -123,8 +135,10 @@ DCPDecoder::DCPDecoder (shared_ptr film, shared_ptractive_video_frame_rate (film()); + auto const vfr = _dcp_content->active_video_frame_rate (film()); /* Frame within the (played part of the) reel that is coming up next */ - int64_t const frame = _next.frames_round (vfr); + auto const frame = _next.frames_round (vfr); - shared_ptr picture_asset = (*_reel)->main_picture()->asset(); + auto picture_asset = (*_reel)->main_picture()->asset(); DCPOMATIC_ASSERT (picture_asset); /* We must emit texts first as when we emit the video for this frame @@ -156,45 +170,39 @@ DCPDecoder::pass () pass_texts (_next, picture_asset->size()); if ((_mono_reader || _stereo_reader) && (_decode_referenced || !_dcp_content->reference_video())) { - int64_t const entry_point = (*_reel)->main_picture()->entry_point().get_value_or(0); + auto const entry_point = (*_reel)->main_picture()->entry_point().get_value_or(0); if (_mono_reader) { video->emit ( film(), - shared_ptr ( - new J2KImageProxy ( - _mono_reader->get_frame (entry_point + frame), - picture_asset->size(), - AV_PIX_FMT_XYZ12LE, - _forced_reduction - ) + std::make_shared( + _mono_reader->get_frame (entry_point + frame), + picture_asset->size(), + AV_PIX_FMT_XYZ12LE, + _forced_reduction ), _offset + frame ); } else { video->emit ( film(), - shared_ptr ( - new J2KImageProxy ( - _stereo_reader->get_frame (entry_point + frame), - picture_asset->size(), - dcp::EYE_LEFT, - AV_PIX_FMT_XYZ12LE, - _forced_reduction - ) + std::make_shared( + _stereo_reader->get_frame (entry_point + frame), + picture_asset->size(), + dcp::Eye::LEFT, + AV_PIX_FMT_XYZ12LE, + _forced_reduction ), _offset + frame ); video->emit ( film(), - shared_ptr ( - new J2KImageProxy ( - _stereo_reader->get_frame (entry_point + frame), - picture_asset->size(), - dcp::EYE_RIGHT, - AV_PIX_FMT_XYZ12LE, - _forced_reduction - ) + std::make_shared( + _stereo_reader->get_frame (entry_point + frame), + picture_asset->size(), + dcp::Eye::RIGHT, + AV_PIX_FMT_XYZ12LE, + _forced_reduction ), _offset + frame ); @@ -202,14 +210,14 @@ DCPDecoder::pass () } if (_sound_reader && (_decode_referenced || !_dcp_content->reference_audio())) { - int64_t const entry_point = (*_reel)->main_sound()->entry_point().get_value_or(0); - shared_ptr sf = _sound_reader->get_frame (entry_point + frame); - uint8_t const * from = sf->data (); + auto const entry_point = (*_reel)->main_sound()->entry_point().get_value_or(0); + auto sf = _sound_reader->get_frame (entry_point + frame); + auto from = sf->data (); int const channels = _dcp_content->audio->stream()->channels (); int const frames = sf->size() / (3 * channels); - shared_ptr data (new AudioBuffers (channels, frames)); - float** data_data = data->data(); + auto data = make_shared(channels, frames); + auto data_data = data->data(); for (int i = 0; i < frames; ++i) { for (int j = 0; j < channels; ++j) { data_data[j][i] = static_cast ((from[0] << 8) | (from[1] << 16) | (from[2] << 24)) / static_cast (INT_MAX - 256); @@ -222,7 +230,7 @@ DCPDecoder::pass () if (_atmos_reader) { DCPOMATIC_ASSERT (_atmos_metadata); - int64_t const entry_point = (*_reel)->atmos()->entry_point().get_value_or(0); + auto const entry_point = (*_reel)->atmos()->entry_point().get_value_or(0); atmos->emit (film(), _atmos_reader->get_frame(entry_point + frame), _offset + frame, *_atmos_metadata); } @@ -238,10 +246,11 @@ DCPDecoder::pass () return false; } + void DCPDecoder::pass_texts (ContentTime next, dcp::Size size) { - list >::const_iterator decoder = text.begin (); + auto decoder = text.begin (); if (decoder == text.end()) { /* It's possible that there is now a main subtitle but no TextDecoders, for example if the CPL has just changed but the TextContent's texts have not been recreated yet. @@ -253,7 +262,7 @@ DCPDecoder::pass_texts (ContentTime next, dcp::Size size) pass_texts ( next, (*_reel)->main_subtitle()->asset(), - _dcp_content->reference_text(TEXT_OPEN_SUBTITLE), + _dcp_content->reference_text(TextType::OPEN_SUBTITLE), (*_reel)->main_subtitle()->entry_point().get_value_or(0), *decoder, size @@ -261,9 +270,9 @@ DCPDecoder::pass_texts (ContentTime next, dcp::Size size) ++decoder; } - BOOST_FOREACH (shared_ptr i, (*_reel)->closed_captions()) { + for (auto i: (*_reel)->closed_captions()) { pass_texts ( - next, i->asset(), _dcp_content->reference_text(TEXT_CLOSED_CAPTION), i->entry_point().get_value_or(0), *decoder, size + next, i->asset(), _dcp_content->reference_text(TextType::CLOSED_CAPTION), i->entry_point().get_value_or(0), *decoder, size ); ++decoder; } @@ -274,42 +283,49 @@ DCPDecoder::pass_texts ( ContentTime next, shared_ptr asset, bool reference, int64_t entry_point, shared_ptr decoder, dcp::Size size ) { - double const vfr = _dcp_content->active_video_frame_rate (film()); + auto const vfr = _dcp_content->active_video_frame_rate (film()); /* Frame within the (played part of the) reel that is coming up next */ - int64_t const frame = next.frames_round (vfr); + auto const frame = next.frames_round (vfr); if (_decode_referenced || !reference) { - list > subs = asset->subtitles_during ( + auto subs = asset->subtitles_during ( dcp::Time (entry_point + frame, vfr, vfr), dcp::Time (entry_point + frame + 1, vfr, vfr), true ); - list strings; + vector strings; - BOOST_FOREACH (shared_ptr i, subs) { - shared_ptr is = dynamic_pointer_cast (i); + for (auto i: subs) { + auto is = dynamic_pointer_cast(i); if (is) { if (!strings.empty() && (strings.back().in() != is->in() || strings.back().out() != is->out())) { - dcp::SubtitleString b = strings.back(); + auto b = strings.back(); decoder->emit_plain ( ContentTimePeriod ( ContentTime::from_frames(_offset - entry_point, vfr) + ContentTime::from_seconds(b.in().as_seconds()), ContentTime::from_frames(_offset - entry_point, vfr) + ContentTime::from_seconds(b.out().as_seconds()) ), - strings + strings, + asset->subtitle_standard() ); strings.clear (); } - strings.push_back (*is); + dcp::SubtitleString is_copy = *is; + if (is_copy.font()) { + is_copy.set_font(_font_id_allocator.font_id(_reel - _reels.begin(), asset->id(), is_copy.font().get())); + } else { + is_copy.set_font(_font_id_allocator.default_font_id()); + } + strings.push_back(is_copy); } /* XXX: perhaps these image subs should also be collected together like the string ones are; this would need to be done both here and in DCPSubtitleDecoder. */ - shared_ptr ii = dynamic_pointer_cast (i); + auto ii = dynamic_pointer_cast(i); if (ii) { emit_subtitle_image ( ContentTimePeriod ( @@ -324,19 +340,21 @@ DCPDecoder::pass_texts ( } if (!strings.empty()) { - dcp::SubtitleString b = strings.back(); + auto b = strings.back(); decoder->emit_plain ( ContentTimePeriod ( ContentTime::from_frames(_offset - entry_point, vfr) + ContentTime::from_seconds(b.in().as_seconds()), ContentTime::from_frames(_offset - entry_point, vfr) + ContentTime::from_seconds(b.out().as_seconds()) ), - strings + strings, + asset->subtitle_standard() ); strings.clear (); } } } + void DCPDecoder::next_reel () { @@ -345,6 +363,7 @@ DCPDecoder::next_reel () get_readers (); } + void DCPDecoder::get_readers () { @@ -356,16 +375,18 @@ DCPDecoder::get_readers () return; } - if ((*_reel)->main_picture()) { - shared_ptr asset = (*_reel)->main_picture()->asset (); - shared_ptr mono = dynamic_pointer_cast (asset); - shared_ptr stereo = dynamic_pointer_cast (asset); + if (video && !video->ignore() && (*_reel)->main_picture()) { + auto asset = (*_reel)->main_picture()->asset (); + auto mono = dynamic_pointer_cast (asset); + auto stereo = dynamic_pointer_cast (asset); DCPOMATIC_ASSERT (mono || stereo); if (mono) { _mono_reader = mono->start_read (); + _mono_reader->set_check_hmac (false); _stereo_reader.reset (); } else { _stereo_reader = stereo->start_read (); + _stereo_reader->set_check_hmac (false); _mono_reader.reset (); } } else { @@ -373,15 +394,17 @@ DCPDecoder::get_readers () _stereo_reader.reset (); } - if ((*_reel)->main_sound()) { + if (audio && !audio->ignore() && (*_reel)->main_sound()) { _sound_reader = (*_reel)->main_sound()->asset()->start_read (); + _sound_reader->set_check_hmac (false); } else { _sound_reader.reset (); } if ((*_reel)->atmos()) { - shared_ptr asset = (*_reel)->atmos()->asset(); + auto asset = (*_reel)->atmos()->asset(); _atmos_reader = asset->start_read(); + _atmos_reader->set_check_hmac (false); _atmos_metadata = AtmosMetadata (asset); } else { _atmos_reader.reset (); @@ -389,6 +412,7 @@ DCPDecoder::get_readers () } } + void DCPDecoder::seek (ContentTime t, bool accurate) { @@ -406,7 +430,7 @@ DCPDecoder::seek (ContentTime t, bool accurate) /* Pre-roll for subs */ - ContentTime pre = t - ContentTime::from_seconds (pre_roll_seconds); + auto pre = t - ContentTime::from_seconds (pre_roll_seconds); if (pre < ContentTime()) { pre = ContentTime (); } @@ -418,7 +442,7 @@ DCPDecoder::seek (ContentTime t, bool accurate) pre >= ContentTime::from_frames ((*_reel)->main_picture()->actual_duration(), _dcp_content->active_video_frame_rate(film())) ) { - ContentTime rd = ContentTime::from_frames ((*_reel)->main_picture()->actual_duration(), _dcp_content->active_video_frame_rate(film())); + auto rd = ContentTime::from_frames ((*_reel)->main_picture()->actual_duration(), _dcp_content->active_video_frame_rate(film())); pre -= rd; t -= rd; next_reel (); @@ -426,10 +450,12 @@ DCPDecoder::seek (ContentTime t, bool accurate) /* Pass texts in the pre-roll */ - double const vfr = _dcp_content->active_video_frame_rate (film()); - for (int i = 0; i < pre_roll_seconds * vfr; ++i) { - pass_texts (pre, (*_reel)->main_picture()->asset()->size()); - pre += ContentTime::from_frames (1, vfr); + if (_reel != _reels.end()) { + auto const vfr = _dcp_content->active_video_frame_rate (film()); + for (int i = 0; i < pre_roll_seconds * vfr; ++i) { + pass_texts (pre, (*_reel)->main_picture()->asset()->size()); + pre += ContentTime::from_frames (1, vfr); + } } /* Seek to correct position */ @@ -446,6 +472,7 @@ DCPDecoder::seek (ContentTime t, bool accurate) _next = t; } + void DCPDecoder::set_decode_referenced (bool r) { @@ -459,17 +486,19 @@ DCPDecoder::set_decode_referenced (bool r) } } + void DCPDecoder::set_forced_reduction (optional reduction) { _forced_reduction = reduction; } + string DCPDecoder::calculate_lazy_digest (shared_ptr c) const { Digester d; - BOOST_FOREACH (boost::filesystem::path i, c->paths()) { + for (auto i: c->paths()) { d.add (i.string()); } if (_dcp_content->kdm()) { @@ -482,8 +511,10 @@ DCPDecoder::calculate_lazy_digest (shared_ptr c) const return d.get (); } + ContentTime DCPDecoder::position () const { return ContentTime::from_frames(_offset, _dcp_content->active_video_frame_rate(film())) + _next; } +