Add simple sample-access API to SoundFrame.
authorCarl Hetherington <cth@carlh.net>
Wed, 1 Mar 2017 21:05:21 +0000 (21:05 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 1 Mar 2017 21:05:21 +0000 (21:05 +0000)
src/sound_asset_writer.cc
src/sound_frame.cc [new file with mode: 0644]
src/sound_frame.h
src/wscript

index 74bf866e357cd46ce3eb227bca0470fbc978d090..e628b26e2823087f377a252cec3122076677b996 100644 (file)
 #include "compose.hpp"
 #include "encryption_context.h"
 #include <asdcp/AS_DCP.h>
+#include <iostream>
 
 using std::min;
 using std::max;
+using std::cout;
 using namespace dcp;
 
 struct SoundAssetWriter::ASDCPState
diff --git a/src/sound_frame.cc b/src/sound_frame.cc
new file mode 100644 (file)
index 0000000..915099a
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
+
+    This file is part of libdcp.
+
+    libdcp is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    libdcp is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
+
+    In addition, as a special exception, the copyright holders give
+    permission to link the code of portions of this program with the
+    OpenSSL library under certain conditions as described in each
+    individual source file, and distribute linked combinations
+    including the two.
+
+    You must obey the GNU General Public License in all respects
+    for all of the code used other than OpenSSL.  If you modify
+    file(s) with this exception, you may extend this exception to your
+    version of the file(s), but you are not obligated to do so.  If you
+    do not wish to do so, delete this exception statement from your
+    version.  If you delete this exception statement from all source
+    files in the program, then also delete it here.
+*/
+
+#include "sound_frame.h"
+#include <asdcp/AS_DCP.h>
+#include <iostream>
+
+using std::cout;
+using namespace dcp;
+
+SoundFrame::SoundFrame (ASDCP::PCM::MXFReader* reader, int n, boost::shared_ptr<const DecryptionContext> c)
+       : Frame (reader, n, c)
+{
+       ASDCP::PCM::AudioDescriptor desc;
+       reader->FillAudioDescriptor (desc);
+       _channels = desc.ChannelCount;
+}
+
+int32_t
+SoundFrame::get (int channel, int frame) const
+{
+       uint8_t const * d = data() + (frame * _channels * 3) + (channel * 3);
+       return d[0] | (d[1] << 8) | (d[2] << 16);
+}
+
+int
+SoundFrame::samples () const
+{
+       return size() / (_channels * 3);
+}
index 2b78c8e1d1116ae2e4ad600c838882d919e8ecfc..e58e4bf39029ec6396c9327d36612d78f0ba8820 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
 
 namespace dcp {
 
-typedef Frame<ASDCP::PCM::MXFReader, ASDCP::PCM::FrameBuffer> SoundFrame;
+class SoundFrame : public Frame<ASDCP::PCM::MXFReader, ASDCP::PCM::FrameBuffer>
+{
+public:
+       SoundFrame (ASDCP::PCM::MXFReader* reader, int n, boost::shared_ptr<const DecryptionContext> c);
+       int samples () const;
+       int32_t get (int channel, int sample) const;
+
+private:
+       int _channels;
+};
 
 }
 
index 3fd106396fad901d7462f4cedd9bd3a6ef327d04..dd8ee4e5ad9eec8bb6f07a952a61eb8f4dcee93f 100644 (file)
@@ -90,6 +90,7 @@ def build(bld):
              smpte_subtitle_asset.cc
              sound_asset.cc
              sound_asset_writer.cc
+             sound_frame.cc
              stereo_picture_asset.cc
              stereo_picture_asset_writer.cc
              stereo_picture_frame.cc