Minor stylistic tweaks

This commit is contained in:
Oliver Woodman 2017-02-20 11:33:43 +00:00
parent bf120cac61
commit 37c15e7cee

View File

@ -62,7 +62,6 @@ public final class Mp3Extractor implements Extractor {
@Retention(RetentionPolicy.SOURCE) @Retention(RetentionPolicy.SOURCE)
@IntDef(flag = true, value = {FLAG_ENABLE_CONSTANT_BITRATE_SEEKING}) @IntDef(flag = true, value = {FLAG_ENABLE_CONSTANT_BITRATE_SEEKING})
public @interface Flags {} public @interface Flags {}
/** /**
* Flag to force enable seeking using a constant bitrate assumption in cases where seeking would * Flag to force enable seeking using a constant bitrate assumption in cases where seeking would
* otherwise not be possible. * otherwise not be possible.
@ -90,9 +89,7 @@ public final class Mp3Extractor implements Extractor {
private static final int INFO_HEADER = Util.getIntegerCodeForString("Info"); private static final int INFO_HEADER = Util.getIntegerCodeForString("Info");
private static final int VBRI_HEADER = Util.getIntegerCodeForString("VBRI"); private static final int VBRI_HEADER = Util.getIntegerCodeForString("VBRI");
@Flags @Flags private final int flags;
private final int flags;
private final long forcedFirstSampleTimestampUs; private final long forcedFirstSampleTimestampUs;
private final ParsableByteArray scratch; private final ParsableByteArray scratch;
private final MpegAudioHeader synchronizedHeader; private final MpegAudioHeader synchronizedHeader;