diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-10-20 22:39:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-10-20 22:39:16 +0100 |
| commit | e74b8e1d737deb9979a279d94c909d95f9999995 (patch) | |
| tree | 02620751d65b74482f2bcbbab63f6a5881820d6c /src/lib | |
| parent | 06bc61102add8d307cb53cc7798044d8477f010d (diff) | |
Data must be passed to libdcp xyz conversion as little-endian.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dcp_video_frame.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_video_frame.cc b/src/lib/dcp_video_frame.cc index 057ed0fae..fac247aeb 100644 --- a/src/lib/dcp_video_frame.cc +++ b/src/lib/dcp_video_frame.cc @@ -125,7 +125,7 @@ DCPVideoFrame::encode_locally () } shared_ptr<libdcp::XYZFrame> xyz = libdcp::rgb_to_xyz ( - _frame->image(AV_PIX_FMT_RGB48BE), + _frame->image(AV_PIX_FMT_RGB48LE), in_lut, libdcp::GammaLUT::cache.get (16, 1 / _frame->colour_conversion().output_gamma), matrix |
