/third_party/ffmpeg/libswresample/x86/ |
D | audio_convert_init.c | 59 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S3… in PROTO4() 65 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S3… in PROTO4() 68 …if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S3… in PROTO4() 73 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_FLT… in PROTO4() 75 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_FLT… in PROTO4() 77 …if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32… in PROTO4() 79 …if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16… in PROTO4() 83 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S3… in PROTO4() 92 …if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S3… in PROTO4() 101 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P) in PROTO4() [all …]
|
/third_party/ffmpeg/libavresample/x86/ |
D | audio_convert_init.c | 153 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 159 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 161 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() 178 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, in ff_audio_convert_init_x86() 180 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 182 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() 184 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() 188 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16P, in ff_audio_convert_init_x86() 190 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16P, in ff_audio_convert_init_x86() 202 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16P, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() [all …]
|
/third_party/ffmpeg/libswresample/ |
D | audioconvert.c | 58 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)*(1.0f/ (1<<7)… 64 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0f/ (1<<15))) 70 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0f/ (1U<<31))) 76 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S64, *(const int64_t*)pi*(1.0f/ (UINT64_C(1)<<… 78 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8( lrintf(*(const float*)pi *… 79 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16( lrintf(*(const float*)pi *… 80 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi *… 81 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(const float*)pi * (UINT64_C(1)<<… 82 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_FLT, *(const float*)pi) 83 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_FLT, *(const float*)pi) [all …]
|
/third_party/ffmpeg/libavresample/ |
D | audio_convert.c | 195 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t, (*(const uint8_t *)pi - 0x8… 200 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *)pi * (1.… 205 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.… 207 CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8( lrintf(*(co… 208 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16( lrintf(*(co… in CONV_FUNC_GROUP() argument 209 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(co… in CONV_FUNC_GROUP() 210 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_FLT, float, *(const float *)pi) in CONV_FUNC_GROUP() 211 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_FLT, float, *(const float *)pi) in CONV_FUNC_GROUP() 215 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_DBL, double, *(const double *)pi) in CONV_FUNC_GROUP() 228 SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8) [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | mpegaudiodec_float.c | 36 #define OUT_FMT AV_SAMPLE_FMT_FLT 87 AV_SAMPLE_FMT_FLT, 105 AV_SAMPLE_FMT_FLT, 123 AV_SAMPLE_FMT_FLT, 141 AV_SAMPLE_FMT_FLT,
|
D | libopusdec.c | 64 avc->sample_fmt = avc->request_sample_fmt == AV_SAMPLE_FMT_FLT ? in libopus_decode_init() 65 AV_SAMPLE_FMT_FLT : AV_SAMPLE_FMT_S16; in libopus_decode_init() 118 if (avc->sample_fmt == AV_SAMPLE_FMT_FLT) in libopus_decode_init() 182 if (avc->sample_fmt == AV_SAMPLE_FMT_FLT) { in libopus_decode() 240 .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLT,
|
D | nellymoserdec.c | 130 avctx->sample_fmt = AV_SAMPLE_FMT_FLT; in decode_init() 199 .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
|
D | libtwolame.c | 118 case AV_SAMPLE_FMT_FLT: in twolame_encode_frame() 222 AV_SAMPLE_FMT_FLT,
|
D | pcm.c | 602 PCM_DECODER(PCM_F16LE, AV_SAMPLE_FMT_FLT, pcm_f16le, "PCM 16.8 floating point little-… 603 PCM_DECODER(PCM_F24LE, AV_SAMPLE_FMT_FLT, pcm_f24le, "PCM 24.0 floating point little-… 604 PCM_CODEC (PCM_F32BE, AV_SAMPLE_FMT_FLT, pcm_f32be, "PCM 32-bit floating point big-e… 605 PCM_CODEC (PCM_F32LE, AV_SAMPLE_FMT_FLT, pcm_f32le, "PCM 32-bit floating point littl…
|
/third_party/ffmpeg/libavresample/tests/ |
D | avresample.c | 57 PUT_FUNC(flt, AV_SAMPLE_FMT_FLT, float, v_dbl) in PUT_FUNC() 73 case AV_SAMPLE_FMT_FLT: in PUT_FUNC() 167 AV_SAMPLE_FMT_FLT, enumerator
|
/third_party/ffmpeg/libavfilter/ |
D | af_bs2b.c | 102 AV_SAMPLE_FMT_FLT, in query_formats() enumerator 178 case AV_SAMPLE_FMT_FLT: in config_output()
|
D | af_acontrast.c | 50 AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in query_formats() enumerator 157 case AV_SAMPLE_FMT_FLT: s->filter = filter_flt; break; in config_input()
|
D | af_amultiply.c | 49 AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in query_formats() enumerator 112 if (av_get_packed_sample_fmt(ctx->inputs[0]->format) == AV_SAMPLE_FMT_FLT) { in activate()
|
D | af_drmeter.c | 61 AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_FLT, in query_formats() enumerator 144 case AV_SAMPLE_FMT_FLT: { in filter_frame()
|
D | generate_wave_table.c | 54 case AV_SAMPLE_FMT_FLT: { in ff_generate_wave_table()
|
D | avf_avectorscope.c | 188 …static const enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, AV_SAMPLE… in query_formats() enumerator 278 case AV_SAMPLE_FMT_FLT: { in filter_frame() 303 case AV_SAMPLE_FMT_FLT: in filter_frame()
|
D | af_volume.c | 148 AV_SAMPLE_FMT_FLT, in query_formats() 246 case AV_SAMPLE_FMT_FLT: in volume_init() 437 } else if (av_get_packed_sample_fmt(vol->sample_fmt) == AV_SAMPLE_FMT_FLT) { in filter_frame()
|
/third_party/ffmpeg/libavresample/aarch64/ |
D | audio_convert_init.c | 39 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_aarch64()
|
/third_party/ffmpeg/libavresample/arm/ |
D | audio_convert_init.c | 39 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_arm()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/ |
D | FFMpegExtractor.cpp | 215 av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_FLT, 0); in decode() 278 AV_SAMPLE_FMT_FLT, in decode()
|
/third_party/ffmpeg/libavutil/ |
D | samplefmt.h | 63 AV_SAMPLE_FMT_FLT, ///< float enumerator
|
D | samplefmt.c | 39 … [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_FLTP }, 45 … [AV_SAMPLE_FMT_FLTP] = { .name = "fltp", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_FLT },
|
/third_party/ffmpeg/libswresample/aarch64/ |
D | audio_convert_init.c | 58 …if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P &&… in swri_audio_convert_init_aarch64()
|
/third_party/ffmpeg/libswresample/arm/ |
D | audio_convert_init.c | 58 …if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P &&… in swri_audio_convert_init_arm()
|
/third_party/ffmpeg/libswresample/tests/ |
D | swresample.c | 53 case AV_SAMPLE_FMT_FLT: return ((const float *)p)[index]; in get() 72 case AV_SAMPLE_FMT_FLT: ((float *)p)[index]= v; break; in set() 94 AV_SAMPLE_FMT_FLT, enumerator
|