mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Cleanup
This commit is contained in:
parent
955c7b25a4
commit
10efe7904d
2 changed files with 2 additions and 2 deletions
|
|
@ -92,6 +92,7 @@ import java.util.List;
|
||||||
public static final int TYPE_stco = Util.getIntegerCodeForString("stco");
|
public static final int TYPE_stco = Util.getIntegerCodeForString("stco");
|
||||||
public static final int TYPE_co64 = Util.getIntegerCodeForString("co64");
|
public static final int TYPE_co64 = Util.getIntegerCodeForString("co64");
|
||||||
public static final int TYPE_tx3g = Util.getIntegerCodeForString("tx3g");
|
public static final int TYPE_tx3g = Util.getIntegerCodeForString("tx3g");
|
||||||
|
|
||||||
public final int type;
|
public final int type;
|
||||||
|
|
||||||
Atom(int type) {
|
Atom(int type) {
|
||||||
|
|
|
||||||
|
|
@ -360,8 +360,7 @@ public final class Mp4Extractor implements Extractor, SeekMap {
|
||||||
|| atom == Atom.TYPE_avc1 || atom == Atom.TYPE_avcC || atom == Atom.TYPE_mp4a
|
|| atom == Atom.TYPE_avc1 || atom == Atom.TYPE_avcC || atom == Atom.TYPE_mp4a
|
||||||
|| atom == Atom.TYPE_esds || atom == Atom.TYPE_stts || atom == Atom.TYPE_stss
|
|| atom == Atom.TYPE_esds || atom == Atom.TYPE_stts || atom == Atom.TYPE_stss
|
||||||
|| atom == Atom.TYPE_ctts || atom == Atom.TYPE_stsc || atom == Atom.TYPE_stsz
|
|| atom == Atom.TYPE_ctts || atom == Atom.TYPE_stsc || atom == Atom.TYPE_stsz
|
||||||
|| atom == Atom.TYPE_stco || atom == Atom.TYPE_co64 || atom == Atom.TYPE_tkhd
|
|| atom == Atom.TYPE_stco || atom == Atom.TYPE_co64 || atom == Atom.TYPE_tkhd;
|
||||||
|| atom == Atom.TYPE_tx3g;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns whether the extractor should parse a container atom with type {@code atom}. */
|
/** Returns whether the extractor should parse a container atom with type {@code atom}. */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue