summaryrefslogtreecommitdiff
path: root/src/lib/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/player.h')
-rw-r--r--src/lib/player.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib/player.h b/src/lib/player.h
index c8f6eecb8..a5fe844f0 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -56,8 +56,8 @@ public:
void seek_back ();
void seek_forward ();
- Time last_video () const {
- return _last_video;
+ Time position () const {
+ return _position;
}
private:
@@ -81,13 +81,7 @@ private:
/** Time of the earliest thing not yet to have been emitted */
Time _position;
- Time _last_black;
- Time _last_silence;
-
- /* XXX: position and last_video? Need both? */
AudioBuffers _audio_buffers;
- Time _last_video;
- bool _last_was_black;
Time _next_audio;
};