[FFmpeg-cvslog] r15349 - in trunk/libavcodec/i386: vp3dsp_mmx.c vp3dsp_sse2.c

conrad subversion
Wed Sep 17 21:38:44 CEST 2008


Author: conrad
Date: Wed Sep 17 21:38:44 2008
New Revision: 15349

Log:
Cosmetics: reindent

Modified:
   trunk/libavcodec/i386/vp3dsp_mmx.c
   trunk/libavcodec/i386/vp3dsp_sse2.c

Modified: trunk/libavcodec/i386/vp3dsp_mmx.c
==============================================================================
--- trunk/libavcodec/i386/vp3dsp_mmx.c	(original)
+++ trunk/libavcodec/i386/vp3dsp_mmx.c	Wed Sep 17 21:38:44 2008
@@ -251,30 +251,30 @@ void ff_vp3_idct_mmx(int16_t *output_dat
 #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

Modified: trunk/libavcodec/i386/vp3dsp_sse2.c
==============================================================================
--- trunk/libavcodec/i386/vp3dsp_sse2.c	(original)
+++ trunk/libavcodec/i386/vp3dsp_sse2.c	Wed Sep 17 21:38:44 2008
@@ -457,11 +457,11 @@ void ff_vp3_idct_sse2(int16_t *input_dat
 #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)
     );
 }




More information about the ffmpeg-cvslog mailing list