Commit 77fc598d authored by David Conrad's avatar David Conrad

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
parent bbe46bc4
......@@ -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);
......
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