summaryrefslogtreecommitdiff
path: root/src/picture_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/picture_asset.h
parent827901db3d834465b1121c9f8041b9faf4923ec9 (diff)
Various encryption-related stuff.
Diffstat (limited to 'src/picture_asset.h')
-rw-r--r--src/picture_asset.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/picture_asset.h b/src/picture_asset.h
index 7fcc2efb..398f8868 100644
--- a/src/picture_asset.h
+++ b/src/picture_asset.h
@@ -64,7 +64,6 @@ public:
boost::signals2::signal<void (float)>* progress,
int fps,
int intrinsic_duration,
- bool encrypted,
Size
);
@@ -112,7 +111,6 @@ public:
* @param fps Video frames per second.
* @param intrinsic_duration Total number of frames in the asset.
* @param size Size of images in pixels.
- * @param encrypted true if asset should be encrypted.
*/
MonoPictureAsset (
std::vector<std::string> const & files,
@@ -121,7 +119,6 @@ public:
boost::signals2::signal<void (float)>* progress,
int fps,
int intrinsic_duration,
- bool encrypted,
Size size,
bool interop,
MXFMetadata const & metadata = MXFMetadata ()
@@ -137,7 +134,6 @@ public:
* @param fps Video frames per second.
* @param intrinsic_duration Total number of frames in the asset.
* @param size Size of images in pixels.
- * @param encrypted true if asset should be encrypted.
*/
MonoPictureAsset (
boost::function<std::string (int)> get_path,
@@ -146,7 +142,6 @@ public:
boost::signals2::signal<void (float)>* progress,
int fps,
int intrinsic_duration,
- bool encrypted,
Size size,
bool interop,
MXFMetadata const & metadata = MXFMetadata ()
@@ -166,7 +161,7 @@ public:
* @param fps Video frames per second.
* @param size Size in pixels that the picture frames will be.
*/
- MonoPictureAsset (std::string directory, std::string mxf_name, int fps, Size size, bool encrypted);
+ MonoPictureAsset (std::string directory, std::string mxf_name, int fps, Size size);
/** Start a progressive write to a MonoPictureAsset */
boost::shared_ptr<PictureAssetWriter> start_write (bool, bool, MXFMetadata const & metadata = MXFMetadata ());
@@ -195,7 +190,7 @@ public:
* @param fps Video frames per second.
* @param size Size in pixels that the picture frames will be.
*/
- StereoPictureAsset (std::string directory, std::string mxf_name, int fps, Size size, bool encrypted);
+ StereoPictureAsset (std::string directory, std::string mxf_name, int fps, Size size);
/** Start a progressive write to a StereoPictureAsset */
boost::shared_ptr<PictureAssetWriter> start_write (bool, bool, MXFMetadata const & metadata = MXFMetadata ());