/third_party/ffmpeg/libswresample/x86/ |
H A D | audio_convert_init.c | 49 if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S16P)\ in PROTO4() 51 if( out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_S32 || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32P)\ in PROTO4() 59 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() 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() 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() 81 if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P) 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() 92 if( out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4() [all...] |
/third_party/ffmpeg/libswresample/ |
H A 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_ [all...] |
H A 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)) scale = 1; 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()
|
H A D | soxr_resample.c | 40 format == AV_SAMPLE_FMT_S32 ? SOXR_INT32_I : in create()
|
/third_party/ffmpeg/libavresample/ |
H A D | audio_convert.c | 194 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8, uint8_t, (*(const uint8_t *)pi - 0x80) << 24) 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) + 0x80) 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.0f / (1U << 31))) 206 CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *)pi * (1.0 / (1U << 31))) 209 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *)pi * (1U << 31)))) 214 CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_ [all...] |
/third_party/ffmpeg/libavresample/x86/ |
H A 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/ |
H A 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-endian"); 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-endian");
|
H A 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,
|
H A 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
|
H A D | s302menc.c | 52 case AV_SAMPLE_FMT_S32: in s302m_encode_init() 183 .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
|
H A 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 },
|
H A D | ttaenc.c | 51 case AV_SAMPLE_FMT_S32: in tta_encode_init() 217 AV_SAMPLE_FMT_S32,
|
H A 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
|
H A D | flacdsp.c | 98 case AV_SAMPLE_FMT_S32: in ff_flacdsp_init()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A 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/libavfilter/ |
H A D | af_aphaser.c | 187 ff_generate_wave_table(s->type, AV_SAMPLE_FMT_S32, in config_output() 200 case AV_SAMPLE_FMT_S32: s->phaser = phaser_s32; break; in config_output() 268 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
|
H A D | af_bs2b.c | 100 AV_SAMPLE_FMT_S32, in query_formats() 168 case AV_SAMPLE_FMT_S32: in config_output()
|
H A D | generate_wave_table.c | 73 case AV_SAMPLE_FMT_S32: { in ff_generate_wave_table()
|
H A D | af_silencedetect.c | 185 case AV_SAMPLE_FMT_S32: in config_input() 272 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
|
/third_party/ffmpeg/libavresample/tests/ |
H A D | avresample.c | 56 PUT_FUNC(s32, AV_SAMPLE_FMT_S32, int32_t, av_clipl_int32(llrint(v_dbl * (1U << 31)))) 70 case AV_SAMPLE_FMT_S32: in put_sample() 169 AV_SAMPLE_FMT_S32,
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | af_volume_init.c | 46 } else if (sample_fmt == AV_SAMPLE_FMT_S32) { in ff_volume_init_x86()
|
/third_party/ffmpeg/libavutil/ |
H A D | samplefmt.h | 59 AV_SAMPLE_FMT_S32, ///< signed 32 bits enumerator
|
H A 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 },
|
/third_party/ffmpeg/libswresample/tests/ |
H A 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,
|
/third_party/ffmpeg/tests/checkasm/ |
H A D | flacdsp.c | 73 { AV_SAMPLE_FMT_S32, 32 }, in checkasm_check_flacdsp()
|