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.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/video/video_decoder.h b/video/video_decoder.h
index 3d8b09f26e..2a5eebfc60 100644
--- a/video/video_decoder.h
+++ b/video/video_decoder.h
@@ -25,7 +25,7 @@
#include "audio/mixer.h"
#include "audio/timestamp.h" // TODO: Move this to common/ ?
-#include "common/list.h"
+#include "common/array.h"
#include "common/str.h"
namespace Audio {
@@ -657,9 +657,23 @@ protected:
*/
virtual bool useAudioSync() const { return true; }
+ /**
+ * Get the given track based on its index.
+ *
+ * @return A valid track pointer on success, 0 otherwise
+ */
+ Track *getTrack(uint track);
+
+ /**
+ * Get the given track based on its index
+ *
+ * @return A valid track pointer on success, 0 otherwise
+ */
+ const Track *getTrack(uint track) const;
+
private:
// Tracks owned by this AdvancedVideoDecoder
- typedef Common::List<Track *> TrackList;
+ typedef Common::Array<Track *> TrackList;
TrackList _tracks;
VideoTrack *findNextVideoTrack();
const VideoTrack *findNextVideoTrack() const;