git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbe46bc
)
Disable native Vorbis encoder; quality is much worse than libvorbis and
author
David Conrad
<lessen42@gmail.com>
Thu, 11 Jun 2009 06:28:06 +0000
(06:28 +0000)
committer
David Conrad
<lessen42@gmail.com>
Thu, 11 Jun 2009 06:28:06 +0000
(06:28 +0000)
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
libavcodec/allcodecs.c
patch
|
blob
|
history
diff --git
a/libavcodec/allcodecs.c
b/libavcodec/allcodecs.c
index
7e94055
..
803699b
100644
(file)
--- 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);