diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-21 02:44:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-21 20:15:14 +0100 |
| commit | 28111007e2e6fd62f5810be780706ae1618bd33f (patch) | |
| tree | d99fe830ba961b174d3f024d2b5671a9821ed8a9 /src/lib/dcp_decoder.cc | |
| parent | c7d77490382d6ddb625340c05b57487cde244f96 (diff) | |
Adapt for libdcp use of enum class.
Diffstat (limited to 'src/lib/dcp_decoder.cc')
| -rw-r--r-- | src/lib/dcp_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc index 4bc090bf4..0491f5af7 100644 --- a/src/lib/dcp_decoder.cc +++ b/src/lib/dcp_decoder.cc @@ -178,7 +178,7 @@ DCPDecoder::pass () new J2KImageProxy ( _stereo_reader->get_frame (entry_point + frame), picture_asset->size(), - dcp::EYE_LEFT, + dcp::Eye::LEFT, AV_PIX_FMT_XYZ12LE, _forced_reduction ) @@ -192,7 +192,7 @@ DCPDecoder::pass () new J2KImageProxy ( _stereo_reader->get_frame (entry_point + frame), picture_asset->size(), - dcp::EYE_RIGHT, + dcp::Eye::RIGHT, AV_PIX_FMT_XYZ12LE, _forced_reduction ) |
