Searched defs:appleDataBox (Results 1 - 1 of 1) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAbstractAppleMetaDataBox.java23 AppleDataBox appleDataBox = new AppleDataBox(); field in class:AbstractAppleMetaDataBox
26 return Collections.singletonList((Box) appleDataBox);
31 appleDataBox = (AppleDataBox) boxes.get(0);
43 if (clazz.isAssignableFrom(appleDataBox.getClass())) {
44 return (List<T>) Collections.singletonList(appleDataBox);
58 appleDataBox = new AppleDataBox();
60 appleDataBox.parse(new ByteBufferByteChannel(content), null, content.remaining(), null);
64 appleDataBox.setParent(this);
69 return appleDataBox.getSize();
74 appleDataBox
[all...]

Completed in 2132 milliseconds