Commit 096971e8 authored by Måns Rullgård's avatar Måns Rullgård

vp8: indent

Originally committed as revision 24368 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 070ce7ef
...@@ -882,10 +882,10 @@ void xchg_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_ ...@@ -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_cb -= uvlinesize;
src_cr -= uvlinesize; src_cr -= uvlinesize;
#define XCHG(a,b,xchg) do {\ #define XCHG(a,b,xchg) do { \
if (xchg) AV_SWAP64(b,a);\ if (xchg) AV_SWAP64(b,a); \
else AV_COPY64(b,a);\ else AV_COPY64(b,a); \
} while (0) } while (0)
XCHG(top_border_m1+8, src_y-8, xchg); XCHG(top_border_m1+8, src_y-8, xchg);
XCHG(top_border, src_y, xchg); XCHG(top_border, src_y, xchg);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment