591b0a47ed158106ef813f3713ef683cc8736e98
[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 WAV files
25  */
26
27 #include "asset.h"
28 #include "types.h"
29
30 namespace libdcp
31 {
32
33 /** @brief An asset made up of WAV files */
34 class SoundAsset : public Asset
35 {
36 public:
37         /** Construct a SoundAsset, generating the MXF from the WAV files.
38          *  This may take some time; progress is indicated by emission of the Progress signal.
39          *  @param files Pathnames of sound files, in the order Left, Right, Centre, Lfe (sub), Left surround, Right surround.
40          *  @param mxf_path Pathname of MXF file to create.
41          *  @param progress Signal to inform of progress.
42          *  @param fps Frames per second.
43          *  @param length Length in frames.
44          *  @param channels Number of audio channels.
45          */
46         SoundAsset (
47                 std::vector<std::string> const & files,
48                 std::string mxf_path,
49                 sigc::signal1<void, float>* progress,
50                 int fps,
51                 int length
52                 );
53
54         /** Construct a SoundAsset, generating the MXF from the WAV files.
55          *  This may take some time; progress is indicated by emission of the Progress signal.
56          *  @param files Pathnames of sound files, in the order Left, Right, Centre, Lfe (sub), Left surround, Right surround.
57          *  @param mxf_path Pathname of MXF file to create.
58          *  @param progress Signal to inform of progress.
59          *  @param fps Frames per second.
60          *  @param length Length in frames.
61          *  @param channels Number of audio channels.
62          */
63         SoundAsset (
64                 sigc::slot<std::string, Channel>,
65                 std::string mxf_path,
66                 sigc::signal1<void, float>* progress,
67                 int fps,
68                 int length,
69                 int channels
70                 );
71         
72         /** Write details of this asset to a CPL stream.
73          *  @param s Stream.
74          */
75         void write_to_cpl (std::ostream& s) const;
76
77 private:
78         void construct (sigc::slot<std::string, Channel> get_path);
79         std::string path_from_channel (Channel channel, std::vector<std::string> const & files);
80
81         /** Number of channels in the asset */
82         int _channels;
83 };
84
85 }
86
87 #endif