summaryrefslogtreecommitdiff
path: root/src/sound_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-09-19 20:44:42 +0100
committerCarl Hetherington <cth@carlh.net>2013-09-19 20:44:42 +0100
commit8d6c3c9ae554430582dcb016897e87f6d04d5d78 (patch)
tree5b329eeb60fe7372cc89740d4cf8fa1d5fe51614 /src/sound_asset.h
parent827901db3d834465b1121c9f8041b9faf4923ec9 (diff)
Various encryption-related stuff.
Diffstat (limited to 'src/sound_asset.h')
-rw-r--r--src/sound_asset.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h
index cf015c30..339e67f8 100644
--- a/src/sound_asset.h
+++ b/src/sound_asset.h
@@ -79,7 +79,6 @@ public:
* @param length Length in frames.
* @param start_frame Frame in the source to start writing from.
* @param intrinsic_duration Length of the whole asset in frames.
- * @param encrypted true if asset should be encrypted.
* Note that this is different to entry_point in that the asset will contain no data before start_frame.
*/
SoundAsset (
@@ -89,7 +88,6 @@ public:
boost::signals2::signal<void (float)>* progress,
int fps,
int intrinsic_duration,
- bool encrypted,
bool interop,
MXFMetadata const & metadata = MXFMetadata ()
);
@@ -103,7 +101,6 @@ public:
* @param fps Frames per second.
* @param intrinsic_duration Length of the whole asset in frames.
* @param channels Number of audio channels.
- * @param encrypted true if asset should be encrypted.
*/
SoundAsset (
boost::function<std::string (Channel)> get_path,
@@ -113,7 +110,6 @@ public:
int fps,
int intrinsic_duration,
int channels,
- bool encrypted,
bool interop,
MXFMetadata const & metadata = MXFMetadata ()
);
@@ -128,8 +124,7 @@ public:
std::string mxf_name,
int fps,
int channels,
- int sampling_rate,
- bool encrypted
+ int sampling_rate
);
boost::shared_ptr<SoundAssetWriter> start_write (bool, MXFMetadata const & metadata = MXFMetadata ());