@ -28,6 +28,9 @@
void ff_int32_to_float_fmul_scalar_neon ( float * dst , const int32_t * src ,
void ff_int32_to_float_fmul_scalar_neon ( float * dst , const int32_t * src ,
float mul , int len ) ;
float mul , int len ) ;
void ff_int32_to_float_fmul_scalar_vfp ( float * dst , const int32_t * src ,
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 ) ;
@ -38,6 +41,13 @@ av_cold void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx
int cpu_flags = av_get_cpu_flags ( ) ;
int cpu_flags = av_get_cpu_flags ( ) ;
if ( have_vfp ( cpu_flags ) & & have_armv6 ( cpu_flags ) ) {
if ( have_vfp ( cpu_flags ) & & have_armv6 ( cpu_flags ) ) {
if ( ! have_vfpv3 ( cpu_flags ) ) {
// This function doesn't use anything armv6 specific in itself,
// but ff_float_to_int16_vfp which is in the same assembly source
// 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 - > float_to_int16 = ff_float_to_int16_vfp ;
c - > float_to_int16 = ff_float_to_int16_vfp ;
}
}