OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:syncsampletimes
(Results
1 - 2
of
2
) sorted by null
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java
58
long[]
syncSampleTimes
= new long[syncSamples.length];
70
syncSampleTimes
[currentSyncSampleIndex++] = (currentDuration * targetTimeScale) / track.getTrackMetaData().getTimescale();
79
return
syncSampleTimes
;
154
static List<TimeToSampleBox.Entry> adjustTts(List<TimeToSampleBox.Entry> source, double timeScaleFactor, long[] syncSample, long[]
syncSampleTimes
) {
170
if (
syncSampleTimes
[ssIndex] != summedDurations) {
171
long correction =
syncSampleTimes
[ssIndex] - (summedDurations + x);
172
LOG.finest(String.format("Sample %d %d / %d - correct by %d", i, summedDurations,
syncSampleTimes
[ssIndex], correction));
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
SyncSampleIntersectFinderImpl.java
176
public long[] getCommonIndices(long[] syncSamples, long[]
syncSampleTimes
, long timeScale, long[]... otherTracksTimes) {
181
for (int i = 0; i <
syncSampleTimes
.length; i++) {
184
foundInEveryRef &= (Arrays.binarySearch(times,
syncSampleTimes
[i]) >= 0);
190
nuSyncSampleTimes.add(
syncSampleTimes
[i]);
267
long[]
syncSampleTimes
= new long[syncSamples.length];
280
syncSampleTimes
[currentSyncSampleIndex++] = currentDuration * scalingFactor;
289
getTimesCache.put(key,
syncSampleTimes
);
290
return
syncSampleTimes
;
Completed in 260 milliseconds