c79b29b36a576117600348e97c7a70073e922315
[libdcp.git] / src / sound_frame.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/sound_frame.cc
21  *  @brief SoundFrame class.
22  */
23
24 #include "sound_frame.h"
25 #include "exceptions.h"
26 #include "AS_DCP.h"
27 #include "KM_fileio.h"
28
29 using namespace std;
30 using namespace dcp;
31
32 SoundFrame::SoundFrame (boost::filesystem::path mxf_path, int n, ASDCP::AESDecContext* c)
33 {
34         ASDCP::PCM::MXFReader reader;
35         Kumu::Result_t r = reader.OpenRead (mxf_path.string().c_str());
36         if (ASDCP_FAILURE (r)) {
37                 boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path, r));
38         }
39
40         /* XXX: unfortunate guesswork on this buffer size */
41         _buffer = new ASDCP::PCM::FrameBuffer (1 * Kumu::Megabyte);
42
43         if (ASDCP_FAILURE (reader.ReadFrame (n, *_buffer, c))) {
44                 boost::throw_exception (DCPReadError ("could not read audio frame"));
45         }
46 }
47
48 SoundFrame::~SoundFrame ()
49 {
50         delete _buffer;
51 }
52
53 uint8_t const *
54 SoundFrame::data () const
55 {
56         return _buffer->RoData();
57 }
58
59 int
60 SoundFrame::size () const
61 {
62         return _buffer->Size ();
63 }