diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-12-22 01:10:11 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-12-22 01:10:11 +0000 |
commit | bb270c0896b39e1ae9277355e3c120ed3feb64a3 (patch) | |
tree | fc2fc2b1216d19acb3879abb6ea5a3b400f43fe4 /libavcodec/ps2/dsputil_mmi.c | |
parent | 50827fcf44f34521df4708cdb633809b56fb9df3 (diff) | |
download | ffmpeg-bb270c0896b39e1ae9277355e3c120ed3feb64a3.tar.gz |
COSMETICS: tabs --> spaces, some prettyprinting
Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ps2/dsputil_mmi.c')
-rw-r--r-- | libavcodec/ps2/dsputil_mmi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ps2/dsputil_mmi.c b/libavcodec/ps2/dsputil_mmi.c index 456e5b2c9c..852df0d2f6 100644 --- a/libavcodec/ps2/dsputil_mmi.c +++ b/libavcodec/ps2/dsputil_mmi.c @@ -80,7 +80,7 @@ static void get_pixels_mmi(DCTELEM *block, const uint8_t *pixels, int line_size) "pextlb $10, $0, $10 \n\t" "sq $10, 80(%1) \n\t" "pextlb $8, $0, $8 \n\t" - "sq $8, 96(%1) \n\t" + "sq $8, 96(%1) \n\t" "pextlb $9, $0, $9 \n\t" "sq $9, 112(%1) \n\t" ".set pop \n\t" @@ -112,7 +112,7 @@ static void put_pixels16_mmi(uint8_t *block, const uint8_t *pixels, int line_siz asm volatile ( ".set push \n\t" ".set mips3 \n\t" - "1: \n\t" + "1: \n\t" "ldr $8, 0(%1) \n\t" "add $11, %1, %3 \n\t" "ldl $8, 7(%1) \n\t" @@ -133,7 +133,7 @@ static void put_pixels16_mmi(uint8_t *block, const uint8_t *pixels, int line_siz "bgtz %2, 1b \n\t" ".set pop \n\t" : "+r" (block), "+r" (pixels), "+r" (h) : "r" (line_size) - : "$8", "$9", "$10", "$11", "$12", "$13", "memory" ); + : "$8", "$9", "$10", "$11", "$12", "$13", "memory" ); } |