diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-31 11:41:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-31 11:41:22 +0100 |
| commit | 32e93176fa91b215d68dee24e7887a21041da54c (patch) | |
| tree | 1221f90e46882ef2837f554a0b8e59ea359ae916 /src/cpl.h | |
| parent | 32af25f217aa857b6ea7df3e8e18ff9df5f85dea (diff) | |
Use int64 in a few places.
Diffstat (limited to 'src/cpl.h')
| -rw-r--r-- | src/cpl.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -12,9 +12,9 @@ public: std::string id; std::string annotation_text; Fraction edit_rate; - int intrinsic_duration; - int entry_point; - int duration; + int64_t intrinsic_duration; + int64_t entry_point; + int64_t duration; Fraction frame_rate; Fraction screen_aspect_ratio; }; @@ -28,9 +28,9 @@ public: std::string id; std::string annotation_text; Fraction edit_rate; - int intrinsic_duration; - int entry_point; - int duration; + int64_t intrinsic_duration; + int64_t entry_point; + int64_t duration; }; class CPLAssetList : public XMLNode |
