diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-02-17 22:00:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-02-17 22:00:18 +0000 |
| commit | a5be11a965c2c38442e4e069874e7e21b5b43a5c (patch) | |
| tree | 9473211bc0918e7ccf844a3f8300a473e089fed4 /src/wx | |
| parent | 9a7ca753829b7adbabde4cc0edd48c460ad4cffa (diff) | |
More player debugging for butler video-full states.v2.13.121
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/film_viewer.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index b5e60f60e..0e47ac1ac 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -44,6 +44,7 @@ #include "lib/log.h" #include "lib/config.h" #include "lib/compose.hpp" +#include "lib/dcpomatic_log.h" extern "C" { #include <libavutil/pixfmt.h> } @@ -304,6 +305,7 @@ FilmViewer::timer () return; } + LOG_DEBUG_PLAYER("%1 -> %2; delay %3", next.seconds(), time().seconds(), max((next.seconds() - time().seconds()) * 1000, 1.0)); _timer.Start (max ((next.seconds() - time().seconds()) * 1000, 1.0), wxTIMER_ONE_SHOT); if (_butler) { |
