From c3c5bba1e29bb2657dada4db5ee66d186d1cbc50 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Wed, 17 Sep 2008 19:38:44 +0000 Subject: Cosmetics: reindent Originally committed as revision 15349 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/i386/vp3dsp_mmx.c | 12 ++++++------ libavcodec/i386/vp3dsp_sse2.c | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/libavcodec/i386/vp3dsp_mmx.c b/libavcodec/i386/vp3dsp_mmx.c index c1da1da99c..6304e91594 100644 --- a/libavcodec/i386/vp3dsp_mmx.c +++ b/libavcodec/i386/vp3dsp_mmx.c @@ -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 diff --git a/libavcodec/i386/vp3dsp_sse2.c b/libavcodec/i386/vp3dsp_sse2.c index 3d45fdfa67..f378ce0238 100644 --- a/libavcodec/i386/vp3dsp_sse2.c +++ b/libavcodec/i386/vp3dsp_sse2.c @@ -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) ); } -- cgit v1.2.3