mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
arm: dsputil: K&R formatting cosmetics
This commit is contained in:
parent
1675975216
commit
cf7a216757
@ -39,22 +39,25 @@ void ff_add_pixels_clamped_arm(const int16_t *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
|
||||||
converted */
|
* converted */
|
||||||
static void j_rev_dct_arm_put(uint8_t *dest, int line_size, int16_t *block)
|
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);
|
ff_put_pixels_clamped(block, dest, line_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void j_rev_dct_arm_add(uint8_t *dest, int line_size, int16_t *block)
|
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);
|
ff_add_pixels_clamped(block, dest, line_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void simple_idct_arm_put(uint8_t *dest, int line_size, int16_t *block)
|
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);
|
ff_put_pixels_clamped(block, dest, line_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void simple_idct_arm_add(uint8_t *dest, int line_size, int16_t *block)
|
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);
|
||||||
@ -85,7 +88,10 @@ av_cold void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx)
|
|||||||
|
|
||||||
c->add_pixels_clamped = ff_add_pixels_clamped_arm;
|
c->add_pixels_clamped = ff_add_pixels_clamped_arm;
|
||||||
|
|
||||||
if (have_armv5te(cpu_flags)) ff_dsputil_init_armv5te(c, avctx);
|
if (have_armv5te(cpu_flags))
|
||||||
if (have_armv6(cpu_flags)) ff_dsputil_init_armv6(c, avctx);
|
ff_dsputil_init_armv5te(c, avctx);
|
||||||
if (have_neon(cpu_flags)) ff_dsputil_init_neon(c, avctx);
|
if (have_armv6(cpu_flags))
|
||||||
|
ff_dsputil_init_armv6(c, avctx);
|
||||||
|
if (have_neon(cpu_flags))
|
||||||
|
ff_dsputil_init_neon(c, avctx);
|
||||||
}
|
}
|
||||||
|
@ -64,10 +64,10 @@ av_cold void ff_dsputil_init_armv6(DSPContext *c, AVCodecContext *avctx)
|
|||||||
c->idct = ff_simple_idct_armv6;
|
c->idct = ff_simple_idct_armv6;
|
||||||
c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM;
|
c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM;
|
||||||
}
|
}
|
||||||
|
c->add_pixels_clamped = ff_add_pixels_clamped_armv6;
|
||||||
|
|
||||||
if (!high_bit_depth)
|
if (!high_bit_depth)
|
||||||
c->get_pixels = ff_get_pixels_armv6;
|
c->get_pixels = ff_get_pixels_armv6;
|
||||||
c->add_pixels_clamped = ff_add_pixels_clamped_armv6;
|
|
||||||
c->diff_pixels = ff_diff_pixels_armv6;
|
c->diff_pixels = ff_diff_pixels_armv6;
|
||||||
|
|
||||||
c->pix_abs[0][0] = ff_pix_abs16_armv6;
|
c->pix_abs[0][0] = ff_pix_abs16_armv6;
|
||||||
|
@ -43,6 +43,7 @@ void ff_vector_clip_int32_neon(int32_t *dst, const int32_t *src, int32_t min,
|
|||||||
int32_t max, unsigned int len);
|
int32_t max, unsigned int len);
|
||||||
|
|
||||||
int32_t ff_scalarproduct_int16_neon(const int16_t *v1, const int16_t *v2, int len);
|
int32_t ff_scalarproduct_int16_neon(const int16_t *v1, const int16_t *v2, int len);
|
||||||
|
|
||||||
int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
|
int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
|
||||||
const int16_t *v3, int len, int mul);
|
const int16_t *v3, int len, int mul);
|
||||||
|
|
||||||
@ -60,18 +61,19 @@ av_cold void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
if (!high_bit_depth) {
|
if (!high_bit_depth) {
|
||||||
c->clear_block = ff_clear_block_neon;
|
c->clear_block = ff_clear_block_neon;
|
||||||
c->clear_blocks = ff_clear_blocks_neon;
|
c->clear_blocks = ff_clear_blocks_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->vector_clipf = ff_vector_clipf_neon;
|
c->vector_clipf = ff_vector_clipf_neon;
|
||||||
c->vector_clip_int32 = ff_vector_clip_int32_neon;
|
c->vector_clip_int32 = ff_vector_clip_int32_neon;
|
||||||
|
|
||||||
c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
|
c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
|
||||||
|
|
||||||
c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
|
c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user