diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-01 21:20:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-29 01:44:15 +0200 |
| commit | d5c059a2ff9bab5c2973db6bc4860591679dd42b (patch) | |
| tree | c8ec57cdeae4c3746f6ff7abd28816310540604b /src/wx/video_view.h | |
| parent | 5b2b8279d8eb33d31166027d876b4c9f86087bfd (diff) | |
Primitive auto-crop (#1477).
Diffstat (limited to 'src/wx/video_view.h')
| -rw-r--r-- | src/wx/video_view.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/video_view.h b/src/wx/video_view.h index a1cc41f07..b815afb7c 100644 --- a/src/wx/video_view.h +++ b/src/wx/video_view.h @@ -149,6 +149,10 @@ protected: return wxColour(0, 255, 0); } + wxColour crop_guess_colour () const { + return wxColour(0, 0, 255); + } + int video_frame_rate () const { boost::mutex::scoped_lock lm (_mutex); return _video_frame_rate; |
