[Bf-blender-cvs] [9ddd83c] master: Fix T47724: VSE crops video if horizontal resolution isn't divisible by 8

Sergey Sharybin noreply at git.blender.org
Tue Mar 15 09:40:02 CET 2016


Commit: 9ddd83cec215bffcde001ed88d6c7e2e762053ff
Author: Sergey Sharybin
Date:   Tue Mar 15 12:32:27 2016 +0500
Branches: master
https://developer.blender.org/rB9ddd83cec215bffcde001ed88d6c7e2e762053ff

Fix T47724: VSE crops video if horizontal resolution isn't divisible by 8

Revert "Fix T47724: VSE crops video if horizontal resolution isn't divisible by 8"

This reverts commit 606f6b79eabca236b933dd76e5425162e26ba105.

===================================================================

M	source/blender/imbuf/intern/anim_movie.c

===================================================================

diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 1b3b9c2..1b4ce42 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -600,7 +600,7 @@ static int startffmpeg(struct anim *anim)
 	        anim->x,
 	        anim->y,
 	        AV_PIX_FMT_RGBA,
-	        SWS_FAST_BILINEAR | SWS_PRINT_INFO | SWS_FULL_CHR_H_INT | SWS_ACCURATE_RND,
+	        SWS_FAST_BILINEAR | SWS_PRINT_INFO | SWS_FULL_CHR_H_INT,
 	        NULL, NULL, NULL);
 		
 	if (!anim->img_convert_ctx) {




More information about the Bf-blender-cvs mailing list