Home | History | Annotate | Download | only in boxes

Lines Matching refs:Box

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) {
45 if (box instanceof SampleDescriptionBox) {
46 return (SampleDescriptionBox) box;
53 for (Box box : boxes) {
54 if (box instanceof SampleSizeBox) {
55 return (SampleSizeBox) box;
62 for (Box box : boxes) {
63 if (box instanceof SampleToChunkBox) {
64 return (SampleToChunkBox) box;
71 for (Box box : boxes) {
72 if (box instanceof ChunkOffsetBox) {
73 return (ChunkOffsetBox) box;
81 Box box = boxes.get(i);
82 if (box instanceof ChunkOffsetBox) {
89 for (Box box : boxes) {
90 if (box instanceof TimeToSampleBox) {
91 return (TimeToSampleBox) box;
98 for (Box box : boxes) {
99 if (box instanceof SyncSampleBox) {
100 return (SyncSampleBox) box;
107 for (Box box : boxes) {
108 if (box instanceof CompositionTimeToSample) {
109 return (CompositionTimeToSample) box;
116 for (Box box : boxes) {
117 if (box instanceof SampleDependencyTypeBox) {
118 return (SampleDependencyTypeBox) box;