1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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

View File

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