summaryrefslogtreecommitdiff
path: root/src/asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-17 17:47:28 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-17 17:47:28 +0100
commitb6718fb437f242fd5127194d4c94e39d71c5e1ad (patch)
treee6c0fb61d5252bb72969cdeaa752875bb06e14e3 /src/asset.h
parent1c22ef308a1d62b4c6935ede8233b1fea082b0ca (diff)
Some comments; fix up a UUID I think.
Diffstat (limited to 'src/asset.h')
-rw-r--r--src/asset.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/asset.h b/src/asset.h
index ce742d11..fb701570 100644
--- a/src/asset.h
+++ b/src/asset.h
@@ -30,6 +30,7 @@ namespace ASDCP {
namespace libdcp
{
+/** Parent class for assets (picture / sound collections) */
class Asset
{
public:
@@ -39,15 +40,23 @@ public:
void write_to_pkl (std::ostream &) const;
void write_to_assetmap (std::ostream &) const;
+ /** Emitted with a parameter between 0 and 1 to indicate progress in constructing
+ * this asset.
+ */
sigc::signal1<void, float> Progress;
protected:
void fill_writer_info (ASDCP::WriterInfo *) const;
+ /** Path to our MXF file */
std::string _mxf_path;
+ /** Frames per second */
int _fps;
+ /** Length in frames */
int _length;
+ /** Our UUID */
std::string _uuid;
+ /** Digest of our MXF */
std::string _digest;
};