summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2008-09-17 19:38:44 +0000
committerDavid Conrad <lessen42@gmail.com>2008-09-17 19:38:44 +0000
commitc3c5bba1e29bb2657dada4db5ee66d186d1cbc50 (patch)
tree6fd2a3d8bc16208a9c2e26e5939b69b64b66f35f /libavcodec
parent4ee735fc540bfb9e48262267610799d1fc73ccb7 (diff)
Cosmetics: reindent
Originally committed as revision 15349 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/i386/vp3dsp_mmx.c12
-rw-r--r--libavcodec/i386/vp3dsp_sse2.c6
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)
);
}