simple_idct: whitespace cosmetics

Signed-off-by: Mans Rullgard <mans@mansr.com>
pull/2/head
Mans Rullgard 14 years ago
parent a402f10959
commit 2cc4f3b21f
  1. 2
      libavcodec/simple_idct_template.c

@ -117,7 +117,6 @@ static inline void FUNC(idctRowCondDC)(DCTELEM *row)
a2 = a0;
a3 = a0;
/* no need to optimize : gcc does it */
a0 += W2 * row[2];
a1 += W6 * row[2];
a2 -= W6 * row[2];
@ -308,6 +307,7 @@ void FUNC(ff_simple_idct_add)(uint8_t *dest_, int line_size, DCTELEM *block)
void FUNC(ff_simple_idct)(DCTELEM *block)
{
int i;
for (i = 0; i < 8; i++)
FUNC(idctRowCondDC)(block + i*8);

Loading…
Cancel
Save