aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorMatthew Hoops2013-08-25 09:32:55 -0400
committerMatthew Hoops2013-08-28 00:04:57 -0400
commit2d8d80177e9f548263cf47f729053d3a8e990020 (patch)
treec68a0a09fc9ae795ce521912bd940a61fa9dde44 /video
parent304a2dc32b520a40cc7c247ebf9147fe9c212364 (diff)
downloadscummvm-rg350-2d8d80177e9f548263cf47f729053d3a8e990020.tar.gz
scummvm-rg350-2d8d80177e9f548263cf47f729053d3a8e990020.tar.bz2
scummvm-rg350-2d8d80177e9f548263cf47f729053d3a8e990020.zip
VIDEO: Make getFrameAtTime() public
Diffstat (limited to 'video')
-rw-r--r--video/video_decoder.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/video/video_decoder.h b/video/video_decoder.h
index 7811734dd5..b36c31d8db 100644
--- a/video/video_decoder.h
+++ b/video/video_decoder.h
@@ -594,17 +594,17 @@ protected:
virtual Audio::Timestamp getDuration() const;
Audio::Timestamp getFrameTime(uint frame) const;
- protected:
- /**
- * Get the rate at which this track is played.
- */
- virtual Common::Rational getFrameRate() const = 0;
-
/**
* Get the frame that should be displaying at the given time. This is
* helpful for someone implementing seek().
*/
uint getFrameAtTime(const Audio::Timestamp &time) const;
+
+ protected:
+ /**
+ * Get the rate at which this track is played.
+ */
+ virtual Common::Rational getFrameRate() const = 0;
};
/**