diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-09-19 15:07:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-09-19 15:07:21 +0100 |
| commit | 827901db3d834465b1121c9f8041b9faf4923ec9 (patch) | |
| tree | 299a162c0a25d989be4553d32c113d8e0ca098fe /src/sound_asset.cc | |
| parent | 1c24485f58cdb133477b4e1e201ba0acd93ac74e (diff) | |
Allow SoundAsset to be encrypted.
Diffstat (limited to 'src/sound_asset.cc')
| -rw-r--r-- | src/sound_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset.cc b/src/sound_asset.cc index 51f49d0e..29fbc0d7 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -104,8 +104,8 @@ SoundAsset::SoundAsset (string directory, string mxf_name) _intrinsic_duration = desc.ContainerDuration; } -SoundAsset::SoundAsset (string directory, string mxf_name, int fps, int channels, int sampling_rate) - : MXFAsset (directory, mxf_name, 0, fps, 0, false) +SoundAsset::SoundAsset (string directory, string mxf_name, int fps, int channels, int sampling_rate, bool encrypted) + : MXFAsset (directory, mxf_name, 0, fps, 0, encrypted) , _channels (channels) , _sampling_rate (sampling_rate) { |
