mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
Make flags contiguous: There's no reason for the gap :)
PiperOrigin-RevId: 269514872
This commit is contained in:
parent
57370b37ce
commit
2fca01b925
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ public final class DataSpec {
|
|||
* setting this flag may also enable more concurrent access to the data (e.g. reading one fragment
|
||||
* whilst writing another).
|
||||
*/
|
||||
public static final int FLAG_ALLOW_CACHE_FRAGMENTATION = 1 << 4; // 16
|
||||
public static final int FLAG_ALLOW_CACHE_FRAGMENTATION = 1 << 3; // 8
|
||||
|
||||
/**
|
||||
* The set of HTTP methods that are supported by ExoPlayer {@link HttpDataSource}s. One of {@link
|
||||
|
|
|
|||
Loading…
Reference in a new issue