/third_party/ffmpeg/libswresample/ |
H A D | audioconvert.c | 59 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)*(1.0 / (1<<7))) 65 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0 / (1<<15))) 71 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0 / (1U<<31))) 77 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S64, *(const int64_t*)pi*(1.0 / (UINT64_C(1)<<63))) 83 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_FLT, *(const float*)pi) 84 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8( lrint(*(const double*)pi * (1<<7)) + 0x80)) 85 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16( lrint(*(const double*)pi * (1<<15)))) 86 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double*)pi * (1U<<31)))) 87 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(const double*)pi * (UINT64_C(1)<<63))) 88 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_DBL, *(cons [all...] |
H A D | soxr_resample.c | 44 format == AV_SAMPLE_FMT_DBL ? SOXR_FLOAT64_I : (soxr_datatype_t)-1; in create()
|
H A D | dither.c | 90 if(in_fmt == AV_SAMPLE_FMT_FLT || in_fmt == AV_SAMPLE_FMT_DBL){ in swri_dither_init()
|
/third_party/ffmpeg/libavresample/ |
H A D | audio_convert.c | 196 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t, (*(const uint8_t *)pi - 0x80) * (1.0 / (1 << 7))) 201 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *)pi * (1.0 / (1 << 15))) 206 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.0 / (1U << 31))) 211 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_FLT, float, *(const float *)pi) 212 CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8( lrint(*(const double *)pi * (1 << 7)) + 0x80)) 213 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16( lrint(*(const double *)pi * (1 << 15)))) 214 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *)pi * (1U << 31)))) 215 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_DBL, double, *(const double *)pi) 216 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_DBL, doubl [all...] |
H A D | options.c | 50 {"dbl", "64-bit double", 0, AV_OPT_TYPE_CONST, {.i64 = AV_SAMPLE_FMT_DBL }, INT_MIN, INT_MAX, PARAM, "internal_sample_fmt"},
|
/third_party/ffmpeg/libavresample/tests/ |
H A D | avresample.c | 58 PUT_FUNC(dbl, AV_SAMPLE_FMT_DBL, double, v_dbl) 76 case AV_SAMPLE_FMT_DBL: in put_sample() 173 AV_SAMPLE_FMT_DBL,
|
/third_party/ffmpeg/doc/examples/ |
H A D | resampling_audio.c | 44 { AV_SAMPLE_FMT_DBL, "f64be", "f64le" }, in get_format_from_sample_fmt() 89 enum AVSampleFormat src_sample_fmt = AV_SAMPLE_FMT_DBL, dst_sample_fmt = AV_SAMPLE_FMT_S16; in main()
|
H A D | decode_audio.c | 53 { AV_SAMPLE_FMT_DBL, "f64be", "f64le" }, in get_format_from_sample_fmt()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_acontrast.c | 128 case AV_SAMPLE_FMT_DBL: s->filter = filter_dbl; break; in config_input() 187 AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP),
|
H A D | af_bs2b.c | 102 AV_SAMPLE_FMT_DBL, in query_formats() 174 case AV_SAMPLE_FMT_DBL: in config_output()
|
H A D | generate_wave_table.c | 59 case AV_SAMPLE_FMT_DBL: { in ff_generate_wave_table()
|
H A D | af_crystalizer.c | 159 case AV_SAMPLE_FMT_DBL: in config_input() 252 AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP),
|
H A D | af_silencedetect.c | 183 case AV_SAMPLE_FMT_DBL: s->silencedetect = silencedetect_dbl; break; in config_input() 270 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP,
|
H A D | af_aphaser.c | 194 case AV_SAMPLE_FMT_DBL: s->phaser = phaser_dbl; break; in config_output() 266 FILTER_SAMPLEFMTS(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP,
|
H A D | af_tremolo.c | 139 FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBL),
|
H A D | af_amultiply.c | 184 AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP),
|
H A D | af_vibrato.c | 146 ff_generate_wave_table(WAVE_SIN, AV_SAMPLE_FMT_DBL, s->wave_table, s->wave_table_size, 0.0, s->buf_size - 1, 3.0 * M_PI_2); in config_input()
|
H A D | af_agate.c | 245 FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBL), 323 AV_SAMPLE_FMT_DBL, in scquery_formats()
|
H A D | af_sidechaincompress.c | 304 AV_SAMPLE_FMT_DBL, in query_formats() 434 FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBL),
|
H A D | af_volume.c | 151 AV_SAMPLE_FMT_DBL, in query_formats() 236 case AV_SAMPLE_FMT_DBL: in volume_init()
|
H A D | af_afade.c | 66 AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBLP, 198 case AV_SAMPLE_FMT_DBL: s->fade_samples = fade_samples_dbl; break; in config_output() 582 case AV_SAMPLE_FMT_DBL: s->crossfade_samples = crossfade_samples_dbl; break; in acrossfade_config_output()
|
/third_party/ffmpeg/libavutil/ |
H A D | samplefmt.h | 61 AV_SAMPLE_FMT_DBL, ///< double enumerator
|
H A D | samplefmt.c | 42 [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64, .planar = 0, .altform = AV_SAMPLE_FMT_DBLP }, 48 [AV_SAMPLE_FMT_DBLP] = { .name = "dblp", .bits = 64, .planar = 1, .altform = AV_SAMPLE_FMT_DBL },
|
/third_party/ffmpeg/libswresample/tests/ |
H A D | swresample.c | 54 case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index]; in get() 73 case AV_SAMPLE_FMT_DBL: ((double *)p)[index]= v; break; in set() 100 AV_SAMPLE_FMT_DBL,
|
/third_party/ffmpeg/libavformat/ |
H A D | uncodedframecrcenc.c | 112 case AV_SAMPLE_FMT_DBL: in audio_frame_cksum()
|