diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-11 22:49:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-11 22:51:31 +0100 |
| commit | cfbe9d2f44e380efed7a61b5b5c7a2fec7794915 (patch) | |
| tree | 7d1933b5205c2f27616ff2ad3f4e0d0b477a2cd2 /src/wx/controls.cc | |
| parent | 6f2844fee27f6ebb15ea772ea2cbfc7bdf988102 (diff) | |
Remove player activity logging. Fixes #2122.
If I remember right this was for swaroop and I suspect nobody else
is really interested.
Diffstat (limited to 'src/wx/controls.cc')
| -rw-r--r-- | src/wx/controls.cc | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 29f4aeaa3..a90ac79b4 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -19,22 +19,22 @@ */ +#include "check_box.h" +#include "content_view.h" #include "controls.h" +#include "dcpomatic_button.h" #include "film_viewer.h" -#include "wx_util.h" -#include "playhead_to_timecode_dialog.h" #include "playhead_to_frame_dialog.h" -#include "content_view.h" +#include "playhead_to_timecode_dialog.h" #include "static_text.h" -#include "check_box.h" -#include "dcpomatic_button.h" -#include "lib/job_manager.h" -#include "lib/player_video.h" -#include "lib/dcp_content.h" -#include "lib/job.h" -#include "lib/examine_content_job.h" +#include "wx_util.h" #include "lib/content_factory.h" #include "lib/cross.h" +#include "lib/dcp_content.h" +#include "lib/examine_content_job.h" +#include "lib/job.h" +#include "lib/job_manager.h" +#include "lib/player_video.h" #include <dcp/dcp.h> #include <dcp/cpl.h> #include <dcp/reel.h> @@ -249,12 +249,6 @@ Controls::slider_moved (bool page) } viewer->seek (t, accurate); update_position_label (); - - log ( - wxString::Format( - "playback-seeked %s", t.timecode(_film->video_frame_rate()).c_str() - ) - ); } |
