[FFmpeg-cvslog] r14626 - trunk/libavcodec/aac.c

Robert Swain robert.swain
Wed Aug 6 11:24:39 CEST 2008


2008/8/6  <pross at xvid.org>:
> On Tue, Aug 05, 2008 at 09:32:01PM +0200, superdump wrote:
>> Author: superdump
>> Date: Tue Aug  5 21:32:01 2008
>> New Revision: 14626
>>
>> Log:
>> OKed sections of code from the SoC AAC decoder
>>
>>
>> Added:
>>    trunk/libavcodec/aac.c
>>
>> Added: trunk/libavcodec/aac.c
>> ==============================================================================
>> --- (empty file)
>> +++ trunk/libavcodec/aac.c    Tue Aug  5 21:32:01 2008
>> @@ -0,0 +1,241 @@
>> +
>> +AVCodec aac_decoder = {
>> +    "aac",
>> +    CODEC_TYPE_AUDIO,
>> +    CODEC_ID_AAC,
>> +    sizeof(AACContext),
>> +    aac_decode_init,
>> +    NULL,
>> +    aac_decode_close,
>> +    aac_decode_frame,
>> +    .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
>> +};
>
> Rob, please set AVCodec->sample_fmts in your next patch round.

Done. Also avctx->sample_fmt = SAMPLE_FMT_S16; in the
aac_decode_init() function.

Rob




More information about the ffmpeg-cvslog mailing list