Regalamiunsorriso/decompiled-libs/www/acxent-videoj-1.0.0/org/jcodec/common/CodecMeta.java

22 lines
417 B
Java

package org.jcodec.common;
import java.nio.ByteBuffer;
public class CodecMeta {
private String fourcc;
private ByteBuffer codecPrivate;
public CodecMeta(String fourcc, ByteBuffer codecPrivate) {
this.fourcc = fourcc;
this.codecPrivate = codecPrivate;
}
public String getFourcc() {
return this.fourcc;
}
public ByteBuffer getCodecPrivate() {
return this.codecPrivate;
}
}