diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-03-07 22:33:32 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-03-07 22:33:32 +0000 |
commit | 6da971f160d31403e4d5e5deca26e2374f52e298 (patch) | |
tree | d9486a52a611d1632094a3cbd9b568de54909e3d /libavcodec/i386/h264dsp_mmx.c | |
parent | 6e2695947d69dde82b16d289d1f0dbd812b316e4 (diff) | |
download | ffmpeg-6da971f160d31403e4d5e5deca26e2374f52e298.tar.gz |
h264_idct_add only needs mmx1
Originally committed as revision 5122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/h264dsp_mmx.c')
-rw-r--r-- | libavcodec/i386/h264dsp_mmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/h264dsp_mmx.c b/libavcodec/i386/h264dsp_mmx.c index 5d05152b04..65fa95d3e5 100644 --- a/libavcodec/i386/h264dsp_mmx.c +++ b/libavcodec/i386/h264dsp_mmx.c @@ -65,7 +65,7 @@ "packuswb "#z", "#p" \n\t"\ "movd "#p", (%0) \n\t" -void ff_h264_idct_add_mmx2(uint8_t *dst, int16_t *block, int stride) +static void ff_h264_idct_add_mmx(uint8_t *dst, int16_t *block, int stride) { /* Load dct coeffs */ asm volatile( @@ -104,7 +104,7 @@ void ff_h264_idct_add_mmx2(uint8_t *dst, int16_t *block, int stride) ); } -void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) +static void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) { int dc = (block[0] + 32) >> 6; asm volatile( @@ -140,7 +140,7 @@ void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) ); } -void ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) +static void ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) { int dc = (block[0] + 32) >> 6; int y; |