@ -30,6 +30,9 @@ void ff_int32_to_float_fmul_scalar_neon(float *dst, const int32_t *src,
void ff_int32_to_float_fmul_scalar_vfp ( float * dst , const int32_t * src ,
void ff_int32_to_float_fmul_scalar_vfp ( float * dst , const int32_t * src ,
float mul , int len ) ;
float mul , int len ) ;
void ff_int32_to_float_fmul_array8_vfp ( FmtConvertContext * c , float * dst ,
const int32_t * src , const float * mul ,
int len ) ;
void ff_float_to_int16_neon ( int16_t * dst , const float * src , long len ) ;
void ff_float_to_int16_neon ( int16_t * dst , const float * src , long len ) ;
void ff_float_to_int16_interleave_neon ( int16_t * , const float * * , long , int ) ;
void ff_float_to_int16_interleave_neon ( int16_t * , const float * * , long , int ) ;
@ -42,10 +45,11 @@ av_cold void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx
if ( have_vfp ( cpu_flags ) & & have_armv6 ( cpu_flags ) ) {
if ( have_vfp ( cpu_flags ) & & have_armv6 ( cpu_flags ) ) {
if ( ! have_vfpv3 ( cpu_flags ) ) {
if ( ! have_vfpv3 ( cpu_flags ) ) {
// This function doesn't use anything armv6 specific in itself ,
// These functions don't use anything armv6 specific in themselves ,
// but ff_float_to_int16_vfp which is in the same assembly source
// but ff_float_to_int16_vfp which is in the same assembly source
// file does, thus the whole file requires armv6 to be built.
// file does, thus the whole file requires armv6 to be built.
c - > int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_vfp ;
c - > int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_vfp ;
c - > int32_to_float_fmul_array8 = ff_int32_to_float_fmul_array8_vfp ;
}
}
c - > float_to_int16 = ff_float_to_int16_vfp ;
c - > float_to_int16 = ff_float_to_int16_vfp ;