diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
| commit | 76e3325a16cdf6d7220a61e2b5cfdb9c804cc32c (patch) | |
| tree | 8c1b5e5dc2cec265469a0d8018b6d7396b089432 /src/reel_stereo_picture_asset.cc | |
| parent | 6c3db78c3d20ef064fa2a0ef38e65ca1ae69adb3 (diff) | |
Use enum class for the things in types.h
Diffstat (limited to 'src/reel_stereo_picture_asset.cc')
| -rw-r--r-- | src/reel_stereo_picture_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_stereo_picture_asset.cc b/src/reel_stereo_picture_asset.cc index 06c57c66..958f8393 100644 --- a/src/reel_stereo_picture_asset.cc +++ b/src/reel_stereo_picture_asset.cc @@ -67,9 +67,9 @@ pair<string, string> ReelStereoPictureAsset::cpl_node_attribute (Standard standard) const { switch (standard) { - case INTEROP: + case Standard::INTEROP: return make_pair ("xmlns:msp-cpl", "http://www.digicine.com/schemas/437-Y/2007/Main-Stereo-Picture-CPL"); - case SMPTE: + case Standard::SMPTE: return make_pair ("xmlns:msp-cpl", "http://www.smpte-ra.org/schemas/429-10/2008/Main-Stereo-Picture-CPL"); } |
