diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-09 16:17:56 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-09 16:17:56 +0000 |
commit | a7e7d40c2ead00b4435b06c0c01432e51459bf9f (patch) | |
tree | 7521febd58cce91d589773519cbdaa9a2490e926 /libavcodec/arm/simple_idct_armv6.S | |
parent | db76ca7f3543ab9caadce1bda6d70d5c1d9be011 (diff) | |
download | ffmpeg-a7e7d40c2ead00b4435b06c0c01432e51459bf9f.tar.gz |
ARM: set size of asm functions in object files
Originally committed as revision 22404 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/simple_idct_armv6.S')
-rw-r--r-- | libavcodec/arm/simple_idct_armv6.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/arm/simple_idct_armv6.S b/libavcodec/arm/simple_idct_armv6.S index 9d6455f8ec..d61c1fd3ea 100644 --- a/libavcodec/arm/simple_idct_armv6.S +++ b/libavcodec/arm/simple_idct_armv6.S @@ -237,7 +237,7 @@ function idct_row_armv6 strh r2, [r1, #(16*5)] strh r2, [r1, #(16*7)] pop {pc} - .endfunc +endfunc /* Compute IDCT of single column, read as row. @@ -264,7 +264,7 @@ function idct_col_armv6 strh r8, [r1, #(16*7)] pop {pc} - .endfunc +endfunc /* Compute IDCT of single column, read as row, store saturated 8-bit. @@ -294,7 +294,7 @@ function idct_col_put_armv6 sub r1, r1, r2, lsl #3 pop {pc} - .endfunc +endfunc /* Compute IDCT of single column, read as row, add/store saturated 8-bit. @@ -349,7 +349,7 @@ function idct_col_add_armv6 sub r1, r1, r2, lsl #3 pop {pc} - .endfunc +endfunc /* Compute 8 IDCT row transforms. @@ -396,7 +396,7 @@ function ff_simple_idct_armv6, export=1 add sp, sp, #128 pop {r4-r11, pc} - .endfunc +endfunc /* ff_simple_idct_add_armv6(uint8_t *dest, int line_size, DCTELEM *data); */ function ff_simple_idct_add_armv6, export=1 @@ -413,7 +413,7 @@ function ff_simple_idct_add_armv6, export=1 add sp, sp, #(128+8) pop {r4-r11, pc} - .endfunc +endfunc /* ff_simple_idct_put_armv6(uint8_t *dest, int line_size, DCTELEM *data); */ function ff_simple_idct_put_armv6, export=1 @@ -430,4 +430,4 @@ function ff_simple_idct_put_armv6, export=1 add sp, sp, #(128+8) pop {r4-r11, pc} - .endfunc +endfunc |