a52.library
-----------
This file is the AmigaOS4 shared library port of the well known liba52
Copyright
(C) Aaron Holtzman released under the GPL license.
AmigaOS4 port by Csaba 'Chip' Simon
This library is released under GPL license. Please see the LICENSE file for the
license terms and conditions.
Installation: Copy the bin/a52.library file into your sys:libs directory
Developer info:
--------------
To use the library you'll need to call only one function to retrieve your
decoder structure:
AVCodec ac3_decoder = {
"ac3",
CODEC_TYPE_AUDIO,
CODEC_ID_AC3,
sizeof(AC3DecodeState),
a52_decode_init,
NULL,
a52_decode_end,
a52_decode_frame,
};
This structure contains the adresses of the decoder functions and the codec
type.
ChangeLog:
----------
2005.09.01 V51.1 Initial version
2005.09.02 V51.2 Simplified API
2005.09.09 V51.3 Interface Obtain/Release fix, compiles with newlib now
|