22 lines
417 B
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;
|
|
}
|
|
}
|