- Direct Known Subclasses:
- AC3DecoderInfo, AMRDecoderInfo, AVCDecoderInfo, EAC3DecoderInfo, EVRCDecoderInfo, H263DecoderInfo, QCELPDecoderInfo, SMVDecoderInfo
public abstract class DecoderInfo
extends java.lang.Object
The DecoderInfo
object contains the neccessary data to
initialize a decoder. A track either contains a DecoderInfo
or a
byte-Array called the 'DecoderSpecificInfo', which is e.g. used for AAC.
The DecoderInfo
object received from a track is a subclass of
this class depending on the Codec
.
AudioTrack track = (AudioTrack) movie.getTrack(AudioCodec.AC3);
AC3DecoderInfo info = (AC3DecoderInfo) track.getDecoderInfo();