mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fixed granularity of video quality when encoding with theora codec
The floating point version of av_clip has to be used when converting the quality level. Signed-off-by: Maximilian Seesslen <mes@seesslen.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c98d3056cf
commit
467c033858
@ -212,7 +212,7 @@ static av_cold int encode_init(AVCodecContext* avc_context)
|
||||
* 0 <= p <=63
|
||||
* an int value
|
||||
*/
|
||||
t_info.quality = av_clip(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
|
||||
t_info.quality = av_clipf(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
|
||||
t_info.target_bitrate = 0;
|
||||
} else {
|
||||
t_info.target_bitrate = avc_context->bit_rate;
|
||||
|
Loading…
Reference in New Issue
Block a user