summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-17 21:09:39 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-17 21:09:39 +0100
commit82d22d7ff5328fae4f2e3048e63a2b11f3ce36b4 (patch)
tree82bdbe0285f159bcfd8204d53efe938bd5999095 /src/dcp.h
parent4709b2fe88040f3678560997726f3a209eacc660 (diff)
Doc fixes.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h103
1 files changed, 94 insertions, 9 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 6170896b..b2d20c69 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -25,12 +25,54 @@
#include <boost/shared_ptr.hpp>
#include <sigc++/sigc++.h>
+/** @brief Namespace for everything in libdcp */
namespace libdcp
{
class Asset;
-/** A class to create a DCP */
+/** @class DCP dcp.h libdcp/dcp.h
+ * @brief A class to create a DCP.
+ *
+ * Typical use might be:
+ * @code
+ * #include <libdcp/dcp.h>
+ * using namespace std;
+ *
+ * libdcp::DCP dcp ("My Film DCP", "My Film", libdcp::DCP::FEATURE, 24, 50000);
+ *
+ * list<string> j2k_files;
+ * j2k_files.push_back ("1.j2c");
+ * ...
+ * j2k_files.push_back ("50000.j2c");
+ *
+ * // These images are 1998x1080 pixels (DCI Flat)
+ * dcp.add_picture_asset (j2k_files, 1998, 1080);
+ *
+ * list<string> wav_files;
+ * wav_files.push_back ("L.wav");
+ * wav_files.push_back ("R.wav");
+ * wav_files.push_back ("C.wav");
+ * wav_files.push_back ("Lfe.wav");
+ * wav_files.push_back ("Ls.wav");
+ * wav_files.push_back ("Rs.wav");
+ * dcp.add_sound_asset (wav_files);
+ *
+ * dcp.write_xml ();
+ *
+ * @endcode
+ *
+ * This will create a DCP at 24 frames per second with 50000 frames, writing
+ * data to a directory "My Film DCP", naming the DCP "My Film" and marking
+ * as a Feature. We then add the picture and sound files (which creates
+ * MXF files inside the DCP directory) and then write the required XML files.
+ *
+ * If you want to report progress for long jobs (add_picture_asset() can
+ * take a long time, in particular, as it must do a lot of disk I/O for
+ * large DCPs), connect to the libdcp::DCP::Progress signal and report its parameter
+ * to the user (it will range between 0 for 0% and 1 for 100%).
+ */
+
class DCP
{
public:
@@ -47,12 +89,32 @@ public:
PUBLIC_SERVICE_ANNOUNCEMENT,
ADVERTISEMENT
};
-
- DCP (std::string, std::string, ContentType, int, int);
- void add_sound_asset (std::list<std::string> const &);
- void add_picture_asset (std::list<std::string> const &, int, int);
+ /** Construct a DCP.
+ * @param directory Directory to write files to.
+ * @param name Name.
+ * @param content_type Content type.
+ * @param fps Frames per second.
+ * @param length Length in frames.
+ */
+ DCP (std::string directory, std::string name, ContentType content_type, int fps, int length);
+
+ /** Add a sound asset.
+ * @param files Pathnames of WAV files to use in the order Left, Right,
+ * Centre, Lfe (sub), Left surround, Right surround.
+ */
+ void add_sound_asset (std::list<std::string> const & files);
+ /** Add a picture asset.
+ * @param files Pathnames of JPEG2000 files, in frame order.
+ * @param width Width of images in pixels.
+ * @param height Height of images in pixels.
+ */
+ void add_picture_asset (std::list<std::string> const & files, int width, int height);
+
+ /** Write the required XML files to the directory that was
+ * passed into the constructor.
+ */
void write_xml () const;
/** Emitted with a parameter between 0 and 1 to indicate progress
@@ -62,12 +124,35 @@ public:
private:
- std::string write_cpl (std::string) const;
- std::string write_pkl (std::string, std::string, std::string, int) const;
+ /** Write the CPL file.
+ * @param cpl_uuid UUID to use.
+ * @return CPL pathname.
+ */
+ std::string write_cpl (std::string cpl_uuid) const;
+
+ /** Write the PKL file.
+ * @param pkl_uuid UUID to use.
+ * @param cpl_uuid UUID of the CPL file.
+ * @param cpl_digest SHA digest of the CPL file.
+ * @param cpl_length Length of the CPL file in bytes.
+ */
+ std::string write_pkl (std::string pkl_uuid, std::string cpl_uuid, std::string cpl_digest, int cpl_length) const;
+
+ /** Write the VOLINDEX file */
void write_volindex () const;
- void write_assetmap (std::string, int, std::string, int) const;
- static std::string content_type_string (ContentType);
+ /** Write the ASSETMAP file.
+ * @param cpl_uuid UUID of our CPL.
+ * @param cpl_length Length of our CPL in bytes.
+ * @param pkl_uuid UUID of our PKL.
+ * @param pkl_length Length of our PKL in bytes.
+ */
+ void write_assetmap (std::string cpl_uuid, int cpl_length, std::string pkl_uuid, int pkl_length) const;
+
+ /** @param type A content type.
+ * @return A string representation suitable for use in a CPL.
+ */
+ static std::string content_type_string (ContentType type);
/** the directory that we are writing to */
std::string _directory;