aboutsummaryrefslogtreecommitdiff
path: root/video/video_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/video_decoder.h')
-rw-r--r--video/video_decoder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/video/video_decoder.h b/video/video_decoder.h
index 87d832eeb9..9496148de6 100644
--- a/video/video_decoder.h
+++ b/video/video_decoder.h
@@ -625,6 +625,13 @@ protected:
*/
void addTrack(Track *track);
+ /**
+ * Whether or not getTime() will sync with a playing audio track.
+ *
+ * A subclass should override this to disable this feature.
+ */
+ virtual bool useAudioSync() const { return true; }
+
private:
// Tracks owned by this AdvancedVideoDecoder
typedef Common::List<Track *> TrackList;