summaryrefslogtreecommitdiff
path: root/src/wx/video_waveform_plot.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-10-28 01:51:51 +0200
committerCarl Hetherington <cth@carlh.net>2023-10-28 02:30:08 +0200
commit157728fb69167da75aa04f6d78fdb6cc274a7db2 (patch)
tree07bcf63f13484e9c5275766060d16e579fa28ea0 /src/wx/video_waveform_plot.cc
parent6e1c0f245a3940da7da175a978c0561711cfb447 (diff)
Use updated libdcp, including an optimisation for rgb-onto-xyz12.
Diffstat (limited to 'src/wx/video_waveform_plot.cc')
-rw-r--r--src/wx/video_waveform_plot.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/video_waveform_plot.cc b/src/wx/video_waveform_plot.cc
index 826e17359..f6fa93940 100644
--- a/src/wx/video_waveform_plot.cc
+++ b/src/wx/video_waveform_plot.cc
@@ -195,7 +195,7 @@ VideoWaveformPlot::set_image (shared_ptr<PlayerVideo> image)
/* We must copy the PlayerVideo here as we will call ::image() on it, potentially
with a different pixel_format than was used when ::prepare() was called.
*/
- _image = DCPVideo::convert_to_xyz (image->shallow_copy(), [](dcp::NoteType, string) {});
+ _image = DCPVideo::convert_to_xyz(image->shallow_copy());
_dirty = true;
Refresh ();
}