com.googlecode.mp4parser.authoring.tracks.Amf0Track 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, ...)
/*
* 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.*;
import com.googlecode.mp4parser.authoring.AbstractTrack;
import com.googlecode.mp4parser.authoring.Sample;
import com.googlecode.mp4parser.authoring.SampleImpl;
import com.googlecode.mp4parser.authoring.TrackMetaData;
import com.googlecode.mp4parser.boxes.adobe.ActionMessageFormat0SampleEntryBox;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Collections;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;
public class Amf0Track extends AbstractTrack {
SortedMap rawSamples = new TreeMap() {
};
private TrackMetaData trackMetaData = new TrackMetaData();
/**
* Creates a new AMF0 track from
*
* @param rawSamples raw samples of the track
*/
public Amf0Track(Map rawSamples) {
super("amf0");
this.rawSamples = new TreeMap(rawSamples);
trackMetaData.setCreationTime(new Date());
trackMetaData.setModificationTime(new Date());
trackMetaData.setTimescale(1000); // Text tracks use millieseconds
trackMetaData.setLanguage("eng");
}
public List getSamples() {
LinkedList samples = new LinkedList();
for (byte[] bytes : rawSamples.values()) {
samples.add(new SampleImpl(ByteBuffer.wrap(bytes)));
}
return samples;
}
public void close() throws IOException {
// no resources involved - doing nothing
}
public SampleDescriptionBox getSampleDescriptionBox() {
SampleDescriptionBox stsd = new SampleDescriptionBox();
ActionMessageFormat0SampleEntryBox amf0 = new ActionMessageFormat0SampleEntryBox();
amf0.setDataReferenceIndex(1);
stsd.addBox(amf0);
return stsd;
}
public long[] getSampleDurations() {
LinkedList keys = new LinkedList(rawSamples.keySet());
Collections.sort(keys);
long[] rc = new long[keys.size()];
long lastTimeStamp = 0;
for (int i = 0; i < keys.size(); i++) {
long key = keys.get(i);
long delta = key - lastTimeStamp;
rc[i] = delta;
}
return rc;
}
public List getCompositionTimeEntries() {
// AMF0 tracks do not have Composition Time
return null;
}
public long[] getSyncSamples() {
// AMF0 tracks do not have Sync Samples
return null;
}
public List getSampleDependencies() {
// AMF0 tracks do not have Sample Dependencies
return null;
}
public TrackMetaData getTrackMetaData() {
return trackMetaData; //To change body of implemented methods use File | Settings | File Templates.
}
public String getHandler() {
return "data";
}
public SubSampleInformationBox getSubsampleInformationBox() {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy