All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcodec.containers.mkv.elements.Attachments Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
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 Attachments extends MasterElement {

    public Attachments(byte[] typeId) {
        super(typeId);
        if (!Arrays.equals(Type.Attachments.id, typeId))
            throw new IllegalArgumentException(Reader.printAsHex(typeId));
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy