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();
@author in-somnia
|
|
|
|