avfilter/xbr: misc style fixes

pull/96/head
Clément Bœsch 10 years ago
parent fda209b741
commit a99004a926
  1. 4
      libavfilter/vf_xbr.c

@ -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))))
#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) \
uint32_t *E = (uint32_t *)(output->data[0] + y * output->linesize[0] * (level)); \

Loading…
Cancel
Save