diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-09-29 05:41:54 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-09-29 05:41:54 +0000 |
commit | e440b6bbdce988a5fd1e6efaa344ebc85606f17b (patch) | |
tree | 134f53870919fbfd65c8d1b7fc7b351f5d7ced6f /libswscale/swscale-example.c | |
parent | deea294c8988c94ba0542cbc342c818628144e78 (diff) | |
download | mpv-e440b6bbdce988a5fd1e6efaa344ebc85606f17b.tar.bz2 mpv-e440b6bbdce988a5fd1e6efaa344ebc85606f17b.tar.xz |
cosmetics: indentation
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27672 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale-example.c')
-rw-r--r-- | libswscale/swscale-example.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index fda3e2332c..eae24425e4 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -133,12 +133,11 @@ static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat ssdU/= w*h/4; ssdV/= w*h/4; - printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld\n", - sws_format_name(srcFormat), srcW, srcH, - sws_format_name(dstFormat), dstW, dstH, - flags, - ssdY, ssdU, ssdV); - fflush(stdout); + printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld\n", + sws_format_name(srcFormat), srcW, srcH, + sws_format_name(dstFormat), dstW, dstH, + flags, ssdY, ssdU, ssdV); + fflush(stdout); end: |