HomeSort by relevance Sort by last modified time
    Searched defs:appleDataBox (Results 1 - 6 of 6) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleTempBox.java 12 appleDataBox = AppleDataBox.getUint16AppleDataBox();
17 return appleDataBox.getData()[1];
21 appleDataBox = new AppleDataBox();
22 appleDataBox.setVersion(0);
23 appleDataBox.setFlags(21);
24 appleDataBox.setFourBytes(new byte[4]);
25 appleDataBox.setData(new byte[]{0, (byte) (tempo & 0xFF)});
AppleTrackNumberBox.java 20 appleDataBox = new AppleDataBox();
21 appleDataBox.setVersion(0);
22 appleDataBox.setFlags(0);
23 appleDataBox.setFourBytes(new byte[4]);
24 appleDataBox.setData(new byte[]{0, 0, 0, track, 0, of, 0, 0});
28 return appleDataBox.getData()[3];
32 return appleDataBox.getData()[5];
36 byte[] content = appleDataBox.getData();
38 appleDataBox.setData(content)
    [all...]
AbstractAppleMetaDataBox.java 23 AppleDataBox appleDataBox = new AppleDataBox();
26 return Collections.singletonList((Box) appleDataBox);
30 if (boxes.size() == 1 && boxes.get(0) instanceof AppleDataBox) {
31 appleDataBox = (AppleDataBox) boxes.get(0);
33 throw new IllegalArgumentException("This box only accepts one AppleDataBox child");
43 if (clazz.isAssignableFrom(appleDataBox.getClass())) {
44 return (List<T>) Collections.singletonList(appleDataBox);
    [all...]
AppleDataBox.java 10 public final class AppleDataBox extends AbstractFullBox {
16 private static AppleDataBox getEmpty() {
17 AppleDataBox appleDataBox = new AppleDataBox();
18 appleDataBox.setVersion(0);
19 appleDataBox.setFourBytes(new byte[4]);
20 return appleDataBox;
23 public static AppleDataBox getStringAppleDataBox() {
24 AppleDataBox appleDataBox = getEmpty()
    [all...]
AppleCoverBox.java 19 appleDataBox = new AppleDataBox();
20 appleDataBox.setVersion(0);
21 appleDataBox.setFlags(0xe);
22 appleDataBox.setFourBytes(new byte[4]);
23 appleDataBox.setData(pngData);
28 appleDataBox = new AppleDataBox();
29 appleDataBox.setVersion(0);
30 appleDataBox.setFlags(0xd)
    [all...]
AppleCustomGenreBox.java 14 appleDataBox = AppleDataBox.getStringAppleDataBox();
18 appleDataBox = new AppleDataBox();
19 appleDataBox.setVersion(0);
20 appleDataBox.setFlags(1);
21 appleDataBox.setFourBytes(new byte[4]);
22 appleDataBox.setData(Utf8.convert(genre));
26 return Utf8.convert(appleDataBox.getData());

Completed in 179 milliseconds