Home
last modified time | relevance | path

Searched refs:AV_SAMPLE_FMT_FLT (Results 1 - 25 of 73) sorted by relevance

123

/third_party/ffmpeg/libavresample/x86/
H A 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/x86/
H A Daudio_convert_init.c59 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P) in PROTO4()
62 if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4()
67 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S32P) in PROTO4()
69 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_S16P) in PROTO4()
71 if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_FLTP) in PROTO4()
73 if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLTP) in PROTO4()
77 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S32P) in PROTO4()
86 if( out_fmt == AV_SAMPLE_FMT_FLTP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4()
95 if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32P) in PROTO4()
99 if( out_fmt == AV_SAMPLE_FMT_FLT in PROTO4()
[all...]
/third_party/ffmpeg/libswresample/
H A 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)<<63)))
78 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8( lrintf(*(const float*)pi * (1<<7)) + 0x80))
79 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16( lrintf(*(const float*)pi * (1<<15))))
80 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi * (1U<<31))))
81 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(const float*)pi * (UINT64_C(1)<<63)))
82 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_FLT, *(cons
[all...]
/third_party/ffmpeg/libavresample/
H A Daudio_convert.c195 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t, (*(const uint8_t *)pi - 0x80) * (1.0f / (1 << 7)))
200 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *)pi * (1.0f / (1 << 15)))
205 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.0f / (1U << 31)))
207 CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8( lrintf(*(const float *)pi * (1 << 7)) + 0x80))
208 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16( lrintf(*(const float *)pi * (1 << 15))))
209 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *)pi * (1U << 31))))
210 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_FLT, float, *(const float *)pi)
211 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_FLT, float, *(const float *)pi)
215 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, floa
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmpegaudiodec_float.c38 #define OUT_FMT AV_SAMPLE_FMT_FLT
89 AV_SAMPLE_FMT_FLT,
107 AV_SAMPLE_FMT_FLT,
125 AV_SAMPLE_FMT_FLT,
143 AV_SAMPLE_FMT_FLT,
H A Dlibopusdec.c65 avc->sample_fmt = avc->request_sample_fmt == AV_SAMPLE_FMT_FLT ? in libopus_decode_init()
66 AV_SAMPLE_FMT_FLT : AV_SAMPLE_FMT_S16; in libopus_decode_init()
124 if (avc->sample_fmt == AV_SAMPLE_FMT_FLT) in libopus_decode_init()
187 if (avc->sample_fmt == AV_SAMPLE_FMT_FLT) { in libopus_decode()
245 .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLT,
H A Dnellymoserdec.c131 avctx->sample_fmt = AV_SAMPLE_FMT_FLT; in decode_init()
199 .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
H A Dlibtwolame.c121 case AV_SAMPLE_FMT_FLT: in twolame_encode_frame()
225 AV_SAMPLE_FMT_FLT,
H A Dpcm.c606 PCM_DECODER(PCM_F16LE, AV_SAMPLE_FMT_FLT, pcm_f16le, "PCM 16.8 floating point little-endian");
607 PCM_DECODER(PCM_F24LE, AV_SAMPLE_FMT_FLT, pcm_f24le, "PCM 24.0 floating point little-endian");
608 PCM_CODEC (PCM_F32BE, AV_SAMPLE_FMT_FLT, pcm_f32be, "PCM 32-bit floating point big-endian");
609 PCM_CODEC (PCM_F32LE, AV_SAMPLE_FMT_FLT, pcm_f32le, "PCM 32-bit floating point little-endian");
/third_party/ffmpeg/libavresample/tests/
H A Davresample.c57 PUT_FUNC(flt, AV_SAMPLE_FMT_FLT, float, v_dbl)
73 case AV_SAMPLE_FMT_FLT: in put_sample()
167 AV_SAMPLE_FMT_FLT,
/third_party/ffmpeg/libavfilter/
H A Daf_amultiply.c80 if (av_get_packed_sample_fmt(ctx->inputs[0]->format) == AV_SAMPLE_FMT_FLT) { in activate()
183 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP,
H A Daf_acontrast.c127 case AV_SAMPLE_FMT_FLT: s->filter = filter_flt; break; in config_input()
186 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP,
H A Daf_bs2b.c101 AV_SAMPLE_FMT_FLT, in query_formats()
171 case AV_SAMPLE_FMT_FLT: in config_output()
H A Daf_drmeter.c116 case AV_SAMPLE_FMT_FLT: { in filter_frame()
208 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_FLT),
H A Dgenerate_wave_table.c54 case AV_SAMPLE_FMT_FLT: { in ff_generate_wave_table()
H A Daf_volume.c146 AV_SAMPLE_FMT_FLT, in query_formats()
233 case AV_SAMPLE_FMT_FLT: in volume_init()
425 } else if (av_get_packed_sample_fmt(vol->sample_fmt) == AV_SAMPLE_FMT_FLT) { in filter_frame()
H A Davf_avectorscope.c204 static const enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_NONE }; in query_formats()
296 case AV_SAMPLE_FMT_FLT: { in filter_frame()
333 case AV_SAMPLE_FMT_FLT: in filter_frame()
H A Daf_crystalizer.c147 case AV_SAMPLE_FMT_FLT: in config_input()
251 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP,
/third_party/ffmpeg/libavresample/arm/
H A 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/ffmpeg/libavresample/aarch64/
H A 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/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
H A 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/
H A Dsamplefmt.h60 AV_SAMPLE_FMT_FLT, ///< float enumerator
/third_party/ffmpeg/libswresample/aarch64/
H A Daudio_convert_init.c58 if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLTP) in swri_audio_convert_init_aarch64()
/third_party/ffmpeg/libswresample/arm/
H A Daudio_convert_init.c58 if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLTP) in swri_audio_convert_init_arm()
/third_party/ffmpeg/libswresample/tests/
H A 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,

Completed in 14 milliseconds

123