HomeSort by relevance Sort by last modified time
    Searched refs:returnDecodingEntries (Results 1 - 2 of 2) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
CroppedTrack.java 64 LinkedList<TimeToSampleBox.Entry> returnDecodingEntries = new LinkedList<TimeToSampleBox.Entry>();
67 if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getDelta() != nuDecodingTime) {
69 returnDecodingEntries.add(e);
71 TimeToSampleBox.Entry e = returnDecodingEntries.getLast();
75 return returnDecodingEntries;
87 LinkedList<CompositionTimeToSample.Entry> returnDecodingEntries = new LinkedList<CompositionTimeToSample.Entry>();
90 if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getOffset() != nuDecodingTime) {
92 returnDecodingEntries.add(e)
    [all...]
AppendTrack.java 256 LinkedList<TimeToSampleBox.Entry> returnDecodingEntries = new LinkedList<TimeToSampleBox.Entry>();
259 if (returnDecodingEntries.isEmpty() || returnDecodingEntries.getLast().getDelta() != nuDecodingTime) {
261 returnDecodingEntries.add(e);
263 TimeToSampleBox.Entry e = returnDecodingEntries.getLast();
268 return returnDecodingEntries;

Completed in 291 milliseconds