diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-01 00:58:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-01 00:58:25 +0100 |
| commit | fe0963218c6b872fc669cd57790c8352e0e9d144 (patch) | |
| tree | 7729656e8dcb5c9274d92746bfd271fa14838b66 /src/reel_file_asset.h | |
| parent | d53fe6a7bb1d4934fb55b3fa9af0469a777c8091 (diff) | |
Re-order some parameters.
Diffstat (limited to 'src/reel_file_asset.h')
| -rw-r--r-- | src/reel_file_asset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_file_asset.h b/src/reel_file_asset.h index a109e1ab..47910702 100644 --- a/src/reel_file_asset.h +++ b/src/reel_file_asset.h @@ -53,8 +53,8 @@ namespace dcp { class ReelFileAsset : public ReelAsset { public: - ReelFileAsset(boost::optional<std::string> key_id, std::string id, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point, boost::optional<std::string> hash); - ReelFileAsset (std::shared_ptr<Asset> asset, boost::optional<std::string> key_id, std::string id, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); + ReelFileAsset(std::string id, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point, boost::optional<std::string> hash, boost::optional<std::string> key_id); + ReelFileAsset(std::shared_ptr<Asset> asset, boost::optional<std::string> key_id, std::string id, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelFileAsset (std::shared_ptr<const cxml::Node> node); virtual xmlpp::Element* write_to_cpl(xmlpp::Element* node, Standard standard) const override; |
