Package com.avpkit.core.video
A collection of utilities for working with Video in the AVPKit libraries.
In particular, the IConverter interface
allows for conversion
from AVPKit IVideoPicture objects into
Java BufferedImage objects and back.
To create an IConverter object, use
the ConverterFactory class.
-
Interface Summary Interface Description IConverter This interface describes a converter which can perform bidirectional translation between a givenIVideoPicturetype and aBufferedImagetype. -
Class Summary Class Description AConverter An abstract converter class from which specific converters can be derived to do the actual conversions.ArgbConverter A converter to translateIVideoPictures to and fromBufferedImages of typeBufferedImage.TYPE_INT_ARGB.BgrConverter A converter to translateIVideoPictures to and fromBufferedImages of typeBufferedImage.TYPE_3BYTE_BGR.ConverterFactory This factory class createsIConverterobjects for translation between a number ofIVideoPictureandBufferedImagetypes.ConverterFactory.Type This class describes a converter type and is used to register and unregister types withConverterFactory.