diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-22 19:30:19 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-22 19:30:19 +0000 |
commit | a48ce2c3a749d5c2cd124a28b8a1d5332aad9160 (patch) | |
tree | 246e361ae8d96de326548e47cb7418ccb354b05c /libswscale | |
parent | a8dd8dc6e9a419758006dc212fb590991e927030 (diff) | |
download | ffmpeg-a48ce2c3a749d5c2cd124a28b8a1d5332aad9160.tar.gz |
Fix inconsistent indentation.
Originally committed as revision 29545 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-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 9359e1ecab..da29a16470 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -37,7 +37,7 @@ const char *sws_format_name(enum PixelFormat format); || (x)==PIX_FMT_GRAY16BE \ || (x)==PIX_FMT_GRAY16LE \ ) -#define hasChroma(x) (!( \ +#define hasChroma(x) (!( \ isGray(x) \ || (x)==PIX_FMT_MONOBLACK \ || (x)==PIX_FMT_MONOWHITE \ @@ -165,7 +165,7 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, int srcFormat flags, ssdY, ssdU, ssdV, ssdA); fflush(stdout); - end: +end: sws_freeContext(srcContext); sws_freeContext(dstContext); |