diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-13 13:18:59 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-13 13:18:59 +0000 |
commit | 475f361308de510d7ed8a9d18d384e0ec3f428ed (patch) | |
tree | 832a80a0de04c035b55489433572d19e5b43d8c8 /libswscale/swscale-example.c | |
parent | e55ed689a264c78f332745598ea8c58a3422ee13 (diff) | |
download | ffmpeg-475f361308de510d7ed8a9d18d384e0ec3f428ed.tar.gz |
Indent.
Originally committed as revision 29506 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale-example.c')
-rw-r--r-- | libswscale/swscale-example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index af959b11a6..c289324f0b 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -141,8 +141,8 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, int srcFormat ssdY= getSSD(ref[0], out[0], refStride[0], refStride[0], w, h); if (!isGray(srcFormat) && !isGray(dstFormat)) { //FIXME check that output is really gray - ssdU= getSSD(ref[1], out[1], refStride[1], refStride[1], (w+1)>>1, (h+1)>>1); - ssdV= getSSD(ref[2], out[2], refStride[2], refStride[2], (w+1)>>1, (h+1)>>1); + ssdU= getSSD(ref[1], out[1], refStride[1], refStride[1], (w+1)>>1, (h+1)>>1); + ssdV= getSSD(ref[2], out[2], refStride[2], refStride[2], (w+1)>>1, (h+1)>>1); } if (isALPHA(srcFormat) && isALPHA(dstFormat)) ssdA= getSSD(ref[3], out[3], refStride[3], refStride[3], w, h); |