sws: remove unnecessary braces

There used to be more code inside them, but it was removed in
6de58b4903.
This commit is contained in:
Anton Khirnov 2021-05-14 11:51:22 +02:00
parent 9583e66ea0
commit f8c21ccbfc
1 changed files with 2 additions and 4 deletions

View File

@ -487,10 +487,8 @@ static int swscale(SwsContext *c, const uint8_t *src[],
yuv2packed1, yuv2packed2, yuv2packedX, yuv2anyX, use_mmx_vfilter);
}
{
for (i = vStart; i < vEnd; ++i)
desc[i].process(c, &desc[i], dstY, 1);
}
for (i = vStart; i < vEnd; ++i)
desc[i].process(c, &desc[i], dstY, 1);
}
if (isPlanar(dstFormat) && isALPHA(dstFormat) && !needAlpha) {
int length = dstW;