summaryrefslogtreecommitdiff
path: root/src/mxf_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-08-13 01:19:45 +0100
committerCarl Hetherington <cth@carlh.net>2012-08-13 01:19:45 +0100
commitc14a05a935886345d4d891a92a31b1c35bf10582 (patch)
treefc640e3c8187867029cef48b91df7ed308b80c82 /src/mxf_asset.h
parentc2ec345242b680426938ed3ef7332ede1d3276a6 (diff)
Missing files.
Diffstat (limited to 'src/mxf_asset.h')
-rw-r--r--src/mxf_asset.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/mxf_asset.h b/src/mxf_asset.h
new file mode 100644
index 00000000..35509311
--- /dev/null
+++ b/src/mxf_asset.h
@@ -0,0 +1,60 @@
+/*
+ Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef LIBDCP_MXF_ASSET_H
+#define LIBDCP_MXF_ASSET_H
+
+#include "asset.h"
+
+namespace libdcp
+{
+
+class MXFAsset : public Asset
+{
+public:
+ /** Construct an MXFAsset.
+ * @param directory Directory where MXF file is.
+ * @param mxf_name Name of MXF file.
+ * @param progress Signal to inform of progress.
+ * @param fps Frames per second.
+ * @param length Length in frames.
+ */
+ MXFAsset (std::string directory, std::string mxf_path, sigc::signal1<void, float>* progress, int fps, int length);
+
+ virtual std::list<std::string> equals (boost::shared_ptr<const Asset> other, EqualityOptions opt) const;
+
+ int length () const;
+
+protected:
+ /** Fill in a ADSCP::WriteInfo struct.
+ * @param w struct to fill in.
+ */
+ void fill_writer_info (ASDCP::WriterInfo* w) const;
+
+ /** Signal to emit to report progress */
+ sigc::signal1<void, float>* _progress;
+ /** Frames per second */
+ int _fps;
+ /** Length in frames */
+ int _length;
+};
+
+}
+
+#endif