Comments.
authorCarl Hetherington <cth@carlh.net>
Fri, 29 Jul 2016 23:14:01 +0000 (00:14 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 29 Jul 2016 23:14:01 +0000 (00:14 +0100)
src/asset.cc
src/asset.h
src/dcp_time.h
src/smpte_subtitle_asset.h

index 32f4e07974c2f194bd441b1db9e1f2bf1a1967c5..1a3bd363e30e284e8d9b2ef429910246bf2db38d 100644 (file)
@@ -64,6 +64,10 @@ Asset::Asset (boost::filesystem::path file)
 
 }
 
+/** Create an Asset from a given file with a known ID.
+ *  @param file File name.
+ *  @param id ID.
+ */
 Asset::Asset (string id, boost::filesystem::path file)
        : Object (id)
        , _file (file)
index 1871b7ee399120be05e7476b3477e3dc64907368..214cc227e930385b5b9311727e4866392d01ff80 100644 (file)
@@ -103,6 +103,7 @@ protected:
 private:
        friend struct ::asset_test;
 
+       /** @return type string for PKLs for this asset */
        virtual std::string pkl_type (Standard standard) const = 0;
 
        /** Hash of _file if it has been computed */
index 2a9f13d849c75e3d3d208e6901a5001e021089e2..1fae786c03e274fc35b12cd63208bc901562bfd7 100644 (file)
@@ -56,7 +56,7 @@ public:
        Time () : h (0), m (0), s (0), e (0), tcr (1) {}
 
        /** Construct a Time.
-        *  @param Frame index (starting from 0).
+        *  @param frame Frame index (starting from 0).
         *  @param frames_per_second Frames per second.
         *  @param tcr Timecode rate.
         */
index e5ac5e968c55ba3e421b92f23c2de2b50e994f5c..ffe5b6d9bdf23f99cf050d256de001853b2d4508 100644 (file)
@@ -164,6 +164,7 @@ private:
         *  content presented may be less than this.
         */
        int64_t _intrinsic_duration;
+       /** <ContentTitleText> from the asset */
        std::string _content_title_text;
        boost::optional<std::string> _language;
        boost::optional<std::string> _annotation_text;