javax.media.util.BufferToImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
package javax.media.util;
import javax.media.format.*;
/**
* Standard JMF class -- see this class in the JMF Javadoc. In progress. We implement
* in FMJ and extend, because if JMF is (ahead) in the classpath, its
* BufferToImage would be used even for FMJ classes like SimpleAWTRenderer. It
* fails on 4harmonic.mpg.
*
* @author Ken Larson
*
*/
public class BufferToImage extends net.sf.fmj.media.util.BufferToImage
{
public BufferToImage(VideoFormat format)
{
super(format);
}
}