summaryrefslogtreecommitdiff
path: root/src/picture_asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-31 00:07:08 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-31 00:07:08 +0100
commitd8c9cbec9d87f28da338350880b7618b94f4da81 (patch)
treec1e853ab494ac3731982c075046215f670153232 /src/picture_asset.cc
parent9a9d4e014c16be88d72914a9480343445bc785a5 (diff)
Bits.
Diffstat (limited to 'src/picture_asset.cc')
-rw-r--r--src/picture_asset.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/picture_asset.cc b/src/picture_asset.cc
index eb06012f..2f8a622a 100644
--- a/src/picture_asset.cc
+++ b/src/picture_asset.cc
@@ -66,6 +66,14 @@ PictureAsset::PictureAsset (
construct (sigc::bind (sigc::mem_fun (*this, &PictureAsset::path_from_list), files));
}
+PictureAsset::PictureAsset (string mxf_path, int fps, int length, int width, int height)
+ : Asset (mxf_path, 0, fps, length)
+ , _width (width)
+ , _height (height)
+{
+
+}
+
string
PictureAsset::path_from_list (int f, vector<string> const & files) const
{