Browse Source

Cosmetics: reindent

Originally committed as revision 15349 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
David Conrad 17 years ago
parent
commit
c3c5bba1e2
2 changed files with 9 additions and 9 deletions
  1. +6
    -6
      libavcodec/i386/vp3dsp_mmx.c
  2. +3
    -3
      libavcodec/i386/vp3dsp_sse2.c

+ 6
- 6
libavcodec/i386/vp3dsp_mmx.c View File

@@ -251,30 +251,30 @@ void ff_vp3_idct_mmx(int16_t *output_data)
#define J(x) AV_STRINGIFY(16*(x-4) + 8)"(%0)"

asm volatile (
RowIDCT()
Transpose()
RowIDCT()
Transpose()

#undef I
#undef J
#define I(x) AV_STRINGIFY(16* x + 64)"(%0)"
#define J(x) AV_STRINGIFY(16*(x-4) + 72)"(%0)"

RowIDCT()
Transpose()
RowIDCT()
Transpose()

#undef I
#undef J
#define I(x) AV_STRINGIFY(16*x)"(%0)"
#define J(x) AV_STRINGIFY(16*x)"(%0)"

ColumnIDCT()
ColumnIDCT()

#undef I
#undef J
#define I(x) AV_STRINGIFY(16*x + 8)"(%0)"
#define J(x) AV_STRINGIFY(16*x + 8)"(%0)"

ColumnIDCT()
ColumnIDCT()
:: "r"(output_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8)
);
#undef I


+ 3
- 3
libavcodec/i386/vp3dsp_sse2.c View File

@@ -457,11 +457,11 @@ void ff_vp3_idct_sse2(int16_t *input_data)
#define C(x) AV_STRINGIFY(16*(x-1))"(%1)"

asm volatile (
SSE2_Row_IDCT()
SSE2_Row_IDCT()

SSE2_Transpose()
SSE2_Transpose()

SSE2_Column_IDCT()
SSE2_Column_IDCT()
:: "r"(input_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8)
);
}


Loading…
Cancel
Save