On 13/4/09 14:52, Nick Kichukov wrote:
I get AAC decoding crash on windows (avcodec_decode_audio2) when attempting
to decode AAC media. In addition it says ( when I run ffmpeg.exe ) that SBR
is not supported. I believe SBR is not supported yet by the ffmpeg AAC
decoder but question is why it says so after I have compiled with libfaac
and libfaad support. My configure line is as follows:

configuration: --extra-ldflags=-L/static/lib
--extra-cflags='-I/static/include -fno-common' --enable-shared
--disable-static --enable-memalign-hack --enable-gpl --enable-libfaac
--enable-libfaad --enable-libmp3lame --enable-pthreads --enable-libx264

Latest ffmpeg SVN ...

You will need to manually select the 'libfaad' codec. On the command line this can be done by putting '-acodec libfaad' before the '-i input' for the file containing HE AAC. In the libavcodec API, I think you will have to look up the decoder by name. Else you can configure your FFmpeg to not compile the internal aac decoder with '--disable-decoder=aac' at configure time.

Regards,
Rob
_______________________________________________
libav-user mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/libav-user

Reply via email to