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

1 2 3 4 5

  /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...]
  /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;
  /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;
  /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/clang/test/SemaCXX/
warn-unused-value.cpp 5 class Box {
13 Box* box = new Box; local
14 box->i; // expected-warning {{expression result unused}}
15 box->j; // expected-warning {{expression result unused}}
  /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/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloNode.java 41 import com.jme3.scene.shape.Box;
56 /** create a blue box at coordinates (1,-1,1) */
57 Box box1 = new Box( new Vector3f(1,-1,1), 1,1,1);
58 Geometry blue = new Geometry("Box", box1);
64 /** create a red box straight above the blue one at (1,3,1) */
65 Box box2 = new Box( new Vector3f(1,3,1), 1,1,1);
66 Geometry red = new Geometry("Box", box2);
HelloJME3.java 40 import com.jme3.scene.shape.Box;
54 Box b = new Box(Vector3f.ZERO, 1, 1, 1); // create cube shape at the origin
55 Geometry geom = new Geometry("Box", b); // create cube geometry from the shape
HelloLoop.java 40 import com.jme3.scene.shape.Box;
56 /** this blue box is our player character */
57 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestBox.java 39 import com.jme3.scene.shape.Box;
50 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
51 Geometry geom = new Geometry("Box", b);
  /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/jmonkeyengine/engine/src/test/jme3test/app/
TestBareBonesApp.java 38 import com.jme3.scene.shape.Box;
58 // create a box
59 boxGeom = new Geometry("Box", new Box(Vector3f.ZERO, 2, 2, 2));
64 // attach box to display in primary viewport
TestReleaseDirectMemory.java 39 import com.jme3.scene.shape.Box;
53 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
54 Geometry geom = new Geometry("Box", b);
  /external/jmonkeyengine/engine/src/test/jme3test/niftygui/
TestNiftyGui.java 40 import com.jme3.scene.shape.Box;
56 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
57 Geometry geom = new Geometry("Box", b);

Completed in 207 milliseconds

1 2 3 4 5