Update moe equivalence

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=177063576
This commit is contained in:
olly 2017-11-27 13:32:44 -08:00 committed by Oliver Woodman
parent de96bb5e4f
commit d84398788a

View File

@ -306,6 +306,8 @@ import java.util.concurrent.atomic.AtomicInteger;
if (PRIV_TIMESTAMP_FRAME_OWNER.equals(privFrame.owner)) {
System.arraycopy(privFrame.privateData, 0, id3Data.data, 0, 8 /* timestamp size */);
id3Data.reset(8);
// The top 31 bits should be zeros, but explicitly zero them to wrap in the case that the
// streaming provider forgot. See: https://github.com/google/ExoPlayer/pull/3495.
return id3Data.readLong() & 0x1FFFFFFFFL;
}
}