diff options
Diffstat (limited to 'src/sound_asset.h')
| -rw-r--r-- | src/sound_asset.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h index 3189c067..4633b9a7 100644 --- a/src/sound_asset.h +++ b/src/sound_asset.h @@ -44,6 +44,7 @@ public: * @param progress Signal to inform of progress. * @param fps Frames per second. * @param length Length in frames. + * @param encrypted true if asset should be encrypted. */ SoundAsset ( std::vector<std::string> const & files, @@ -51,7 +52,8 @@ public: std::string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, - int length + int length, + bool encrypted ); /** Construct a SoundAsset, generating the MXF from some WAV files. @@ -63,6 +65,7 @@ public: * @param fps Frames per second. * @param length Length in frames. * @param channels Number of audio channels. + * @param encrypted true if asset should be encrypted. */ SoundAsset ( boost::function<std::string (Channel)> get_path, @@ -71,7 +74,8 @@ public: boost::signals2::signal<void (float)>* progress, int fps, int length, - int channels + int channels, + bool encrypted ); SoundAsset ( |
