# HG changeset patch # User conrad # Date 1221680324 0 # Node ID e05e021fce721468de3c88f58145244178f0cbca # Parent 4ab419106cb149e18a600b6eb62a2dc6677f4fe6 Cosmetics: reindent diff -r 4ab419106cb1 -r e05e021fce72 i386/vp3dsp_mmx.c --- a/i386/vp3dsp_mmx.c Wed Sep 17 19:30:51 2008 +0000 +++ b/i386/vp3dsp_mmx.c Wed Sep 17 19:38:44 2008 +0000 @@ -251,30 +251,30 @@ #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 diff -r 4ab419106cb1 -r e05e021fce72 i386/vp3dsp_sse2.c --- a/i386/vp3dsp_sse2.c Wed Sep 17 19:30:51 2008 +0000 +++ b/i386/vp3dsp_sse2.c Wed Sep 17 19:38:44 2008 +0000 @@ -457,11 +457,11 @@ #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) ); }