ARM: enable ARMv4 add_pixels_clamped
Somehow this function was never used. Originally committed as revision 20185 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
153f49570f
commit
cf57bea6fb
@ -47,7 +47,7 @@ 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_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)
|
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,
|
void ff_add_pixels_clamped_ARM(const DCTELEM *block, uint8_t *dest,
|
||||||
int line_size);
|
int line_size);
|
||||||
|
|
||||||
/* XXX: those functions should be suppressed ASAP when all IDCTs are
|
/* XXX: those functions should be suppressed ASAP when all IDCTs are
|
||||||
@ -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][0] = ff_put_pixels16_arm;
|
||||||
c->put_pixels_tab[0][1] = ff_put_pixels16_x2_arm;
|
c->put_pixels_tab[0][1] = ff_put_pixels16_x2_arm;
|
||||||
c->put_pixels_tab[0][2] = ff_put_pixels16_y2_arm;
|
c->put_pixels_tab[0][2] = ff_put_pixels16_y2_arm;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user