diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-20 09:36:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-23 16:55:28 +0200 |
| commit | 8e017c66d86c09a4689afeac0d7989d24daef745 (patch) | |
| tree | c21a3c0533d9aaf82e1d13b4af117bbe554c0c77 /src/wx/video_waveform_plot.cc | |
| parent | f7dc39fb8730ccf854d60b819a985050fee0d4b1 (diff) | |
Move convert_to_xyz out of DCPVideo.
Diffstat (limited to 'src/wx/video_waveform_plot.cc')
| -rw-r--r-- | src/wx/video_waveform_plot.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/video_waveform_plot.cc b/src/wx/video_waveform_plot.cc index 8e3284682..7c3e9528f 100644 --- a/src/wx/video_waveform_plot.cc +++ b/src/wx/video_waveform_plot.cc @@ -198,7 +198,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 = convert_to_xyz (image->shallow_copy(), [](dcp::NoteType, string) {}); _dirty = true; Refresh (); } |
