mirror of https://git.ffmpeg.org/ffmpeg.git
allcodecs: move libaacplus down.
We choose the first encoder by default and libaccplus has a quite limited set of supported bitrates/sample rates. Thus leading to failure by default in many cases when it is enabled at compile time. Moving it down means that the other aac encoders are favored by default which avoids this issue. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a61fada380
commit
c22fd9bd9c
|
@ -401,7 +401,6 @@ void avcodec_register_all(void)
|
|||
REGISTER_ENCDEC (XSUB, xsub);
|
||||
|
||||
/* external libraries */
|
||||
REGISTER_ENCODER (LIBAACPLUS, libaacplus);
|
||||
REGISTER_DECODER (LIBCELT, libcelt);
|
||||
REGISTER_DECODER (LIBDIRAC, libdirac);
|
||||
REGISTER_ENCODER (LIBFAAC, libfaac);
|
||||
|
@ -424,6 +423,7 @@ void avcodec_register_all(void)
|
|||
REGISTER_ENCODER (LIBX264RGB, libx264rgb);
|
||||
REGISTER_ENCODER (LIBXAVS, libxavs);
|
||||
REGISTER_ENCODER (LIBXVID, libxvid);
|
||||
REGISTER_ENCODER (LIBAACPLUS, libaacplus);
|
||||
|
||||
/* text */
|
||||
REGISTER_DECODER (BINTEXT, bintext);
|
||||
|
|
Loading…
Reference in New Issue