summaryrefslogtreecommitdiff
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-06-11 06:28:06 +0000
committerDavid Conrad <lessen42@gmail.com>2009-06-11 06:28:06 +0000
commit77fc598d984ed23e66a5aa5b97c2982a79552abf (patch)
treec971f3e1caf6e7ff21f482a5c9e5ae5535490069 /libavcodec/allcodecs.c
parentbbe46bc4c2df648d42470f4c529987ec67f1580a (diff)
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. Originally committed as revision 19149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 7e94055352..803699b7cd 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -227,7 +227,8 @@ void avcodec_register_all(void)
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);