Home
last modified time | relevance | path

Searched refs:AV_SAMPLE_FMT_FLT (Results 1 – 25 of 76) sorted by relevance

1234

/third_party/ffmpeg/libswresample/x86/
Daudio_convert_init.c59 …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/
Daudio_convert_init.c153 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/
Daudioconvert.c58 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/
Daudio_convert.c195 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/
Dmpegaudiodec_float.c36 #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,
Dlibopusdec.c64 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,
Dnellymoserdec.c130 avctx->sample_fmt = AV_SAMPLE_FMT_FLT; in decode_init()
199 .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
Dlibtwolame.c118 case AV_SAMPLE_FMT_FLT: in twolame_encode_frame()
222 AV_SAMPLE_FMT_FLT,
Dpcm.c602 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/
Davresample.c57 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/
Daf_bs2b.c102 AV_SAMPLE_FMT_FLT, in query_formats() enumerator
178 case AV_SAMPLE_FMT_FLT: in config_output()
Daf_acontrast.c50 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()
Daf_amultiply.c49 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()
Daf_drmeter.c61 AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_FLT, in query_formats() enumerator
144 case AV_SAMPLE_FMT_FLT: { in filter_frame()
Dgenerate_wave_table.c54 case AV_SAMPLE_FMT_FLT: { in ff_generate_wave_table()
Davf_avectorscope.c188 …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()
Daf_volume.c148 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/
Daudio_convert_init.c39 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/
Daudio_convert_init.c39 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/
DFFMpegExtractor.cpp215 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/
Dsamplefmt.h63 AV_SAMPLE_FMT_FLT, ///< float enumerator
Dsamplefmt.c39 … [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/
Daudio_convert_init.c58 …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/
Daudio_convert_init.c58 …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/
Dswresample.c53 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

1234