Mercurial > libavcodec.hg
changeset 9833:2023caf1ccd5 libavcodec
Disable native Vorbis encoder; quality is much worse than libvorbis and
there really isn't a reason to use it on purpose unless you're improving it.
author | conrad |
---|---|
date | Thu, 11 Jun 2009 06:28:06 +0000 |
parents | d2855e8a7f12 |
children | ce317c75222d |
files | allcodecs.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/allcodecs.c Wed Jun 10 20:50:53 2009 +0000 +++ b/allcodecs.c Thu Jun 11 06:28:06 2009 +0000 @@ -227,7 +227,8 @@ REGISTER_DECODER (TRUESPEECH, truespeech); REGISTER_DECODER (TTA, tta); REGISTER_DECODER (VMDAUDIO, vmdaudio); - REGISTER_ENCDEC (VORBIS, vorbis); + /* The Vorbis encoder is disabled because it is extremely low quality. */ + REGISTER_DECODER (VORBIS, vorbis); REGISTER_DECODER (WAVPACK, wavpack); REGISTER_ENCDEC (WMAV1, wmav1); REGISTER_ENCDEC (WMAV2, wmav2);