Derive exceptions from boost::exception and use boost::throw_exception to enable...
[libdcp.git] / src / sound_frame.cc
1 /*
2     Copyright (C) 2012 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 #include "AS_DCP.h"
21 #include "KM_fileio.h"
22 #include "sound_frame.h"
23 #include "exceptions.h"
24
25 using namespace std;
26 using namespace libdcp;
27
28 SoundFrame::SoundFrame (string mxf_path, int n)
29 {
30         ASDCP::PCM::MXFReader reader;
31         if (ASDCP_FAILURE (reader.OpenRead (mxf_path.c_str()))) {
32                 boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path));
33         }
34
35         /* XXX: unfortunate guesswork on this buffer size */
36         _buffer = new ASDCP::PCM::FrameBuffer (1 * Kumu::Megabyte);
37
38         if (ASDCP_FAILURE (reader.ReadFrame (n, *_buffer))) {
39                 boost::throw_exception (DCPReadError ("could not read audio frame"));
40         }
41 }
42
43 SoundFrame::~SoundFrame ()
44 {
45         delete _buffer;
46 }
47
48 uint8_t const *
49 SoundFrame::data () const
50 {
51         return _buffer->RoData();
52 }
53
54 int
55 SoundFrame::size () const
56 {
57         return _buffer->Size ();
58 }