diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-20 17:54:28 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-20 17:54:28 +0000 |
commit | 096971e8923a3e12018fd9b9a781226a2f34ed17 (patch) | |
tree | 18e22f5e83b16e53886f76a2647c40359513cb4a | |
parent | 070ce7efade489a1ba0b5ba4433116e3133fae46 (diff) | |
download | ffmpeg-096971e8923a3e12018fd9b9a781226a2f34ed17.tar.gz |
vp8: indent
Originally committed as revision 24368 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp8.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 44cac7dc88..08241f78f5 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -882,10 +882,10 @@ void xchg_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_ src_cb -= uvlinesize; src_cr -= uvlinesize; -#define XCHG(a,b,xchg) do {\ -if (xchg) AV_SWAP64(b,a);\ -else AV_COPY64(b,a);\ -} while (0) +#define XCHG(a,b,xchg) do { \ + if (xchg) AV_SWAP64(b,a); \ + else AV_COPY64(b,a); \ + } while (0) XCHG(top_border_m1+8, src_y-8, xchg); XCHG(top_border, src_y, xchg); |