aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorMatthew Hoops2012-07-26 23:24:54 -0400
committerMatthew Hoops2012-07-26 23:24:54 -0400
commit2eeee33bd878a5cd385b4423f6867d0e6a3ed0b6 (patch)
tree7b83db918472a6e3d98f61a710d69b75ea6c515b /video
parentaf6e98ba0108fc87c5aea2e85a1aef80443937b5 (diff)
downloadscummvm-rg350-2eeee33bd878a5cd385b4423f6867d0e6a3ed0b6.tar.gz
scummvm-rg350-2eeee33bd878a5cd385b4423f6867d0e6a3ed0b6.tar.bz2
scummvm-rg350-2eeee33bd878a5cd385b4423f6867d0e6a3ed0b6.zip
VIDEO: Move findNextVideoTrack() to protected
Diffstat (limited to 'video')
-rw-r--r--video/video_decoder.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/video/video_decoder.h b/video/video_decoder.h
index a6dbed8fc5..dfe0fff66b 100644
--- a/video/video_decoder.h
+++ b/video/video_decoder.h
@@ -679,12 +679,20 @@ protected:
*/
Graphics::PixelFormat getDefaultHighColorFormat() const { return _defaultHighColorFormat; }
+ /**
+ * Find the video track with the lowest start time for the next frame
+ */
+ VideoTrack *findNextVideoTrack();
+
+ /**
+ * Find the video track with the lowest start time for the next frame
+ */
+ const VideoTrack *findNextVideoTrack() const;
+
private:
// Tracks owned by this AdvancedVideoDecoder
typedef Common::Array<Track *> TrackList;
TrackList _tracks;
- VideoTrack *findNextVideoTrack();
- const VideoTrack *findNextVideoTrack() const;
// Current playback status
bool _isPlaying, _needsRewind;