org.jcodec.containers.mkv.elements.Chapters 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.mkv.elements;
import org.jcodec.containers.mkv.ebml.MasterElement;
public class Chapters extends MasterElement {
public Chapters(byte[] type) {
super(type);
}
}