Format with google-java-format
This commit is contained in:
parent
ee1b1500e2
commit
c72ec74e11
@ -2308,7 +2308,14 @@ public class MatroskaExtractor implements Extractor {
|
||||
@Nullable ColorInfo colorInfo = null;
|
||||
if (hasColorInfo) {
|
||||
@Nullable byte[] hdrStaticInfo = getHdrStaticInfo();
|
||||
colorInfo = new ColorInfo(colorSpace, colorRange, colorTransfer, hdrStaticInfo, bitsPerChannel, bitsPerChannel);
|
||||
colorInfo =
|
||||
new ColorInfo(
|
||||
colorSpace,
|
||||
colorRange,
|
||||
colorTransfer,
|
||||
hdrStaticInfo,
|
||||
bitsPerChannel,
|
||||
bitsPerChannel);
|
||||
}
|
||||
int rotationDegrees = Format.NO_VALUE;
|
||||
|
||||
|
@ -1224,7 +1224,8 @@ import java.util.List;
|
||||
ExtractorUtil.checkContainerInput(mimeType == null, /* message= */ null);
|
||||
mimeType = MimeTypes.VIDEO_AV1;
|
||||
parent.setPosition(childStartPosition + Atom.HEADER_SIZE);
|
||||
parent.skipBytes(1); ; // marker(1), version(7)
|
||||
parent.skipBytes(1);
|
||||
; // marker(1), version(7)
|
||||
int byte2 = parent.readUnsignedByte();
|
||||
int seqProfile = byte2 >> 5;
|
||||
int byte3 = parent.readUnsignedByte();
|
||||
|
Loading…
x
Reference in New Issue
Block a user