summaryrefslogtreecommitdiffstats
path: root/third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc')
-rw-r--r--third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc b/third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc
index 30252bc9d..27e831023 100644
--- a/third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc
+++ b/third_party/aom/third_party/libwebm/mkvmuxer/mkvmuxer.cc
@@ -8,6 +8,8 @@
#include "mkvmuxer/mkvmuxer.h"
+#include <stdint.h>
+
#include <cfloat>
#include <climits>
#include <cstdio>
@@ -2667,7 +2669,7 @@ bool Cluster::QueueOrWriteFrame(const Frame* const frame) {
// and write it if it is okay to do so (i.e.) no other track has an held back
// frame with timestamp <= the timestamp of the frame in question.
std::vector<std::list<Frame*>::iterator> frames_to_erase;
- for (std::list<Frame *>::iterator
+ for (std::list<Frame*>::iterator
current_track_iterator = stored_frames_[track_number].begin(),
end = --stored_frames_[track_number].end();
current_track_iterator != end; ++current_track_iterator) {