From c7b68d663ac3db10dcf2bfcc11009dce46f820dc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 10 Jul 2014 10:01:18 +0100 Subject: Decode DCP audio too. --- src/lib/dcp_decoder.cc | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'src/lib/dcp_decoder.cc') 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); -- cgit v1.2.3