Handle udta as a leaf atom.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=119532634
This commit is contained in:
andrewlewis 2016-04-11 08:21:23 -07:00 committed by Oliver Woodman
parent 7170ff380c
commit eb877f0cb7

View File

@ -456,7 +456,7 @@ public final class Mp4Extractor implements Extractor, SeekMap {
|| atom == Atom.TYPE_stsd || atom == Atom.TYPE_stts || atom == Atom.TYPE_stss
|| atom == Atom.TYPE_ctts || atom == Atom.TYPE_elst || atom == Atom.TYPE_stsc
|| atom == Atom.TYPE_stsz || atom == Atom.TYPE_stco || atom == Atom.TYPE_co64
|| atom == Atom.TYPE_tkhd || atom == Atom.TYPE_ftyp || atom == Atom.TYPE_meta;
|| atom == Atom.TYPE_tkhd || atom == Atom.TYPE_ftyp || atom == Atom.TYPE_udta;
}
/**
@ -464,8 +464,7 @@ public final class Mp4Extractor implements Extractor, SeekMap {
*/
private static boolean shouldParseContainerAtom(int atom) {
return atom == Atom.TYPE_moov || atom == Atom.TYPE_trak || atom == Atom.TYPE_mdia
|| atom == Atom.TYPE_minf || atom == Atom.TYPE_stbl || atom == Atom.TYPE_edts
|| atom == Atom.TYPE_udta;
|| atom == Atom.TYPE_minf || atom == Atom.TYPE_stbl || atom == Atom.TYPE_edts;
}
private static final class Mp4Track {