org.jcodec.codecs.h264.decode.model.MVMatrix 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.decode.model;
import org.jcodec.codecs.h264.io.model.Vector;
/**
* This class is part of JCodec ( www.jcodec.org )
* This software is distributed under FreeBSD License
*
* Decoded motion vectors used in the deblocking filter
*
*
* @author Stanislav Vitvitskiy
*
*/
public class MVMatrix {
private Vector[] vectors;
public MVMatrix(Vector[] vectors) {
this.vectors = vectors;
}
public Vector[] getVectors() {
return vectors;
}
}