Searched defs:fromSample (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
29 * has to make sure that the fromSample is a random access sample.
37 private int fromSample; field in class:CroppedTrack
41 public CroppedTrack(Track origTrack, long fromSample, long toSample) { argument
43 assert fromSample <= Integer.MAX_VALUE;
45 this.fromSample = (int) fromSample;
50 return origTrack.getSamples().subList(fromSample, toSample);
61 long[] nuDecodingTimes = new long[toSample - fromSample];
62 System.arraycopy(decodingTimes, fromSample, nuDecodingTime
[all...]

Completed in 47 milliseconds