1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-29 08:19:48 +02:00

simple_idct: whitespace cosmetics

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2011-07-21 09:49:17 +01:00
parent a402f10959
commit 2cc4f3b21f

View File

@ -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);