diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-09-18 08:17:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-09-18 08:17:55 +0100 |
| commit | e436b324ed19b91008fdb56262f99f6d0269cabe (patch) | |
| tree | 1e6acf299930ddeeccdfa447d4fc7b2f52f5720d /src/picture_asset.cc | |
| parent | 1bb067620edd3fb0db37894975f3a19d595697db (diff) | |
Allow progressive writes to be encrypted.
Diffstat (limited to 'src/picture_asset.cc')
| -rw-r--r-- | src/picture_asset.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/picture_asset.cc b/src/picture_asset.cc index 2c35e9f9..1c480348 100644 --- a/src/picture_asset.cc +++ b/src/picture_asset.cc @@ -222,8 +222,8 @@ MonoPictureAsset::MonoPictureAsset ( construct (boost::bind (&MonoPictureAsset::path_from_list, this, _1, files), interop, metadata); } -MonoPictureAsset::MonoPictureAsset (string directory, string mxf_name, int fps, Size size) - : PictureAsset (directory, mxf_name, 0, fps, 0, false, size) +MonoPictureAsset::MonoPictureAsset (string directory, string mxf_name, int fps, Size size, bool encrypted) + : PictureAsset (directory, mxf_name, 0, fps, 0, encrypted, size) { } @@ -472,8 +472,8 @@ PictureAsset::key_type () const return "MDIK"; } -StereoPictureAsset::StereoPictureAsset (string directory, string mxf_name, int fps, Size size) - : PictureAsset (directory, mxf_name, 0, fps, 0, false, size) +StereoPictureAsset::StereoPictureAsset (string directory, string mxf_name, int fps, Size size, bool encrypted) + : PictureAsset (directory, mxf_name, 0, fps, 0, encrypted, size) { } |
