Searched defs:toSample (Results 1 - 1 of 1) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DCroppedTrack.java28 * Generates a Track that starts at fromSample and ends at toSample (exclusive). The user of this class
38 private int toSample; field in class:CroppedTrack
41 public CroppedTrack(Track origTrack, long fromSample, long toSample) { argument
44 assert toSample <= Integer.MAX_VALUE;
46 this.toSample = (int) toSample;
50 return origTrack.getSamples().subList(fromSample, toSample);
61 long[] nuDecodingTimes = new long[toSample - fromSample];
62 System.arraycopy(decodingTimes, fromSample, nuDecodingTimes, 0, toSample - fromSample);
84 int[] nuCompositionTimes = new int[toSample
[all...]

Completed in 68 milliseconds