Commit 2456efcc authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '4f247de3'

* commit '4f247de3':
  hevcdsp_template: Templatize IDCT

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

Spacing is adjusted to reduce the diff.
Merged-by: 's avatarClément Bœsch <cboesch@gopro.com>
parents d0e132ba 4f247de3
......@@ -240,8 +240,8 @@ static void FUNC(transform_4x4_luma)(int16_t *coeffs)
#define IDCT_VAR32(H) IDCT_VAR8(H)
#define IDCT(H) \
static void FUNC(idct_##H ##x ##H )( \
int16_t *coeffs, int col_limit) { \
static void FUNC(idct_ ## H ## x ## H )(int16_t *coeffs, \
int col_limit) { \
int i; \
int shift = 7; \
int add = 1 << (shift - 1); \
......
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