![JAR search and dependency download from the Maven repository](/logo.png)
org.jcodec.containers.mkv.elements.TrackEntry 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 java.util.Arrays;
import org.jcodec.containers.mkv.Reader;
import org.jcodec.containers.mkv.Type;
import org.jcodec.containers.mkv.ebml.MasterElement;
public class TrackEntry extends MasterElement {
public TrackEntry(byte[] type) {
super(type);
if (!Arrays.equals(Type.TrackEntry.id, type))
throw new IllegalArgumentException(Reader.printAsHex(type));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy