From c7b68d663ac3db10dcf2bfcc11009dce46f820dc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 10 Jul 2014 10:01:18 +0100 Subject: [PATCH] Decode DCP audio too. --- src/lib/dcp_content.cc | 1 + src/lib/dcp_decoder.cc | 23 +++++++++++++++++++++-- src/lib/dcp_examiner.cc | 2 ++ src/lib/dcp_examiner.h | 17 +++++++++++++++-- 4 files changed, 39 insertions(+), 4 deletions(-) diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 8b809a1bd..8ecd52f24 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -68,6 +68,7 @@ DCPContent::examine (shared_ptr job) Content::examine (job); shared_ptr examiner (new DCPExaminer (shared_from_this ())); take_from_video_examiner (examiner); + take_from_audio_examiner (examiner); boost::mutex::scoped_lock lm (_mutex); _name = examiner->name (); diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc index e9c110108..d0642d8b6 100644 --- a/src/lib/dcp_decoder.cc +++ b/src/lib/dcp_decoder.cc @@ -23,8 +23,10 @@ #include #include #include +#include #include #include +#include #include "dcp_decoder.h" #include "dcp_content.h" #include "j2k_image_proxy.h" @@ -57,13 +59,13 @@ DCPDecoder::pass () } float const vfr = _dcp_content->video_frame_rate (); + int64_t const frame = _next.frames (vfr); if ((*_reel)->main_picture ()) { shared_ptr mxf = (*_reel)->main_picture()->mxf (); shared_ptr mono = dynamic_pointer_cast (mxf); shared_ptr stereo = dynamic_pointer_cast (mxf); int64_t const entry_point = (*_reel)->main_picture()->entry_point (); - int64_t const frame = _next.frames (vfr); if (mono) { video (shared_ptr (new J2KImageProxy (mono->get_frame (entry_point + frame), mxf->size(), _log)), frame); } else { @@ -79,7 +81,24 @@ DCPDecoder::pass () } } - /* XXX: sound */ + if ((*_reel)->main_sound ()) { + int64_t const entry_point = (*_reel)->main_sound()->entry_point (); + shared_ptr sf = (*_reel)->main_sound()->mxf()->get_frame (entry_point + frame); + uint8_t const * from = sf->data (); + + int const channels = _dcp_content->audio_channels (); + int const frames = sf->size() / (3 * channels); + shared_ptr data (new AudioBuffers (channels, frames)); + for (int i = 0; i < frames; ++i) { + for (int j = 0; j < channels; ++j) { + data->data()[j][i] = float (from[0] | (from[1] << 8) | (from[2] << 16)) / (1 << 23); + from += 3; + } + } + + audio (data, _next); + } + /* XXX: subtitle */ _next += ContentTime::from_frames (1, vfr); diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc index 3051a4670..39bf2d098 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -81,6 +81,8 @@ DCPExaminer::DCPExaminer (shared_ptr content) } else if (_audio_frame_rate.get() != mxf->sampling_rate ()) { throw DCPError (_("Mismatched audio frame rates in DCP")); } + + _audio_length += ContentTime::from_frames ((*i)->main_sound()->duration(), _video_frame_rate.get ()); } } } diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index a2793c788..24a59dd34 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -18,10 +18,11 @@ */ #include "video_examiner.h" +#include "audio_examiner.h" class DCPContent; -class DCPExaminer : public VideoExaminer +class DCPExaminer : public VideoExaminer, public AudioExaminer { public: DCPExaminer (boost::shared_ptr); @@ -42,12 +43,24 @@ public: return _name; } + int audio_channels () const { + return _audio_channels.get_value_or (0); + } + + ContentTime audio_length () const { + return _audio_length; + } + + int audio_frame_rate () const { + return _audio_frame_rate.get_value_or (48000); + } + private: boost::optional _video_frame_rate; boost::optional _video_size; ContentTime _video_length; - /* XXX: used? */ boost::optional _audio_channels; boost::optional _audio_frame_rate; + ContentTime _audio_length; std::string _name; }; -- 2.30.2