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.
This commit is contained in:
Sergey Sharybin 2016-03-15 12:32:27 +05:00
parent 0bf34bbb88
commit 9ddd83cec2

@ -600,7 +600,7 @@ static int startffmpeg(struct anim *anim)
anim->x, anim->x,
anim->y, anim->y,
AV_PIX_FMT_RGBA, 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); NULL, NULL, NULL);
if (!anim->img_convert_ctx) { if (!anim->img_convert_ctx) {