cf015c30cfccdf3aed1b6c4bf5c56f74ad68a1a5
[libdcp.git] / src / sound_asset.h
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 #ifndef LIBDCP_SOUND_ASSET_H
21 #define LIBDCP_SOUND_ASSET_H
22
23 /** @file  src/sound_asset.h
24  *  @brief An asset made up of PCM audio data files
25  */
26
27 #include "mxf_asset.h"
28 #include "types.h"
29 #include "metadata.h"
30
31 namespace libdcp
32 {
33
34 class SoundFrame;
35 class SoundAsset;
36
37 class SoundAssetWriter
38 {
39 public:
40         void write (float const * const *, int);
41         void finalize ();
42
43 private:
44         friend class SoundAsset;
45
46         SoundAssetWriter (SoundAsset *, bool interop, MXFMetadata const &);
47
48         /* no copy construction */
49         SoundAssetWriter (SoundAssetWriter const &);
50         SoundAssetWriter& operator= (SoundAssetWriter const &);
51         
52         void write_current_frame ();
53
54         /* do this with an opaque pointer so we don't have to include
55            ASDCP headers
56         */
57            
58         struct ASDCPState;
59         boost::shared_ptr<ASDCPState> _state;
60
61         SoundAsset* _asset;
62         bool _finalized;
63         int _frames_written;
64         int _frame_buffer_offset;
65         MXFMetadata _metadata;
66 };
67
68 /** @brief An asset made up of WAV files */
69 class SoundAsset : public MXFAsset
70 {
71 public:
72         /** Construct a SoundAsset, generating the MXF from some WAV files.
73          *  This may take some time; progress is indicated by emission of the Progress signal.
74          *  @param files Pathnames of sound files, in the order Left, Right, Centre, Lfe (sub), Left surround, Right surround.
75          *  @param directory Directory in which to create MXF file.
76          *  @param mxf_name Name of MXF file to create.
77          *  @param progress Signal to inform of progress.
78          *  @param fps Frames per second.
79          *  @param length Length in frames.
80          *  @param start_frame Frame in the source to start writing from.
81          *  @param intrinsic_duration Length of the whole asset in frames.
82          *  @param encrypted true if asset should be encrypted.
83          *  Note that this is different to entry_point in that the asset will contain no data before start_frame.
84          */
85         SoundAsset (
86                 std::vector<std::string> const & files,
87                 std::string directory,
88                 std::string mxf_name,
89                 boost::signals2::signal<void (float)>* progress,
90                 int fps,
91                 int intrinsic_duration,
92                 bool encrypted,
93                 bool interop,
94                 MXFMetadata const & metadata = MXFMetadata ()
95                 );
96
97         /** Construct a SoundAsset, generating the MXF from some WAV files.
98          *  This may take some time; progress is indicated by emission of the Progress signal.
99          *  @param get_path Functor which returns a WAV file path for a given channel.
100          *  @param directory Directory in which to create MXF file.
101          *  @param mxf_name Name of MXF file to create.
102          *  @param progress Signal to inform of progress.
103          *  @param fps Frames per second.
104          *  @param intrinsic_duration Length of the whole asset in frames.
105          *  @param channels Number of audio channels.
106          *  @param encrypted true if asset should be encrypted.
107          */
108         SoundAsset (
109                 boost::function<std::string (Channel)> get_path,
110                 std::string directory,
111                 std::string mxf_name,
112                 boost::signals2::signal<void (float)>* progress,
113                 int fps,
114                 int intrinsic_duration,
115                 int channels,
116                 bool encrypted,
117                 bool interop,
118                 MXFMetadata const & metadata = MXFMetadata ()
119                 );
120
121         SoundAsset (
122                 std::string directory,
123                 std::string mxf_name
124                 );
125
126         SoundAsset (
127                 std::string directory,
128                 std::string mxf_name,
129                 int fps,
130                 int channels,
131                 int sampling_rate,
132                 bool encrypted
133                 );
134
135         boost::shared_ptr<SoundAssetWriter> start_write (bool, MXFMetadata const & metadata = MXFMetadata ());
136         
137         bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const;
138
139         boost::shared_ptr<const SoundFrame> get_frame (int n) const;
140         
141         int channels () const {
142                 return _channels;
143         }
144
145         int sampling_rate () const {
146                 return _sampling_rate;
147         }
148
149 private:
150         std::string key_type () const;
151         void construct (boost::function<std::string (Channel)> get_path, bool interop, MXFMetadata const &);
152         std::string path_from_channel (Channel channel, std::vector<std::string> const & files);
153         std::string cpl_node_name () const;
154
155         /** Number of channels in the asset */
156         int _channels;
157         int _sampling_rate;
158 };
159
160 }
161
162 #endif