diff options
author | Måns Rullgård <mans@mansr.com> | 2009-10-06 21:55:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-10-06 21:55:37 +0000 |
commit | cf57bea6fb32a320191f9f0721b352fc33c87826 (patch) | |
tree | 8273e16824a0a8698b651d8ba03fff290f932452 /libavcodec/arm/dsputil_init_arm.c | |
parent | 153f49570f41ebfffe8bb1fa9acb882bfe4eaf79 (diff) | |
download | ffmpeg-cf57bea6fb32a320191f9f0721b352fc33c87826.tar.gz |
ARM: enable ARMv4 add_pixels_clamped
Somehow this function was never used.
Originally committed as revision 20185 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/dsputil_init_arm.c')
-rw-r--r-- | libavcodec/arm/dsputil_init_arm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/arm/dsputil_init_arm.c b/libavcodec/arm/dsputil_init_arm.c index c1aa9797d7..eecccc97b5 100644 --- a/libavcodec/arm/dsputil_init_arm.c +++ b/libavcodec/arm/dsputil_init_arm.c @@ -47,8 +47,8 @@ CALL_2X_PIXELS(ff_put_no_rnd_pixels16_x2_arm, ff_put_no_rnd_pixels8_x2_arm, 8) CALL_2X_PIXELS(ff_put_no_rnd_pixels16_y2_arm, ff_put_no_rnd_pixels8_y2_arm, 8) CALL_2X_PIXELS(ff_put_no_rnd_pixels16_xy2_arm, ff_put_no_rnd_pixels8_xy2_arm,8) -void ff_add_pixels_clamped_ARM(short *block, unsigned char *dest, - int line_size); +void ff_add_pixels_clamped_ARM(const DCTELEM *block, uint8_t *dest, + int line_size); /* XXX: those functions should be suppressed ASAP when all IDCTs are converted */ @@ -98,6 +98,8 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx) } } + c->add_pixels_clamped = ff_add_pixels_clamped_ARM; + c->put_pixels_tab[0][0] = ff_put_pixels16_arm; c->put_pixels_tab[0][1] = ff_put_pixels16_x2_arm; c->put_pixels_tab[0][2] = ff_put_pixels16_y2_arm; |