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

org.jcodec.codecs.h264.decode.model.NonIDRFrame Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package org.jcodec.codecs.h264.decode.model;

import org.jcodec.codecs.h264.io.model.NALUnit;
import org.jcodec.codecs.h264.io.model.RefPicMarking;
import org.jcodec.common.model.Picture;

/**
 * This class is part of JCodec ( www.jcodec.org )
 * This software is distributed under FreeBSD License
 * 
 * @author stan
 *
 */
public class NonIDRFrame extends DecodedFrame {
	private RefPicMarking marking;

	public NonIDRFrame(Picture picture, NALUnit nu, int frameId, int poc,
			RefPicMarking marking) {
		super(picture, nu, frameId, poc);
		this.marking = marking;
	}

	public RefPicMarking getMarking() {
		return marking;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy