mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 10:55:43 +00:00
swscale-example: Rename src->ref so as to not confuse with src being used in doTest().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29548 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ed3cf3036c
commit
ec7e2695a6
@ -180,7 +180,7 @@ end:
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void selfTest(uint8_t *src[4], int stride[4], int w, int h)
|
static void selfTest(uint8_t *ref[4], int refStride[4], int w, int h)
|
||||||
{
|
{
|
||||||
const int flags[] = { SWS_FAST_BILINEAR,
|
const int flags[] = { SWS_FAST_BILINEAR,
|
||||||
SWS_BILINEAR, SWS_BICUBIC,
|
SWS_BILINEAR, SWS_BICUBIC,
|
||||||
@ -204,7 +204,7 @@ static void selfTest(uint8_t *src[4], int stride[4], int w, int h)
|
|||||||
for (i = 0; dstW[i] && !res; i++)
|
for (i = 0; dstW[i] && !res; i++)
|
||||||
for (j = 0; dstH[j] && !res; j++)
|
for (j = 0; dstH[j] && !res; j++)
|
||||||
for (k = 0; flags[k] && !res; k++)
|
for (k = 0; flags[k] && !res; k++)
|
||||||
res = doTest(src, stride, w, h, srcFormat, dstFormat,
|
res = doTest(ref, refStride, w, h, srcFormat, dstFormat,
|
||||||
srcW, srcH, dstW[i], dstH[j], flags[k]);
|
srcW, srcH, dstW[i], dstH[j], flags[k]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user