diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-10 15:33:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-10 15:33:26 +0100 |
| commit | e7bc3bd16456c17bc6fe1d7981040b14e820505e (patch) | |
| tree | cd37e3bbaceb58206a9b9286d54946e7835d6af7 /src/lib/ratio.h | |
| parent | 2b2c655fd39fbdae9f6298c3bde171da126dc470 (diff) | |
Use ISDCF rather than DCI when talking about the digital cinema
naming convention (#362).
Reported-by: Mattias Mattsson
Diffstat (limited to 'src/lib/ratio.h')
| -rw-r--r-- | src/lib/ratio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ratio.h b/src/lib/ratio.h index f3354f1b6..8b1a1fc71 100644 --- a/src/lib/ratio.h +++ b/src/lib/ratio.h @@ -31,7 +31,7 @@ public: : _ratio (ratio) , _id (id) , _nickname (n) - , _dci_name (d) + , _isdcf_name (d) {} std::string id () const { @@ -42,8 +42,8 @@ public: return _nickname; } - std::string dci_name () const { - return _dci_name; + std::string isdcf_name () const { + return _isdcf_name; } float ratio () const { @@ -62,7 +62,7 @@ private: std::string _id; /** nickname (e.g. Flat, Scope) */ std::string _nickname; - std::string _dci_name; + std::string _isdcf_name; static std::vector<Ratio const *> _ratios; }; |
