[FFmpeg-devel] [PATCH v1] swscale/swscale: various cosmetics for the code style
Andriy Gelman
andriy.gelman at gmail.com
Sat Sep 7 23:20:35 EEST 2019
On Sat, 07. Sep 23:50, lance.lmwang at gmail.com wrote:
> From: Limin Wang <lance.lmwang at gmail.com>
>
> Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> ---
> libswscale/swscale.c | 40 ++++++++++++----------------------------
> 1 file changed, 12 insertions(+), 28 deletions(-)
>
> diff --git a/libswscale/swscale.c b/libswscale/swscale.c
> index 4069550..3e2ebd5 100644
> --- a/libswscale/swscale.c
> +++ b/libswscale/swscale.c
> @@ -271,7 +271,6 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> int lastInLumBuf = c->lastInLumBuf;
> int lastInChrBuf = c->lastInChrBuf;
>
> -
> int lumStart = 0;
> int lumEnd = c->descIndex[0];
> int chrStart = lumEnd;
> @@ -283,22 +282,16 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> SwsSlice *vout_slice = &c->slice[c->numSlice-1];
> SwsFilterDescriptor *desc = c->desc;
>
> -
> int needAlpha = c->needAlpha;
>
> int hasLumHoles = 1;
> int hasChrHoles = 1;
>
> -
> if (isPacked(c->srcFormat)) {
> - src[0] =
> - src[1] =
> - src[2] =
> - src[3] = src[0];
> - srcStride[0] =
> - srcStride[1] =
> - srcStride[2] =
> - srcStride[3] = srcStride[0];
> + for ( int i = 0; i < 4; i++ ) {
extra spaces and I guess you can start i from 1
> + src[i] = src[0];
> + srcStride[i] = srcStride[0];
> + }
> }
> srcStride[1] <<= c->vChrDrop;
> srcStride[2] <<= c->vChrDrop;
> @@ -324,7 +317,7 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> }
> }
>
> - if ( (uintptr_t)dst[0]&15 || (uintptr_t)dst[1]&15 || (uintptr_t)dst[2]&15
> + if ((uintptr_t)dst[0]&15 || (uintptr_t)dst[1]&15 || (uintptr_t)dst[2]&15
> || (uintptr_t)src[0]&15 || (uintptr_t)src[1]&15 || (uintptr_t)src[2]&15
> || dstStride[0]&15 || dstStride[1]&15 || dstStride[2]&15 || dstStride[3]&15
> || srcStride[0]&15 || srcStride[1]&15 || srcStride[2]&15 || srcStride[3]&15
> @@ -341,11 +334,9 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> * will not get executed. This is not really intended but works
> * currently, so people might do it. */
> if (srcSliceY == 0) {
> - lumBufIndex = -1;
> - chrBufIndex = -1;
> + lumBufIndex = chrBufIndex = -1;
> dstY = 0;
> - lastInLumBuf = -1;
> - lastInChrBuf = -1;
> + lastInLumBuf = lastInChrBuf = -1;
> }
>
> if (!should_dither) {
> @@ -368,16 +359,14 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> hout_slice->plane[2].sliceY = lastInChrBuf + 1;
> hout_slice->plane[3].sliceY = lastInLumBuf + 1;
>
> - hout_slice->plane[0].sliceH =
> - hout_slice->plane[1].sliceH =
> - hout_slice->plane[2].sliceH =
> - hout_slice->plane[3].sliceH = 0;
> + for(int i = 0; i < 4; i++)
> + hout_slice->plane[i].sliceH = 0;
> hout_slice->width = dstW;
> }
>
> for (; dstY < dstH; dstY++) {
> const int chrDstY = dstY >> c->chrDstVSubSample;
> - int use_mmx_vfilter= c->use_mmx_vfilter;
> + int use_mmx_vfilter = c->use_mmx_vfilter;
>
> // First line needed as input
> const int firstLumSrcY = FFMAX(1 - vLumFilterSize, vLumFilterPos[dstY]);
> @@ -396,7 +385,6 @@ static int swscale(SwsContext *c, const uint8_t *src[],
>
> // handle holes (FAST_BILINEAR & weird filters)
> if (firstLumSrcY > lastInLumBuf) {
> -
> hasLumHoles = lastInLumBuf != firstLumSrcY - 1;
> if (hasLumHoles) {
> hout_slice->plane[0].sliceY = firstLumSrcY;
> @@ -408,7 +396,6 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> lastInLumBuf = firstLumSrcY - 1;
> }
> if (firstChrSrcY > lastInChrBuf) {
> -
> hasChrHoles = lastInChrBuf != firstChrSrcY - 1;
> if (hasChrHoles) {
> hout_slice->plane[1].sliceY = firstChrSrcY;
> @@ -440,7 +427,6 @@ static int swscale(SwsContext *c, const uint8_t *src[],
> av_assert0((lastLumSrcY - firstLumSrcY + 1) <= hout_slice->plane[0].available_lines);
> av_assert0((lastChrSrcY - firstChrSrcY + 1) <= hout_slice->plane[1].available_lines);
>
> -
> posY = hout_slice->plane[0].sliceY + hout_slice->plane[0].sliceH;
> if (posY <= lastLumSrcY && !hasLumHoles) {
> firstPosY = FFMAX(firstLumSrcY, posY);
> @@ -503,10 +489,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)
I thought that i++ is preferred to ++i
> + desc[i].process(c, &desc[i], dstY, 1);
> }
> if (isPlanar(dstFormat) && isALPHA(dstFormat) && !needAlpha) {
> int length = dstW;
> --
> 2.6.4
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
Andriy
More information about the ffmpeg-devel
mailing list