HomeSort by relevance Sort by last modified time
    Searched refs:Box (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FullBox.java 3 import com.coremedia.iso.boxes.Box;
7 * to a so-called full box according to the ISO/IEC 14496/12 specification.
9 public interface FullBox extends Box {
ContainerBox.java 26 public interface ContainerBox extends Box {
33 List<Box> getBoxes();
39 void setBoxes(List<Box> boxes);
44 * @param clazz child box's type
47 <T extends Box> List<T> getBoxes(Class<T> clazz);
52 * @param clazz child box's type
56 <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive);
59 * Gets the parent box. May be <code>null</code> in case of the
67 * Returns the number of bytes from the start of the box to start of the first child.
69 * @return offset of first child from box star
    [all...]
SampleTableBox.java 25 * If the track that contains the Sample Table Box references no data, then the Sample Table Box does not need
27 * If the track that the Sample Table Box is contained in does reference data, then the following sub-boxes are
29 * Description Box shall contain at least one entry. A Sample Description Box is required because it contains the
30 * data reference index field which indicates which Data Reference Box to use to retrieve the media samples.
32 * Sample Box is optional. If the Sync Sample Box is not present, all samples are sync samples.<br>
34 * Box.
44 for (Box box : boxes)
81 Box box = boxes.get(i); local
    [all...]
MediaBox.java 34 for (Box box : boxes) {
35 if (box instanceof MediaInformationBox) {
36 return (MediaInformationBox) box;
43 for (Box box : boxes) {
44 if (box instanceof MediaHeaderBox) {
45 return (MediaHeaderBox) box;
52 for (Box box : boxes)
    [all...]
MediaInformationBox.java 22 * This box contains all the objects that declare characteristic information of the media in the track.
32 for (Box box : boxes) {
33 if (box instanceof SampleTableBox) {
34 return (SampleTableBox) box;
41 for (Box box : boxes) {
42 if (box instanceof AbstractMediaHeaderBox) {
43 return (AbstractMediaHeaderBox) box;
TrackBox.java 36 for (Box box : boxes) {
37 if (box instanceof TrackHeaderBox) {
38 return (TrackHeaderBox) box;
63 for (Box box : boxes) {
64 if (box instanceof MediaBox) {
65 return (MediaBox) box;
FreeBox.java 36 * A free box. Just a placeholder to enable editing without rewriting the whole file.
38 public class FreeBox implements Box {
41 List<Box> replacers = new LinkedList<Box>();
61 for (Box replacer : replacers) {
84 for (Box replacer : replacers) {
97 // It's quite expensive to map a file into the memory. Just do it when the box is larger than a MB.
107 public void addAndReplace(Box box) {
108 data.position(l2i(box.getSize()))
    [all...]
Box.java 28 * Defines basic interaction possibilities for any ISO box. Each box has a parent box and a type.
30 public interface Box {
38 * The box's 4-cc type.
39 * @return the 4 character type of the box
44 * Writes the complete box - size | 4-cc | content - to the given <code>writableByteChannel</code>.
45 * @param writableByteChannel the box's sink
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug058.go 9 type Box struct {};
10 var m map[string] *Box;
13 m := make(map[string] *Box);
15 var x *Box = nil;
21 (MAP[<string>*STRING]*<Box>{})
  /prebuilts/go/linux-x86/test/fixedbugs/
bug058.go 9 type Box struct {};
10 var m map[string] *Box;
13 m := make(map[string] *Box);
15 var x *Box = nil;
21 (MAP[<string>*STRING]*<Box>{})
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
BoxParser.java 18 import com.coremedia.iso.boxes.Box;
28 Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent);
30 Box parseBox(ReadableByteChannel in, ContainerBox parent) throws IOException;
AbstractBoxParser.java 18 import com.coremedia.iso.boxes.Box;
31 * This BoxParser handles the basic stuff like reading size and extracting box type.
37 public abstract Box createBox(String type, byte[] userType, String parent);
40 * Parses the next size and type, creates a box instance and parses the box's content.
43 * @param parent the current box's parent (null if no parent)
44 * @return the box just parsed
47 public Box parseBox(ReadableByteChannel byteChannel, ContainerBox parent) throws IOException {
74 throw new RuntimeException("Only FileChannel inputs may use size == 0 (box reaches to the end of file)");
87 Box box = createBox(type, usertype, parent.getType()) local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentBox.java 20 import com.coremedia.iso.boxes.Box;
23 * aligned(8) class TrackFragmentBox extends Box('traf'){
35 for (Box box : getBoxes()) {
36 if (box instanceof TrackFragmentHeaderBox) {
37 return (TrackFragmentHeaderBox) box;
MovieFragmentBox.java 20 import com.coremedia.iso.boxes.Box;
28 * aligned(8) class MovieFragmentBox extends Box(moof){
57 Box b = this;
60 for (Box box : b.getParent().getBoxes()) {
61 if (b == box) {
64 offset += box.getSize();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 20 import com.coremedia.iso.boxes.Box;
36 public static String createPath(Box box) {
37 return createPath(box, "");
40 private static String createPath(Box box, String path) {
41 if (box instanceof IsoFile) {
44 List<?> boxesOfBoxType = box.getParent().getBoxes(box.getClass());
45 int index = boxesOfBoxType.indexOf(box);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
FullContainerBox.java 20 import com.coremedia.iso.boxes.Box;
34 * Abstract base class for a full iso box only containing ither boxes.
37 protected List<Box> boxes = new LinkedList<Box>();
41 public void setBoxes(List<Box> boxes) {
42 this.boxes = new LinkedList<Box>(boxes);
46 public <T extends Box> List<T> getBoxes(Class<T> clazz) {
51 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
53 for (Box boxe : boxes) { //clazz.isInstance(boxe) / clazz == boxe.getClass()?
69 for (Box boxe : boxes)
    [all...]
AbstractContainerBox.java 20 import com.coremedia.iso.boxes.Box;
41 protected List<Box> boxes = new LinkedList<Box>();
47 for (Box boxe : boxes) {
57 public List<Box> getBoxes() {
61 public void setBoxes(List<Box> boxes) {
62 this.boxes = new LinkedList<Box>(boxes);
66 public <T extends Box> List<T> getBoxes(Class<T> clazz) {
71 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
73 for (Box boxe : boxes)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 23 import com.coremedia.iso.boxes.Box;
48 protected List<Box> boxes = new LinkedList<Box>();
68 public void setBoxes(List<Box> boxes) {
69 this.boxes = new LinkedList<Box>(boxes);
72 public void addBox(Box b) {
77 public boolean removeBox(Box b) {
82 public List<Box> getBoxes() {
87 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
89 for (Box boxe : boxes) { //clazz.isInstance(boxe) / clazz == boxe.getClass()
    [all...]
MpegSampleEntry.java 4 import com.coremedia.iso.boxes.Box;
28 for (Box boxe : boxes) {
Ovc1VisualSampleEntryImpl.java 4 import com.coremedia.iso.boxes.Box;
18 for (Box box : boxes) {
19 size += box.getSize();
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/
IMETest.java 14 import javax.swing.Box;
26 Box box = Box.createVerticalBox(); local
27 box.add(new JTextField(sampleText));
28 box.add(new JTextField(sampleText));
29 jf.getContentPane().add(box);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/adobe/
ActionMessageFormat0SampleEntryBox.java 3 import com.coremedia.iso.boxes.Box;
19 for (Box box : boxes) {
20 size += box.getSize();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
TimeCodeBox.java 18 import com.coremedia.iso.boxes.Box;
34 for (Box box : boxes) {
35 size += box.getSize();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Box.java 18 public class Box {
24 public Box(String id, String name) {
  /external/clang/test/SemaCXX/
warn-unused-value.cpp 7 class Box {
15 Box* box = new Box; local
16 box->i; // expected-warning {{expression result unused}}
17 box->j;

Completed in 694 milliseconds

1 2 3 4