package org.jcodec.scale; import org.jcodec.common.model.Picture; /** * This class is part of JCodec ( www.jcodec.org ) * This software is distributed under FreeBSD License * * @author The JCodec project * @deprecated Use org.jcodec.scale.Transform8Bit and related APIs * */ public interface Transform { public static enum Levels { STUDIO, PC }; public void transform(Picture src, Picture dst); }