diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-29 11:31:43 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-29 11:31:43 +0000 |
commit | 428bf2ac88d6f75482d9fec999b3b9fcfca19e5e (patch) | |
tree | 3b5a9b6bb2a1596dfcbf308a9b06050ee5b302f1 /libavcodec/arm/dsputil_neon.c | |
parent | 4b11e833b886045d89d4435fac5cf0b2275dc7e9 (diff) | |
download | ffmpeg-428bf2ac88d6f75482d9fec999b3b9fcfca19e5e.tar.gz |
ARM: NEON put_pixels_clamped
Originally committed as revision 18712 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 37425a31f9..9b9513001a 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_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); @@ -180,6 +181,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_pixels_clamped = ff_put_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; |