diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-31 00:07:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-31 00:07:08 +0100 |
| commit | d8c9cbec9d87f28da338350880b7618b94f4da81 (patch) | |
| tree | c1e853ab494ac3731982c075046215f670153232 /src/picture_asset.cc | |
| parent | 9a9d4e014c16be88d72914a9480343445bc785a5 (diff) | |
Bits.
Diffstat (limited to 'src/picture_asset.cc')
| -rw-r--r-- | src/picture_asset.cc | 8 |
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 { |
