From 69ee17f0b6121ab63f0a7712c9563295eda88d39 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sat, 18 Feb 2012 16:42:19 +0000 Subject: Wring scaling and precision error in previous commit. --- source/blender/imbuf/intern/indexer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/imbuf/intern/indexer.c') diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c index eb1bfc80383..ade63aa1e9c 100644 --- a/source/blender/imbuf/intern/indexer.c +++ b/source/blender/imbuf/intern/indexer.c @@ -517,7 +517,7 @@ static struct proxy_output_ctx * alloc_proxy_output_ffmpeg( /* there's no way to set JPEG quality in the same way as in AVI JPEG and image sequence, * but this seems to be giving expected quality result */ - ffmpeg_quality = 31 * (1.0f - (float)quality / 100.0f); + ffmpeg_quality = (int)(1.0f + 30.0f * (1.0f - (float)quality / 100.0f) + 0.5f); av_set_int(rv->c, "qmin", ffmpeg_quality); av_set_int(rv->c, "qmax", ffmpeg_quality); -- cgit v1.2.3