diff options
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 { |
