diff options
author | Måns Rullgård <mans@mansr.com> | 2008-10-27 00:25:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-10-27 00:25:09 +0000 |
commit | c130bedc99346d644f71ff52b0c762c9bf8d38ec (patch) | |
tree | 7b7325347f537eed2b52d7c3ef26d6ea41cd8aff /libavcodec/armv4l/simple_idct_arm.S | |
parent | c72ab301888952c317030f631c70a16ec83d800f (diff) | |
download | ffmpeg-c130bedc99346d644f71ff52b0c762c9bf8d38ec.tar.gz |
ARM: use new macros for assembler function labels
Originally committed as revision 15725 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l/simple_idct_arm.S')
-rw-r--r-- | libavcodec/armv4l/simple_idct_arm.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/armv4l/simple_idct_arm.S b/libavcodec/armv4l/simple_idct_arm.S index 98e9009709..16ade1f3da 100644 --- a/libavcodec/armv4l/simple_idct_arm.S +++ b/libavcodec/armv4l/simple_idct_arm.S @@ -24,6 +24,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "asm.S" + /* useful constants for the algorithm, they are save in __constant_ptr__ at */ /* the end of the source code.*/ #define W1 22725 @@ -53,10 +55,8 @@ .text - .align - .global simple_idct_ARM -simple_idct_ARM: +function 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 |