diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-05-25 19:03:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-26 15:37:04 +0200 |
commit | 86ae0da60c46658c91b11763557a9bbc1745c8b7 (patch) | |
tree | 2880e4a71edbf12f01678ecfaf9dce7e31339b69 /libavcodec/x86/fpel.h | |
parent | 96470ca22b3b46677de0e2df64e87c5ec80d752b (diff) | |
download | ffmpeg-86ae0da60c46658c91b11763557a9bbc1745c8b7.tar.gz |
x86: hpeldsp: propagate changes across codecs
Some codecs still use mmx versions, so have them use the versions
with newer instruction sets.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/fpel.h')
-rw-r--r-- | libavcodec/x86/fpel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/fpel.h b/libavcodec/x86/fpel.h index 2fbbfce26f..4d93959a96 100644 --- a/libavcodec/x86/fpel.h +++ b/libavcodec/x86/fpel.h @@ -28,6 +28,8 @@ void ff_avg_pixels8_mmxext(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); void ff_avg_pixels16_mmx(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); +void ff_avg_pixels16_mmxext(uint8_t *block, const uint8_t *pixels, + ptrdiff_t line_size, int h); void ff_avg_pixels16_sse2(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); void ff_put_pixels8_mmx(uint8_t *block, const uint8_t *pixels, |