diff options
author | David Conrad <lessen42@gmail.com> | 2008-09-17 19:38:44 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-09-17 19:38:44 +0000 |
commit | c3c5bba1e29bb2657dada4db5ee66d186d1cbc50 (patch) | |
tree | 6fd2a3d8bc16208a9c2e26e5939b69b64b66f35f /libavcodec/i386/vp3dsp_mmx.c | |
parent | 4ee735fc540bfb9e48262267610799d1fc73ccb7 (diff) | |
download | ffmpeg-c3c5bba1e29bb2657dada4db5ee66d186d1cbc50.tar.gz |
Cosmetics: reindent
Originally committed as revision 15349 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/vp3dsp_mmx.c')
-rw-r--r-- | libavcodec/i386/vp3dsp_mmx.c | 12 |
1 files changed, 6 insertions, 6 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 |