|
|
|
@ -39,25 +39,28 @@ void ff_add_pixels_clamped_arm(const int16_t *block, uint8_t *dest, |
|
|
|
|
int line_size); |
|
|
|
|
|
|
|
|
|
/* XXX: those functions should be suppressed ASAP when all IDCTs are
|
|
|
|
|
converted */ |
|
|
|
|
* converted */ |
|
|
|
|
static void j_rev_dct_arm_put(uint8_t *dest, int line_size, int16_t *block) |
|
|
|
|
{ |
|
|
|
|
ff_j_rev_dct_arm (block); |
|
|
|
|
ff_j_rev_dct_arm(block); |
|
|
|
|
ff_put_pixels_clamped(block, dest, line_size); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void j_rev_dct_arm_add(uint8_t *dest, int line_size, int16_t *block) |
|
|
|
|
{ |
|
|
|
|
ff_j_rev_dct_arm (block); |
|
|
|
|
ff_j_rev_dct_arm(block); |
|
|
|
|
ff_add_pixels_clamped(block, dest, line_size); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void simple_idct_arm_put(uint8_t *dest, int line_size, int16_t *block) |
|
|
|
|
{ |
|
|
|
|
ff_simple_idct_arm (block); |
|
|
|
|
ff_simple_idct_arm(block); |
|
|
|
|
ff_put_pixels_clamped(block, dest, line_size); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void simple_idct_arm_add(uint8_t *dest, int line_size, int16_t *block) |
|
|
|
|
{ |
|
|
|
|
ff_simple_idct_arm (block); |
|
|
|
|
ff_simple_idct_arm(block); |
|
|
|
|
ff_add_pixels_clamped(block, dest, line_size); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -69,13 +72,13 @@ av_cold void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx) |
|
|
|
|
ff_add_pixels_clamped = c->add_pixels_clamped; |
|
|
|
|
|
|
|
|
|
if (avctx->bits_per_raw_sample <= 8) { |
|
|
|
|
if(avctx->idct_algo == FF_IDCT_AUTO || |
|
|
|
|
avctx->idct_algo == FF_IDCT_ARM){ |
|
|
|
|
if (avctx->idct_algo == FF_IDCT_AUTO || |
|
|
|
|
avctx->idct_algo == FF_IDCT_ARM) { |
|
|
|
|
c->idct_put = j_rev_dct_arm_put; |
|
|
|
|
c->idct_add = j_rev_dct_arm_add; |
|
|
|
|
c->idct = ff_j_rev_dct_arm; |
|
|
|
|
c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM; |
|
|
|
|
} else if (avctx->idct_algo == FF_IDCT_SIMPLEARM){ |
|
|
|
|
} else if (avctx->idct_algo == FF_IDCT_SIMPLEARM) { |
|
|
|
|
c->idct_put = simple_idct_arm_put; |
|
|
|
|
c->idct_add = simple_idct_arm_add; |
|
|
|
|
c->idct = ff_simple_idct_arm; |
|
|
|
@ -85,7 +88,10 @@ av_cold void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx) |
|
|
|
|
|
|
|
|
|
c->add_pixels_clamped = ff_add_pixels_clamped_arm; |
|
|
|
|
|
|
|
|
|
if (have_armv5te(cpu_flags)) ff_dsputil_init_armv5te(c, avctx); |
|
|
|
|
if (have_armv6(cpu_flags)) ff_dsputil_init_armv6(c, avctx); |
|
|
|
|
if (have_neon(cpu_flags)) ff_dsputil_init_neon(c, avctx); |
|
|
|
|
if (have_armv5te(cpu_flags)) |
|
|
|
|
ff_dsputil_init_armv5te(c, avctx); |
|
|
|
|
if (have_armv6(cpu_flags)) |
|
|
|
|
ff_dsputil_init_armv6(c, avctx); |
|
|
|
|
if (have_neon(cpu_flags)) |
|
|
|
|
ff_dsputil_init_neon(c, avctx); |
|
|
|
|
} |
|
|
|
|