HomeSort by relevance Sort by last modified time
    Searched refs:Box (Results 1 - 25 of 103) 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;
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/chromium_org/media/formats/mp4/
box_definitions.h 39 struct MEDIA_EXPORT FileType : Box {
46 struct MEDIA_EXPORT ProtectionSystemSpecificHeader : Box {
53 struct MEDIA_EXPORT SampleAuxiliaryInformationOffset : Box {
59 struct MEDIA_EXPORT SampleAuxiliaryInformationSize : Box {
67 struct MEDIA_EXPORT OriginalFormat : Box {
73 struct MEDIA_EXPORT SchemeType : Box {
80 struct MEDIA_EXPORT TrackEncryption : Box {
89 struct MEDIA_EXPORT SchemeInfo : Box {
95 struct MEDIA_EXPORT ProtectionSchemeInfo : Box {
103 struct MEDIA_EXPORT MovieHeader : Box {
    [all...]
  /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/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
Blit11.h 34 bool copyTexture(ID3D11ShaderResourceView *source, const gl::Box &sourceArea, const gl::Extents &sourceSize,
35 ID3D11RenderTargetView *dest, const gl::Box &destArea, const gl::Extents &destSize,
38 bool copyStencil(ID3D11Resource *source, unsigned int sourceSubresource, const gl::Box &sourceArea, const gl::Extents &sourceSize,
39 ID3D11Resource *dest, unsigned int destSubresource, const gl::Box &destArea, const gl::Extents &destSize,
42 bool copyDepth(ID3D11ShaderResourceView *source, const gl::Box &sourceArea, const gl::Extents &sourceSize,
43 ID3D11DepthStencilView *dest, const gl::Box &destArea, const gl::Extents &destSize,
46 bool copyDepthStencil(ID3D11Resource *source, unsigned int sourceSubresource, const gl::Box &sourceArea, const gl::Extents &sourceSize,
47 ID3D11Resource *dest, unsigned int destSubresource, const gl::Box &destArea, const gl::Extents &destSize,
60 bool copyDepthStencil(ID3D11Resource *source, unsigned int sourceSubresource, const gl::Box &sourceArea, const gl::Extents &sourceSize,
61 ID3D11Resource *dest, unsigned int destSubresource, const gl::Box &destArea, const gl::Extents &destSize
    [all...]
PixelTransfer11.h 18 struct Box;
43 GLenum destinationFormat, GLenum sourcePixelsType, const gl::Box &destArea);
59 static void setBufferToTextureCopyParams(const gl::Box &destArea, const gl::Extents &destSize, GLenum internalFormat,
  /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/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/chromium_org/net/quic/crypto/
crypto_secret_boxer.h 27 // SetKey sets the key for this object. This must be done before |Box| or
31 // Box encrypts |plaintext| using a random nonce generated from |rand| and
34 std::string Box(QuicRandom* rand, base::StringPiece plaintext) const;
36 // Unbox takes the result of a previous call to |Box| in |ciphertext| and
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShapeValue.h 46 Box,
106 : m_type(Box)
126 case Box:

Completed in 845 milliseconds

1 2 3 4 5