org.jcodec.containers.mp4.DataBoxes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcodec Show documentation
Show all versions of jcodec Show documentation
Pure Java implementation of video/audio codecs and formats
package org.jcodec.containers.mp4;
import org.jcodec.containers.mp4.boxes.AliasBox;
import org.jcodec.containers.mp4.boxes.UrlBox;
public class DataBoxes extends Boxes {
public DataBoxes() {
mappings.put(UrlBox.fourcc(), UrlBox.class);
mappings.put(AliasBox.fourcc(), AliasBox.class);
mappings.put("cios", AliasBox.class);
}
}