diff options
author | Måns Rullgård <mans@mansr.com> | 2009-10-06 21:55:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-10-06 21:55:41 +0000 |
commit | 2ad4c241c852efc0baa79b21db6bbc87c27873ef (patch) | |
tree | e6fc828433458f0da8389e1d8f5f78d38992a1dd /libavcodec/arm/simple_idct_arm.S | |
parent | cf57bea6fb32a320191f9f0721b352fc33c87826 (diff) | |
download | ffmpeg-2ad4c241c852efc0baa79b21db6bbc87c27873ef.tar.gz |
ARM: make function names all-lowercase
Originally committed as revision 20186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/simple_idct_arm.S')
-rw-r--r-- | libavcodec/arm/simple_idct_arm.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/arm/simple_idct_arm.S b/libavcodec/arm/simple_idct_arm.S index a0927bf641..ecb83d23ad 100644 --- a/libavcodec/arm/simple_idct_arm.S +++ b/libavcodec/arm/simple_idct_arm.S @@ -56,8 +56,8 @@ .text -function ff_simple_idct_ARM, export=1 - @@ void simple_idct_ARM(int16_t *block) +function ff_simple_idct_arm, export=1 + @@ void simple_idct_arm(int16_t *block) @@ save stack for reg needed (take all of them), @@ R0-R3 are scratch regs, so no need to save them, but R0 contains the pointer to block @@ so it must not be overwritten, if it is not saved!! @@ -458,7 +458,7 @@ __end_col_loop: -__end_simple_idct_ARM: +__end_simple_idct_arm: @@ restore registers to previous status! add sp, sp, #8 @@ the local variables! ldmfd sp!, {r4-r11, r15} @@ update PC with LR content. |