Commit 12fc3009 authored by diego's avatar diego

The MPEG4AAC codec is provided by an external library and will be disabled

with the next libavcodec major version bump.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13186 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent eb7d6028
......@@ -195,7 +195,6 @@ void avcodec_register_all(void)
REGISTER_DECODER (MP3ON4, mp3on4);
REGISTER_DECODER (MPC7, mpc7);
REGISTER_DECODER (MPC8, mpc8);
REGISTER_DECODER (MPEG4AAC, mpeg4aac);
REGISTER_DECODER (NELLYMOSER, nellymoser);
REGISTER_DECODER (QDM2, qdm2);
REGISTER_DECODER (RA_144, ra_144);
......@@ -288,6 +287,9 @@ void avcodec_register_all(void)
REGISTER_ENCODER (LIBVORBIS, libvorbis);
REGISTER_ENCODER (LIBX264, libx264);
REGISTER_ENCODER (LIBXVID, libxvid);
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
REGISTER_DECODER (MPEG4AAC, mpeg4aac);
#endif
/* parsers */
REGISTER_PARSER (AAC, aac);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment