HomeSort by relevance Sort by last modified time
    Searched refs:Box (Results 26 - 50 of 86) sorted by null

12 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 99 // In addition to the focused box (index == 0). We also keep information
133 // The bound of the stable region that the focused box can stay, see the
137 // Constrained frame is a rectangle that the focused box should fit into if
140 // (1) In page mode, if the focused box is constrained, scaling for the
141 // focused box is adjusted to fit into the constrained frame, instead of the
144 // (2) In page mode, if the focused box is constrained, the mPlatform's
150 // Whether the focused box is constrained.
161 // | | Box | | Box | | Box*| | Box | | Box |
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoFile.java 20 import com.coremedia.iso.boxes.Box;
31 * The most upper container for ISO Boxes. It is a container box that is a file.
85 Box box = boxParser.parseBox(byteChannel, this); local
86 if (box != null) {
87 // System.err.println(box.getType());
88 boxes.add(box);
149 for (Box box : boxes) {
150 size += box.getSize()
    [all...]
PropertyBoxParserImpl.java 19 import com.coremedia.iso.boxes.Box;
78 public Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent) {
81 return (Class<? extends Box>) Class.forName(fourCcToBox.clazzName);
88 public Box createBox(String type, byte[] userType, String parent) {
168 throw new RuntimeException("we have a userType but no uuid box type. Something's wrong");
187 throw new RuntimeException("No box object found for " + type);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 53 public Box createFtyp(Movie movie) {
113 protected List<Box> createMoofMdat(final Movie movie) {
114 List<Box> boxes = new LinkedList<Box>();
164 for (Box box : createMoofMdat(movie)) {
165 isoFile.addBox(box);
172 protected Box createMdat(final long startSample, final long endSample, final Track track, final int i) {
174 class Mdat implements Box {
238 protected Box createTfhd(long startSample, long endSample, Track track, int sequenceNumber)
    [all...]
DefaultMp4Builder.java 21 import com.coremedia.iso.boxes.Box;
177 Box udta = createUdta(movie);
186 * Override to create a user data box that may contain metadata.
188 * @return a 'udta' box or <code>null</code> if none provided
190 protected Box createUdta(Movie movie) {
219 // We need to take edit list box into account in trackheader duration
314 // The sample description index references the sample description box
316 // than one sample description box. Therefore 1 is always right
331 // first chunk starts (mdat box). So I just let the chunk offset
375 private class InterleaveChunkMdat implements Box {
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MovieBox.java 26 * The metadata for a presentation is stored in the single Movie Box which occurs at the top-level of a file.
27 * Normally this box is close to the beginning or end of the file, though this is not required.
59 for (Box box : boxes) {
60 if (box instanceof MovieHeaderBox) {
61 return (MovieHeaderBox) box;
SampleDescriptionBox.java 28 * The information stored in the sample description box after the entry-count is both track-type specific as
74 for (Box box : boxes) {
75 if (box instanceof SampleEntry) {
76 return (SampleEntry) box;
  /external/opencv3/3rdparty/openexr/Imath/
ImathSphere.h 71 // so that the s tightly encloses box b.
90 void circumscribe(const Box<Vec3<T> > &box);
109 void Sphere3<T>::circumscribe(const Box<Vec3<T> > &box)
111 center = T(0.5) * (box.min + box.max);
112 radius = (box.max - center).length();
ImathBoxAlgo.h 44 // with bounding boxes (Imath::Box). These algorithms require
46 // functions are called much less often than the basic box
51 // T clip<T>(const T& in, const Box<T>& box)
53 // Vec3<T> closestPointOnBox(const Vec3<T>&, const Box<Vec3<T>>& )
55 // Vec3<T> closestPointInBox(const Vec3<T>&, const Box<Vec3<T>>& )
57 // Box< Vec3<S> > transform(const Box<Vec3<S>>&, const Matrix44<T>&)
58 // Box< Vec3<S> > affineTransform(const Box<Vec3<S>>&, const Matrix44<T>&
    [all...]
ImathFrustumTest.h 106 // box extents dot the abs of the plane normal. (the result is NOT
151 bool isVisible(const Box<Vec3<T> > &box) const;
158 bool completelyContains(const Box<Vec3<T> > &box) const;
175 // The absolute values are stored to assist with bounding box tests.
301 // isVisible(Box)
302 // Returns true if any part of the axis-aligned box
307 bool FrustumTest<T>::isVisible(const Box<Vec3<T> > &box) cons
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 7 import com.coremedia.iso.boxes.Box;
25 public List<Box> getBoxes() {
26 return Collections.singletonList((Box) appleDataBox);
29 public void setBoxes(List<Box> boxes) {
33 throw new IllegalArgumentException("This box only accepts one AppleDataBox child");
37 public <T extends Box> List<T> getBoxes(Class<T> clazz) {
41 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 30 struct Box {
31 Box() : left(), top(), right(), bottom() {}
40 fprintf(stderr, "Could not parse Box.\n");
44 fprintf(stderr, "Box dimensions must be non-negative.\n");
69 // Represents a bitmap buffer with a crop box.
79 // bpp, width, height, box, pixels
100 if (!box.Read()) {
101 fprintf(stderr, "Expected crop box argument not found.\n");
105 if (box.bottom * row_stride > total_size ||
106 box.right * pixel_stride > row_size)
140 Box box; member in struct:Bitmap
206 Box box; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatPackageWriterImpl.java 19 import com.coremedia.iso.boxes.Box;
125 Iterator<Box> boxIt = isoFile.getBoxes().iterator();
144 Box b = boxIt.next();
151 Box mdat = boxIt.next();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ReplaceSampleTrack.java 80 public Box getMediaHeaderBox() {
AppendTrack.java 62 stsd.setBoxes(Collections.<Box>singletonList(aseResult));
132 Iterator<Box> bxs1 = ase1.getBoxes().iterator();
133 Iterator<Box> bxs2 = ase2.getBoxes().iterator();
135 Box cur1 = bxs1.next();
136 Box cur2 = bxs2.next();
340 public Box getMediaHeaderBox() {
SilenceTrackImpl.java 78 public Box getMediaHeaderBox() {
Amf0Track.java 108 public Box getMediaHeaderBox() {
DivideTimeScaleTrack.java 112 public Box getMediaHeaderBox() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
ProtectionSystemSpecificHeaderBox.java 7 import com.coremedia.iso.boxes.Box;
18 * This box contains information needed by a Content Protection System to play back the content. The
28 * systems, by including one Protection System-Specific Header box for each system supported. Readers
29 * that process such presentations must match the SystemID field in this box to the SystemID(s) of the
31 * box(es) for storage and retrieval of Protection-Specific information interpreted or created by that DRM
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 21 import com.coremedia.iso.boxes.Box;
39 * This box contains the media data. In video tracks, this box would contain video frames. A presentation may
42 * In large presentations, it may be desirable to have more data in this box than a 32-bit size would permit. In this
46 * so Media Data Box headers and free space may easily be skipped, and files without any box structure may
49 public final class MediaDataBox implements Box {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
AudioSampleEntry.java 22 import com.coremedia.iso.boxes.Box;
226 for (Box boxe : boxes) {
VisualSampleEntry.java 22 import com.coremedia.iso.boxes.Box;
175 for (Box boxe : boxes) {
  /libcore/ojluni/src/main/java/java/util/stream/
ReduceOps.java 72 class ReducingSink extends Box<U> implements AccumulatingSink<T, U, ReducingSink> {
160 class ReducingSink extends Box<I>
211 class ReducingSink extends Box<R>
347 class ReducingSink extends Box<R>
483 class ReducingSink extends Box<R>
619 class ReducingSink extends Box<R>
659 * State box for a single state element, used as a base class for
664 private static abstract class Box<U> {
667 Box() {} // Avoid creation of special accessor
  /external/snakeyaml/src/test/java/examples/collections/
TypeSafeSetImplementationsTest.java 195 Box box = new Box(); local
196 box.setId("id123");
197 box.setSet(set);
198 set.add(box);
206 assertTrue(output.contains("? !!examples.collections.TypeSafeSetImplementationsTest$Box"));
216 public static class Box {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 6 import com.coremedia.iso.boxes.Box;
51 List<Box> tkhds = Path.getPaths(this, "/moov[0]/trak/tkhd");
52 for (Box tkhd : tkhds) {

Completed in 407 milliseconds

12 3 4