Home | History | Annotate | Download | only in boxes

Lines Matching refs:entries

38  * The sample entries are ordered by decoding time stamps; therefore the deltas are all non-negative. <br>
47 List<Entry> entries = Collections.emptyList();
55 return 8 + entries.size() * 8;
62 entries = new ArrayList<Entry>(entryCount);
65 entries.add(new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content)));
73 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
74 for (Entry entry : entries) {
81 return entries;
84 public void setEntries(List<Entry> entries) {
85 this.entries = entries;
89 return "TimeToSampleBox[entryCount=" + entries.size() + "]";
127 * Decompresses the list of entries and returns the list of decoding times.
131 public static long[] blowupTimeToSamples(List<TimeToSampleBox.Entry> entries) {
133 for (TimeToSampleBox.Entry entry : entries) {
142 for (TimeToSampleBox.Entry entry : entries) {