com.googlecode.mp4parser.authoring.tracks.DivideTimeScaleTrack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isoparser Show documentation
Show all versions of isoparser Show documentation
A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)
The newest version!
/*
* Copyright 2012 Sebastian Annies, Hamburg
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.googlecode.mp4parser.authoring.tracks;
import com.coremedia.iso.boxes.CompositionTimeToSample;
import com.coremedia.iso.boxes.SampleDependencyTypeBox;
import com.coremedia.iso.boxes.SampleDescriptionBox;
import com.coremedia.iso.boxes.SubSampleInformationBox;
import com.googlecode.mp4parser.authoring.Edit;
import com.googlecode.mp4parser.authoring.Sample;
import com.googlecode.mp4parser.authoring.Track;
import com.googlecode.mp4parser.authoring.TrackMetaData;
import com.googlecode.mp4parser.boxes.mp4.samplegrouping.GroupEntry;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* Changes the timescale of a track by wrapping the track.
*/
public class DivideTimeScaleTrack implements Track {
Track source;
private int timeScaleDivisor;
public DivideTimeScaleTrack(Track source, int timeScaleDivisor) {
this.source = source;
this.timeScaleDivisor = timeScaleDivisor;
}
public void close() throws IOException {
source.close();
}
public SampleDescriptionBox getSampleDescriptionBox() {
return source.getSampleDescriptionBox();
}
public long[] getSampleDurations() {
long[] scaled = new long[source.getSampleDurations().length];
for (int i = 0; i < source.getSampleDurations().length; i++) {
scaled[i] = source.getSampleDurations()[i] / timeScaleDivisor;
}
return scaled;
}
public List getCompositionTimeEntries() {
return adjustCtts();
}
public long[] getSyncSamples() {
return source.getSyncSamples();
}
public List getSampleDependencies() {
return source.getSampleDependencies();
}
public TrackMetaData getTrackMetaData() {
TrackMetaData trackMetaData = (TrackMetaData) source.getTrackMetaData().clone();
trackMetaData.setTimescale(source.getTrackMetaData().getTimescale() / this.timeScaleDivisor);
return trackMetaData;
}
public String getHandler() {
return source.getHandler();
}
public List getSamples() {
return source.getSamples();
}
List adjustCtts() {
List origCtts = this.source.getCompositionTimeEntries();
if (origCtts != null) {
List entries2 = new ArrayList(origCtts.size());
for (CompositionTimeToSample.Entry entry : origCtts) {
entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), entry.getOffset() / timeScaleDivisor));
}
return entries2;
} else {
return null;
}
}
public SubSampleInformationBox getSubsampleInformationBox() {
return source.getSubsampleInformationBox();
}
public long getDuration() {
long duration = 0;
for (long delta : getSampleDurations()) {
duration += delta;
}
return duration;
}
@Override
public String toString() {
return "MultiplyTimeScaleTrack{" +
"source=" + source +
'}';
}
public String getName() {
return "timscale(" + source.getName() + ")";
}
public List getEdits() {
return source.getEdits();
}
public Map getSampleGroups() {
return source.getSampleGroups();
}
}