Remove VideoContext::nextFrame as it's unused

Originally committed to SVN as r5966.
This commit is contained in:
Thomas Goyne 2011-12-06 00:17:25 +00:00
parent c26e61f209
commit 59fdab5fe7
2 changed files with 0 additions and 5 deletions

View file

@ -74,7 +74,6 @@ VideoContext::VideoContext()
: playback(this) : playback(this)
, startMS(0) , startMS(0)
, endFrame(0) , endFrame(0)
, nextFrame(-1)
, frame_n(0) , frame_n(0)
, arValue(1.) , arValue(1.)
, arType(0) , arType(0)
@ -118,7 +117,6 @@ void VideoContext::Reset() {
// Remove video data // Remove video data
Stop(); Stop();
frame_n = 0; frame_n = 0;
nextFrame = -1;
// Clean up video data // Clean up video data
videoName.clear(); videoName.clear();

View file

@ -104,9 +104,6 @@ class VideoContext : public wxEvtHandler {
/// DOCME /// DOCME
int endFrame; int endFrame;
/// DOCME
int nextFrame;
/// DOCME /// DOCME
int frame_n; int frame_n;