Commit 05276956 authored by Nicolas George's avatar Nicolas George Committed by Justin Ruggles

libvorbis: Use 0-10 range for audio quality.

Patch by Nicolas George (nicolas george normalesup org)

Originally committed as revision 17107 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a5037227
...@@ -57,7 +57,7 @@ static int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) { ...@@ -57,7 +57,7 @@ static int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
/* variable bitrate */ /* variable bitrate */
if(vorbis_encode_setup_vbr(vi, avccontext->channels, if(vorbis_encode_setup_vbr(vi, avccontext->channels,
avccontext->sample_rate, avccontext->sample_rate,
avccontext->global_quality / (float)FF_QP2LAMBDA)) avccontext->global_quality / (float)FF_QP2LAMBDA / 10.0))
return -1; return -1;
} else { } else {
/* constant bitrate */ /* constant bitrate */
......
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