avfilter/xbr: misc style fixes

This commit is contained in:
Clément Bœsch 2014-11-15 20:55:30 +01:00
parent fda209b741
commit a99004a926
1 changed files with 24 additions and 26 deletions

View File

@ -92,9 +92,7 @@ static uint32_t pixel_diff(uint32_t x, uint32_t y, const uint32_t *r2y)
((((src & GREEN_MASK) - (dst & GREEN_MASK)) * 7) >> 3)))) ((((src & GREEN_MASK) - (dst & GREEN_MASK)) * 7) >> 3))))
#define df(A, B) pixel_diff(A, B, r2y) #define df(A, B) pixel_diff(A, B, r2y)
#define eq(A, B) (df(A, B) < 155)
#define eq(A, B)\
(df(A, B) < 155)\
#define INIT_SRC_DST_POINTERS(level) \ #define INIT_SRC_DST_POINTERS(level) \
uint32_t *E = (uint32_t *)(output->data[0] + y * output->linesize[0] * (level)); \ uint32_t *E = (uint32_t *)(output->data[0] + y * output->linesize[0] * (level)); \