diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-15 01:16:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-15 01:16:45 +0100 |
| commit | 44c918a83e1e64922448ba20b5dfdcf30d026f84 (patch) | |
| tree | 9e9bee62635fefedaeef1a5d6f6db849161111d0 /src/lib/player.h | |
| parent | a788f3c1e29a6b8329d54e1518f3b84d68d347d5 (diff) | |
Remove unused PlayerStatistics stuff.
Diffstat (limited to 'src/lib/player.h')
| -rw-r--r-- | src/lib/player.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/lib/player.h b/src/lib/player.h index 3cfca4736..a795f8174 100644 --- a/src/lib/player.h +++ b/src/lib/player.h @@ -45,38 +45,6 @@ class PlayerVideo; class ImageProxy; class Font; -class PlayerStatistics -{ -public: - struct Video { - Video () - : black (0) - , repeat (0) - , good (0) - , skip (0) - {} - - int black; - int repeat; - int good; - int skip; - } video; - - struct Audio { - Audio () - : silence (0) - , good (0) - , skip (0) - {} - - DCPTime silence; - int64_t good; - int64_t skip; - } audio; - - void dump (boost::shared_ptr<Log>) const; -}; - /** @class Player * @brief A class which can `play' a Playlist. */ @@ -95,8 +63,6 @@ public: void set_enable_subtitles (bool enable); void set_always_burn_subtitles (bool burn); - PlayerStatistics const & statistics () const; - /** Emitted when something has changed such that if we went back and emitted * the last frame again it would look different. This is not emitted after * a seek. @@ -169,8 +135,6 @@ private: boost::shared_ptr<AudioProcessor> _audio_processor; - PlayerStatistics _statistics; - boost::signals2::scoped_connection _film_changed_connection; boost::signals2::scoped_connection _playlist_changed_connection; boost::signals2::scoped_connection _playlist_content_changed_connection; |
