diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-21 00:05:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-21 00:05:30 +0000 |
commit | 30cd3e66bdcf2a95cadacbede1b715f49a5f5932 (patch) | |
tree | 4cb0f86a7a8e0c92207ed182095c9830289848c9 | |
parent | 72dee89b5d37b6b4c4dedce63ffdd28060186b75 (diff) | |
download | ffmpeg-30cd3e66bdcf2a95cadacbede1b715f49a5f5932.tar.gz |
remove code which become unused by the previous changes
Originally committed as revision 10166 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/snowdsp_mmx.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/i386/snowdsp_mmx.c b/libavcodec/i386/snowdsp_mmx.c index b6509aab6b..f2eb14b2b3 100644 --- a/libavcodec/i386/snowdsp_mmx.c +++ b/libavcodec/i386/snowdsp_mmx.c @@ -430,12 +430,6 @@ void ff_snow_horizontal_compose97i_mmx(DWTELEM *b, int width){ "paddd %%"s2", %%"t2" \n\t"\ "paddd %%"s3", %%"t3" \n\t" -#define snow_vertical_compose_sse2_sll(n,t0,t1,t2,t3)\ - "pslld $"n", %%"t0" \n\t"\ - "pslld $"n", %%"t1" \n\t"\ - "pslld $"n", %%"t2" \n\t"\ - "pslld $"n", %%"t3" \n\t" - #define snow_vertical_compose_sse2_move(s0,s1,s2,s3,t0,t1,t2,t3)\ "movdqa %%"s0", %%"t0" \n\t"\ "movdqa %%"s1", %%"t1" \n\t"\ @@ -539,9 +533,6 @@ void ff_snow_vertical_compose97i_sse2(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWT #define snow_vertical_compose_mmx_r2r_add(s0,s1,s2,s3,t0,t1,t2,t3)\ snow_vertical_compose_sse2_r2r_add(s0,s1,s2,s3,t0,t1,t2,t3) -#define snow_vertical_compose_mmx_sll(n,t0,t1,t2,t3)\ - snow_vertical_compose_sse2_sll(n,t0,t1,t2,t3) - #define snow_vertical_compose_mmx_move(s0,s1,s2,s3,t0,t1,t2,t3)\ "movq %%"s0", %%"t0" \n\t"\ "movq %%"s1", %%"t1" \n\t"\ |