Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-04-11 13:37:52 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-04-11 13:37:52 +0400
commit548f0fb88ce5a0b1e6de28574d428bad10d46214 (patch)
tree05ebd82dc8bc855f08ba25048cf297dde487b754 /source/blender/imbuf
parent549fa84afae9185443fb43e6715b6a9d59972945 (diff)
Use SWS_FULL_CHR_H_INT for SWS context for more accurate conversion
Suggestion by Bjeorn Sonnenschein from report #34755.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 7f25d9b1d25..8fe98d1de45 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -606,7 +606,7 @@ static int startffmpeg(struct anim *anim)
anim->pCodecCtx->width,
anim->pCodecCtx->height,
PIX_FMT_RGBA,
- SWS_FAST_BILINEAR | SWS_PRINT_INFO,
+ SWS_FAST_BILINEAR | SWS_PRINT_INFO | SWS_FULL_CHR_H_INT,
NULL, NULL, NULL);
if (!anim->img_convert_ctx) {