diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-04 21:02:48 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-04 21:02:48 +0000 |
commit | cc2e555420c947e7238e8b808b7e15b1823185b5 (patch) | |
tree | ba5b148ec230a4bfb71eb804c557227cf8b9ac5a /libavcodec/arm/dsputil_neon.c | |
parent | 08e12b2240512ee953175341269c2f54822e7890 (diff) | |
download | ffmpeg-cc2e555420c947e7238e8b808b7e15b1823185b5.tar.gz |
ARM: NEON optimized put_signed_pixels_clamped
Originally committed as revision 18333 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/dsputil_neon.c')
-rw-r--r-- | libavcodec/arm/dsputil_neon.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/arm/dsputil_neon.c b/libavcodec/arm/dsputil_neon.c index 2e563084eb..37425a31f9 100644 --- a/libavcodec/arm/dsputil_neon.c +++ b/libavcodec/arm/dsputil_neon.c @@ -42,6 +42,7 @@ void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int); void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, int, int); void ff_add_pixels_clamped_neon(const DCTELEM *, uint8_t *, int); +void ff_put_signed_pixels_clamped_neon(const DCTELEM *, uint8_t *, int); void ff_put_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int); void ff_put_h264_qpel16_mc10_neon(uint8_t *, uint8_t *, int); @@ -179,6 +180,7 @@ void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx) c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon; c->add_pixels_clamped = ff_add_pixels_clamped_neon; + c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_neon; c->put_h264_chroma_pixels_tab[0] = ff_put_h264_chroma_mc8_neon; c->put_h264_chroma_pixels_tab[1] = ff_put_h264_chroma_mc4_neon; |