mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Force wrapping of HLS ID3 timestamp
Merge of https://github.com/google/ExoPlayer/pull/3495 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=177057183
This commit is contained in:
parent
95de9c96fe
commit
a0f6bba842
1 changed files with 1 additions and 1 deletions
|
|
@ -306,7 +306,7 @@ 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);
|
||||
return id3Data.readLong() & ((1L << 33) - 1L);
|
||||
return id3Data.readLong() & 0x1FFFFFFFFL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue