diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-12-19 03:01:08 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-12-19 03:01:08 +0000 |
commit | 40c7d0ae3c093413bb3970b69f68958ac7e21380 (patch) | |
tree | ce697d6d91302160c3702a1fb2958e33b28ff5b2 /libavcodec/i386/dsputil_yasm.asm | |
parent | a5b807a6c181090b65b06ddc714f74cc1605c5bd (diff) | |
download | ffmpeg-40c7d0ae3c093413bb3970b69f68958ac7e21380.tar.gz |
Add automatic prefix handling to yasm functions. Does nothing now, but will
be useful for porting x264 asm in the future.
Originally committed as revision 16234 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_yasm.asm')
-rw-r--r-- | libavcodec/i386/dsputil_yasm.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_yasm.asm b/libavcodec/i386/dsputil_yasm.asm index 09beb5cf42..91165f2fb7 100644 --- a/libavcodec/i386/dsputil_yasm.asm +++ b/libavcodec/i386/dsputil_yasm.asm @@ -34,7 +34,7 @@ section .text align=16 %macro FLOAT_TO_INT16_INTERLEAVE6 1 ; void ff_float_to_int16_interleave6_sse(int16_t *dst, const float **src, int len) -cglobal ff_float_to_int16_interleave6_%1, 2,7,0, dst, src, src1, src2, src3, src4, src5 +cglobal float_to_int16_interleave6_%1, 2,7,0, dst, src, src1, src2, src3, src4, src5 %ifdef ARCH_X86_64 %define lend r10d mov lend, r2d |