![JAR search and dependency download from the Maven repository](/logo.png)
org.jcodec.codecs.h264.io.model.RefPicMarkingIDR 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.codecs.h264.io.model;
import org.jcodec.common.tools.ToJSON;
/**
* This class is part of JCodec ( www.jcodec.org ) This software is distributed
* under FreeBSD License
*
* Reference picture marking used for IDR frames
*
* @author The JCodec project
*
*/
public class RefPicMarkingIDR {
boolean discardDecodedPics;
boolean useForlongTerm;
public RefPicMarkingIDR(boolean discardDecodedPics, boolean useForlongTerm) {
this.discardDecodedPics = discardDecodedPics;
this.useForlongTerm = useForlongTerm;
}
public boolean isDiscardDecodedPics() {
return discardDecodedPics;
}
public boolean isUseForlongTerm() {
return useForlongTerm;
}
@Override
public String toString() {
return ToJSON.toJSON(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy