Commit 23d4efad by aquilescanta Committed by Oliver Woodman

Make TYPE_* constant declarations in lexicographic order

PiperOrigin-RevId: 374880929
parent 1c429417
...@@ -55,28 +55,28 @@ import org.checkerframework.checker.nullness.compatqual.NullableType; ...@@ -55,28 +55,28 @@ import org.checkerframework.checker.nullness.compatqual.NullableType;
private static final String TAG = "AtomParsers"; private static final String TAG = "AtomParsers";
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_vide = 0x76696465; private static final int TYPE_clcp = 0x636c6370;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_soun = 0x736f756e; private static final int TYPE_mdta = 0x6d647461;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_text = 0x74657874; private static final int TYPE_meta = 0x6d657461;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_sbtl = 0x7362746c; private static final int TYPE_sbtl = 0x7362746c;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_subt = 0x73756274; private static final int TYPE_soun = 0x736f756e;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_clcp = 0x636c6370; private static final int TYPE_subt = 0x73756274;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_meta = 0x6d657461; private static final int TYPE_text = 0x74657874;
@SuppressWarnings("ConstantCaseForConstants") @SuppressWarnings("ConstantCaseForConstants")
private static final int TYPE_mdta = 0x6d647461; private static final int TYPE_vide = 0x76696465;
/** /**
* The threshold number of samples to trim from the start/end of an audio track when applying an * The threshold number of samples to trim from the start/end of an audio track when applying an
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment