libdcp
sound_asset.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3 
4  This file is part of libdcp.
5 
6  libdcp is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  libdcp is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with libdcp. If not, see <http://www.gnu.org/licenses/>.
18 
19  In addition, as a special exception, the copyright holders give
20  permission to link the code of portions of this program with the
21  OpenSSL library under certain conditions as described in each
22  individual source file, and distribute linked combinations
23  including the two.
24 
25  You must obey the GNU General Public License in all respects
26  for all of the code used other than OpenSSL. If you modify
27  file(s) with this exception, you may extend this exception to your
28  version of the file(s), but you are not obligated to do so. If you
29  do not wish to do so, delete this exception statement from your
30  version. If you delete this exception statement from all source
31  files in the program, then also delete it here.
32 */
33 
34 
40 #ifndef LIBDCP_SOUND_ASSET_H
41 #define LIBDCP_SOUND_ASSET_H
42 
43 
44 #include "mxf.h"
45 #include "language_tag.h"
46 #include "metadata.h"
47 #include "sound_frame.h"
48 #include "sound_asset_reader.h"
49 
50 
51 namespace dcp {
52  class SoundAsset;
53 }
54 
55 
56 extern std::shared_ptr<dcp::SoundAsset> simple_sound (
57  boost::filesystem::path path, std::string suffix, dcp::MXFMetadata mxf_meta, std::string language, int frames, int sample_rate, boost::optional<dcp::Key>, int channels
58  );
59 
60 
61 namespace dcp
62 {
63 
64 
65 class SoundAssetWriter;
66 
67 
71 class SoundAsset : public Asset, public MXF
72 {
73 public:
74  explicit SoundAsset (boost::filesystem::path file);
75  SoundAsset (Fraction edit_rate, int sampling_rate, int channels, LanguageTag language, Standard standard);
76 
77  enum class AtmosSync {
78  ENABLED,
79  DISABLED
80  };
81 
82  enum class MCASubDescriptors {
83  ENABLED,
84  DISABLED
85  };
86 
90  std::shared_ptr<SoundAssetWriter> start_write(
91  boost::filesystem::path file,
92  std::vector<dcp::Channel> extra_active_channels,
93  AtmosSync atmos_sync,
94  MCASubDescriptors mca_subdescriptors
95  );
96 
97  std::shared_ptr<SoundAssetReader> start_read () const;
98 
99  bool equals (
100  std::shared_ptr<const Asset> other,
101  EqualityOptions const& opt,
102  NoteHandler note
103  ) const override;
104 
106  int channels () const {
107  return _channels;
108  }
109 
111  int active_channels() const;
112 
114  int sampling_rate () const {
115  return _sampling_rate;
116  }
117 
121  int bit_depth() const {
122  return _bit_depth;
123  }
124 
125  Fraction edit_rate () const {
126  return _edit_rate;
127  }
128 
129  int64_t intrinsic_duration () const {
130  return _intrinsic_duration;
131  }
132 
133  boost::optional<std::string> language () const {
134  return _language;
135  }
136 
137  static bool valid_mxf (boost::filesystem::path);
138  static std::string static_pkl_type (Standard standard);
139 
140 private:
141  friend class SoundAssetWriter;
142  friend std::shared_ptr<dcp::SoundAsset> (::simple_sound) (
143  boost::filesystem::path path, std::string suffix, dcp::MXFMetadata mxf_meta, std::string language, int frames, int sample_rate, boost::optional<dcp::Key>, int channels
144  );
145 
146  std::string pkl_type (Standard standard) const override {
147  return static_pkl_type (standard);
148  }
149 
150  Fraction _edit_rate;
154  int64_t _intrinsic_duration = 0;
155  int _channels = 0;
156  boost::optional<int> _active_channels;
157  int _sampling_rate = 0;
158  int _bit_depth = 24;
159  boost::optional<std::string> _language;
160 };
161 
162 
163 }
164 
165 
166 #endif
Parent class for DCP assets, i.e. picture, sound, subtitles, closed captions, CPLs,...
Definition: asset.h:73
virtual std::string pkl_type(Standard standard) const =0
boost::optional< boost::filesystem::path > file() const
Definition: asset.h:100
A class to describe what "equality" means for a particular test.
A fraction (i.e. a thing with an integer numerator and an integer denominator).
Definition: types.h:168
Metadata that is written to a MXF file's header.
Definition: metadata.h:63
Parent for classes which represent MXF files.
Definition: mxf.h:74
Representation of a sound asset.
Definition: sound_asset.h:72
int bit_depth() const
Definition: sound_asset.h:121
int active_channels() const
Definition: sound_asset.cc:292
int sampling_rate() const
Definition: sound_asset.h:114
int channels() const
Definition: sound_asset.h:106
int _channels
number of channels in the MXF
Definition: sound_asset.h:155
int _sampling_rate
sampling rate in Hz
Definition: sound_asset.h:157
boost::optional< int > _active_channels
estimate of the number of active channels
Definition: sound_asset.h:156
std::shared_ptr< SoundAssetWriter > start_write(boost::filesystem::path file, std::vector< dcp::Channel > extra_active_channels, AtmosSync atmos_sync, MCASubDescriptors mca_subdescriptors)
Definition: sound_asset.cc:243
int64_t _intrinsic_duration
Definition: sound_asset.h:154
LanguageTag class.
MXFMetadata class.
MXF class.
Namespace for everything in libdcp.
Definition: array_data.h:50
SoundAssetReader typedef.
SoundFrame class.