diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-27 22:52:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-02 11:45:37 +0200 |
commit | 932806232108872655556100011fe369125805d3 (patch) | |
tree | c4db29d8a8eb4ab870f0ef362cf48bdaccf7e5ce /libavcodec/x86/dsputil_mmx.h | |
parent | 9c112a6158928e8d69443adeb9a37e258bf59e55 (diff) | |
download | ffmpeg-932806232108872655556100011fe369125805d3.tar.gz |
x86: dsputil: Move avg_pixels16_mmx() out of rnd_template.c
The function does not do any rounding, so there is no point in
keeping it in a round template file.
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.h')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/dsputil_mmx.h b/libavcodec/x86/dsputil_mmx.h index eb23377cb3..7e98190d73 100644 --- a/libavcodec/x86/dsputil_mmx.h +++ b/libavcodec/x86/dsputil_mmx.h @@ -158,6 +158,8 @@ void ff_put_signed_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, int void ff_avg_pixels8_mmx(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_put_pixels8_mmx(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); void ff_put_pixels16_mmx(uint8_t *block, const uint8_t *pixels, |