diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-05 01:24:19 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-05 01:24:19 +0000 |
| commit | 5ee3348142f4cfafdbcf2c9c833843d717affc11 (patch) | |
| tree | 1c97c80eeccc6b5f515a611e35dee35b21d3b09b /src/mono_picture_asset.h | |
| parent | 740938890d95e853cf13d4780a5d674c3d6c7f6f (diff) | |
Various IMF hacks.imf
Diffstat (limited to 'src/mono_picture_asset.h')
| -rw-r--r-- | src/mono_picture_asset.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mono_picture_asset.h b/src/mono_picture_asset.h index a10eada0..1febf4ed 100644 --- a/src/mono_picture_asset.h +++ b/src/mono_picture_asset.h @@ -21,6 +21,9 @@ #define LIBDCP_MONO_PICTURE_ASSET_H #include "picture_asset.h" +#include "exceptions.h" +#include <KM_error.h> +#include <AS_DCP.h> namespace dcp { @@ -35,7 +38,7 @@ public: /** Create a MonoPictureAsset by reading a file. * @param file Asset file to read. */ - MonoPictureAsset (boost::filesystem::path file); + MonoPictureAsset (boost::filesystem::path file, AssetType type); /** Create a MonoPictureAsset with a given edit rate. * @param edit_rate Edit rate (i.e. frame rate) in frames per second. @@ -55,6 +58,8 @@ public: private: std::string cpl_node_name () const; + + AssetType _type; }; } |
