/third_party/ffmpeg/libswresample/x86/ |
D | audio_convert_init.c | 49 …if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_S32… in PROTO4() 51 …if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_S16… in PROTO4() 59 …== AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt ==… in PROTO4() 62 …TP && 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_FLT… in PROTO4() 71 …if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32… in PROTO4() 77 …== AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt ==… in PROTO4() 81 if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P) in PROTO4() 86 …TP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4() 92 if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4() [all …]
|
/third_party/ffmpeg/libswresample/ |
D | audioconvert.c | 56 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80U)<<24) 62 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16, *(const int16_t*)pi * (1 << 16)) 66 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S32, (*(const int32_t*)pi>>24) + 0x80) 67 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi>>16) 68 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi) 69 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32, (uint64_t)(*(const int32_t*)pi)<<32) 70 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0f/ (1U<<31))) 71 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0 / (1U<<31))) 74 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S64, *(const int64_t*)pi>>32) 80 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi *… [all …]
|
D | dither.c | 91 if(out_fmt == AV_SAMPLE_FMT_S32) scale = 1.0/(1LL<<31); in swri_dither_init() 95 …if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S32 && (s->dither.output_sample_bits&31… in swri_dither_init() 96 if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S16) scale = 1<<16; in swri_dither_init() 97 if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_U8 ) scale = 1<<24; in swri_dither_init() 102 if (out_fmt == AV_SAMPLE_FMT_S32 && s->dither.output_sample_bits) in swri_dither_init()
|
/third_party/ffmpeg/libavresample/ |
D | audio_convert.c | 194 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8, uint8_t, (*(const uint8_t *)pi - 0x8… 199 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *)pi << 16) 202 CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t, (*(const int32_t *)pi >> 24… 203 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi >> 16) 204 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi) 205 CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.… 206 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.… 209 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(co… in CONV_FUNC_GROUP() 214 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(con… in CONV_FUNC_GROUP() 227 SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8) [all …]
|
/third_party/ffmpeg/libavresample/x86/ |
D | audio_convert_init.c | 151 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 166 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 176 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, 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() 184 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() 230 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 232 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86()
|
/third_party/ffmpeg/libavcodec/ |
D | pcm.c | 294 if (avctx->sample_fmt == AV_SAMPLE_FMT_S32) in pcm_decode_init() 620 PCM_CODEC (PCM_S24BE, AV_SAMPLE_FMT_S32, pcm_s24be, "PCM signed 24-bit big-endian"); 622 PCM_CODEC (PCM_S24LE, AV_SAMPLE_FMT_S32, pcm_s24le, "PCM signed 24-bit little-endian… 624 PCM_CODEC (PCM_S32BE, AV_SAMPLE_FMT_S32, pcm_s32be, "PCM signed 32-bit big-endian"); 625 PCM_CODEC (PCM_S32LE, AV_SAMPLE_FMT_S32, pcm_s32le, "PCM signed 32-bit little-endian… 630 PCM_CODEC (PCM_U24BE, AV_SAMPLE_FMT_S32, pcm_u24be, "PCM unsigned 24-bit big-endian"… 631 PCM_CODEC (PCM_U24LE, AV_SAMPLE_FMT_S32, pcm_u24le, "PCM unsigned 24-bit little-endi… 632 PCM_CODEC (PCM_U32BE, AV_SAMPLE_FMT_S32, pcm_u32be, "PCM unsigned 32-bit big-endian"… 633 PCM_CODEC (PCM_U32LE, AV_SAMPLE_FMT_S32, pcm_u32le, "PCM unsigned 32-bit little-endi…
|
D | pcm-dvdenc.c | 57 case AV_SAMPLE_FMT_S32: in pcm_dvd_encode_init() 143 case AV_SAMPLE_FMT_S32: in pcm_dvd_encode_frame() 200 AV_SAMPLE_FMT_S32,
|
D | pcm-bluray.c | 78 : AV_SAMPLE_FMT_S32; in pcm_bluray_parse_header() 79 if (avctx->sample_fmt == AV_SAMPLE_FMT_S32) in pcm_bluray_parse_header() 310 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
|
D | s302menc.c | 52 case AV_SAMPLE_FMT_S32: in s302m_encode_init() 183 .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
|
D | pcm-blurayenc.c | 44 case AV_SAMPLE_FMT_S32: in pcm_bluray_encode_init() 312 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE },
|
D | ttaenc.c | 51 case AV_SAMPLE_FMT_S32: in tta_encode_init() 217 AV_SAMPLE_FMT_S32,
|
D | pcm-dvd.c | 87 : AV_SAMPLE_FMT_S32; in pcm_dvd_parse_header() 309 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
|
D | flacdsp.c | 98 case AV_SAMPLE_FMT_S32: in ff_flacdsp_init()
|
D | mlpdec.c | 396 m->avctx->sample_fmt = AV_SAMPLE_FMT_S32; in read_major_sync() 402 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_major_sync() 652 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_restart_header() 914 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_decoding_params() 1100 int is32 = (m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in output_data()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | flacdsp_init.c | 75 } else if (fmt == AV_SAMPLE_FMT_S32) { in ff_flacdsp_init_x86() 96 } else if (fmt == AV_SAMPLE_FMT_S32) { in ff_flacdsp_init_x86()
|
/third_party/ffmpeg/libavresample/tests/ |
D | avresample.c | 56 PUT_FUNC(s32, AV_SAMPLE_FMT_S32, int32_t, av_clipl_int32(llrint(v_dbl * (1U << 31)))) in PUT_FUNC() 70 case AV_SAMPLE_FMT_S32: in PUT_FUNC() 169 AV_SAMPLE_FMT_S32, enumerator
|
/third_party/ffmpeg/libavfilter/ |
D | af_aphaser.c | 187 ff_generate_wave_table(s->type, AV_SAMPLE_FMT_S32, in PHASER_PLANAR() 200 case AV_SAMPLE_FMT_S32: s->phaser = phaser_s32; break; in PHASER_PLANAR() 268 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
|
D | af_bs2b.c | 100 AV_SAMPLE_FMT_S32, in query_formats() enumerator 168 case AV_SAMPLE_FMT_S32: in config_output()
|
D | generate_wave_table.c | 73 case AV_SAMPLE_FMT_S32: { in ff_generate_wave_table()
|
D | af_silencedetect.c | 185 case AV_SAMPLE_FMT_S32: in SILENCE_DETECT() 272 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
|
/third_party/ffmpeg/libswresample/tests/ |
D | swresample.c | 52 case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0; in get() 71 case AV_SAMPLE_FMT_S32: ((int32_t*)p)[index]= av_clipl_int32(llrint(v*2147483647)); break; in set() 96 AV_SAMPLE_FMT_S32, enumerator
|
/third_party/ffmpeg/libavfilter/x86/ |
D | af_volume_init.c | 46 } else if (sample_fmt == AV_SAMPLE_FMT_S32) { in ff_volume_init_x86()
|
/third_party/ffmpeg/libavutil/ |
D | samplefmt.c | 39 … [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_S32P }, 45 … [AV_SAMPLE_FMT_S32P] = { .name = "s32p", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_S32 },
|
D | samplefmt.h | 59 AV_SAMPLE_FMT_S32, ///< signed 32 bits enumerator
|
/third_party/ffmpeg/tests/checkasm/ |
D | flacdsp.c | 73 { AV_SAMPLE_FMT_S32, 32 }, in checkasm_check_flacdsp()
|