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

22 lines
417 B
Java
Raw Normal View History

2026-04-22 18:41:37 +02:00
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;
}
}