Merge commit '4f247de3b797cdc9d243d26534412f81c306e5b5'

* commit '4f247de3b797cdc9d243d26534412f81c306e5b5':
  hevcdsp_template: Templatize IDCT

This commit is a noop as we already have that code from a previous
commits (see 92cccb7bcd79845020ed8abebf35170c182443b2).

Spacing is adjusted to reduce the diff.

Merged-by: Clément Bœsch <cboesch@gopro.com>
This commit is contained in:
Clément Bœsch 2017-01-31 15:47:58 +01:00
commit 2456efcc0f

View File

@ -240,8 +240,8 @@ static void FUNC(transform_4x4_luma)(int16_t *coeffs)
#define IDCT_VAR32(H) IDCT_VAR8(H) #define IDCT_VAR32(H) IDCT_VAR8(H)
#define IDCT(H) \ #define IDCT(H) \
static void FUNC(idct_##H ##x ##H )( \ static void FUNC(idct_ ## H ## x ## H )(int16_t *coeffs, \
int16_t *coeffs, int col_limit) { \ int col_limit) { \
int i; \ int i; \
int shift = 7; \ int shift = 7; \
int add = 1 << (shift - 1); \ int add = 1 << (shift - 1); \