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 606f6b79ea.
This commit is contained in:
Sergey Sharybin 2016-03-15 12:32:27 +05:00
parent 0bf34bbb88
commit 9ddd83cec2
Notes: blender-bot 2023-02-14 08:07:46 +01:00
Referenced by issue #47806, Blender animation player stop working correctly with XVID codec
Referenced by issue #47724, VSE crops video if horizontal resolution isn't divisible by 8
1 changed files with 1 additions and 1 deletions

View File

@ -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) {