Commit 07aa70de authored by conrad's avatar conrad

Cosmetics: reindent

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15349 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 33ab8f2d
...@@ -251,30 +251,30 @@ void ff_vp3_idct_mmx(int16_t *output_data) ...@@ -251,30 +251,30 @@ void ff_vp3_idct_mmx(int16_t *output_data)
#define J(x) AV_STRINGIFY(16*(x-4) + 8)"(%0)" #define J(x) AV_STRINGIFY(16*(x-4) + 8)"(%0)"
asm volatile ( asm volatile (
RowIDCT() RowIDCT()
Transpose() Transpose()
#undef I #undef I
#undef J #undef J
#define I(x) AV_STRINGIFY(16* x + 64)"(%0)" #define I(x) AV_STRINGIFY(16* x + 64)"(%0)"
#define J(x) AV_STRINGIFY(16*(x-4) + 72)"(%0)" #define J(x) AV_STRINGIFY(16*(x-4) + 72)"(%0)"
RowIDCT() RowIDCT()
Transpose() Transpose()
#undef I #undef I
#undef J #undef J
#define I(x) AV_STRINGIFY(16*x)"(%0)" #define I(x) AV_STRINGIFY(16*x)"(%0)"
#define J(x) AV_STRINGIFY(16*x)"(%0)" #define J(x) AV_STRINGIFY(16*x)"(%0)"
ColumnIDCT() ColumnIDCT()
#undef I #undef I
#undef J #undef J
#define I(x) AV_STRINGIFY(16*x + 8)"(%0)" #define I(x) AV_STRINGIFY(16*x + 8)"(%0)"
#define J(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) :: "r"(output_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8)
); );
#undef I #undef I
......
...@@ -457,11 +457,11 @@ void ff_vp3_idct_sse2(int16_t *input_data) ...@@ -457,11 +457,11 @@ void ff_vp3_idct_sse2(int16_t *input_data)
#define C(x) AV_STRINGIFY(16*(x-1))"(%1)" #define C(x) AV_STRINGIFY(16*(x-1))"(%1)"
asm volatile ( 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) :: "r"(input_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8)
); );
} }
......
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