Commit ced5268c authored by Dongheun Kang's avatar Dongheun Kang Committed by Commit Bot

Initializes some uninitialized class members of TrackRunIterator.

Bug: none
Change-Id: I3636b34d6f87f9db732f1263cc3f2eddeb39335f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1670527Reviewed-by: default avatarDan Sanders <sandersd@chromium.org>
Reviewed-by: default avatarChrome Cunningham <chcunningham@chromium.org>
Commit-Queue: Chrome Cunningham <chcunningham@chromium.org>
Cr-Commit-Position: refs/heads/master@{#671896}
parent 63b6fac8
......@@ -119,7 +119,11 @@ DecodeTimestamp DecodeTimestampFromRational(int64_t numer, int64_t denom) {
}
TrackRunIterator::TrackRunIterator(const Movie* moov, MediaLog* media_log)
: moov_(moov), media_log_(media_log), sample_offset_(0) {
: moov_(moov),
media_log_(media_log),
sample_dts_(0),
sample_cts_(0),
sample_offset_(0) {
CHECK(moov);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment