diff options
-rw-r--r-- | video/video_decoder.h | 12 |
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; |