Home
last modified time | relevance | path

Searched refs:AV_SAMPLE_FMT_S32 (Results 1 – 25 of 54) sorted by relevance

123

/third_party/ffmpeg/libswresample/x86/
Daudio_convert_init.c48 …if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16 || out_fmt == AV_SAMPLE_FMT_S32… in PROTO4()
50 …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()
65 …== AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt ==… in PROTO4()
68 …TP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4()
73 …if( out_fmt == AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_S32 || 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()
83 …== AV_SAMPLE_FMT_FLT && in_fmt == AV_SAMPLE_FMT_FLTP || out_fmt == AV_SAMPLE_FMT_S32 && in_fmt ==… in PROTO4()
87 if( out_fmt == AV_SAMPLE_FMT_S32 && in_fmt == AV_SAMPLE_FMT_S16P) in PROTO4()
92 …TP && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S32P && in_fmt == AV_SAMPLE_FMT_S32) in PROTO4()
[all …]
/third_party/ffmpeg/libswresample/
Daudioconvert.c56 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 …]
Ddither.c91 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()
Dsoxr_resample.c40 format == AV_SAMPLE_FMT_S32 ? SOXR_INT32_I : in create()
/third_party/ffmpeg/libavresample/
Daudio_convert.c194 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/
Daudio_convert_init.c151 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/
Dpcm.c290 if (avctx->sample_fmt == AV_SAMPLE_FMT_S32) in pcm_decode_init()
616 PCM_CODEC (PCM_S24BE, AV_SAMPLE_FMT_S32, pcm_s24be, "PCM signed 24-bit big-endian");
618 PCM_CODEC (PCM_S24LE, AV_SAMPLE_FMT_S32, pcm_s24le, "PCM signed 24-bit little-endian…
620 PCM_CODEC (PCM_S32BE, AV_SAMPLE_FMT_S32, pcm_s32be, "PCM signed 32-bit big-endian");
621 PCM_CODEC (PCM_S32LE, AV_SAMPLE_FMT_S32, pcm_s32le, "PCM signed 32-bit little-endian…
626 PCM_CODEC (PCM_U24BE, AV_SAMPLE_FMT_S32, pcm_u24be, "PCM unsigned 24-bit big-endian"…
627 PCM_CODEC (PCM_U24LE, AV_SAMPLE_FMT_S32, pcm_u24le, "PCM unsigned 24-bit little-endi…
628 PCM_CODEC (PCM_U32BE, AV_SAMPLE_FMT_S32, pcm_u32be, "PCM unsigned 32-bit big-endian"…
629 PCM_CODEC (PCM_U32LE, AV_SAMPLE_FMT_S32, pcm_u32le, "PCM unsigned 32-bit little-endi…
Dpcm-dvdenc.c54 case AV_SAMPLE_FMT_S32: in pcm_dvd_encode_init()
138 case AV_SAMPLE_FMT_S32: in pcm_dvd_encode_frame()
189 AV_SAMPLE_FMT_S32,
Dpcm-bluray.c79 : AV_SAMPLE_FMT_S32; in pcm_bluray_parse_header()
80 if (avctx->sample_fmt == AV_SAMPLE_FMT_S32) in pcm_bluray_parse_header()
312 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
Ds302menc.c49 case AV_SAMPLE_FMT_S32: in s302m_encode_init()
178 .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
Dttaenc.c49 case AV_SAMPLE_FMT_S32: in tta_encode_init()
215 AV_SAMPLE_FMT_S32,
Dpcm-dvd.c85 : AV_SAMPLE_FMT_S32; in pcm_dvd_parse_header()
305 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
Dflacdsp.c97 case AV_SAMPLE_FMT_S32: in ff_flacdsp_init()
Dmlpdec.c376 m->avctx->sample_fmt = AV_SAMPLE_FMT_S32; in read_major_sync()
382 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_major_sync()
623 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_restart_header()
885 … m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in read_decoding_params()
1071 int is32 = (m->avctx->sample_fmt == AV_SAMPLE_FMT_S32); in output_data()
/third_party/ffmpeg/libavcodec/x86/
Dflacdsp_init.c73 } else if (fmt == AV_SAMPLE_FMT_S32) { in ff_flacdsp_init_x86()
94 } else if (fmt == AV_SAMPLE_FMT_S32) { in ff_flacdsp_init_x86()
/third_party/ffmpeg/libavresample/tests/
Davresample.c56 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/
Daf_aphaser.c93 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P, in query_formats() enumerator
220 ff_generate_wave_table(s->type, AV_SAMPLE_FMT_S32, in PHASER_PLANAR()
233 case AV_SAMPLE_FMT_S32: s->phaser = phaser_s32; break; in PHASER_PLANAR()
Daf_bs2b.c101 AV_SAMPLE_FMT_S32, in query_formats() enumerator
175 case AV_SAMPLE_FMT_S32: in config_output()
Dgenerate_wave_table.c73 case AV_SAMPLE_FMT_S32: { in ff_generate_wave_table()
Daf_silencedetect.c160 case AV_SAMPLE_FMT_S32: in SILENCE_DETECT()
205 AV_SAMPLE_FMT_S32, in query_formats() enumerator
/third_party/ffmpeg/libavfilter/x86/
Daf_volume_init.c46 } else if (sample_fmt == AV_SAMPLE_FMT_S32) { in ff_volume_init_x86()
/third_party/ffmpeg/libavutil/
Dsamplefmt.c37 … [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_S32P },
43 … [AV_SAMPLE_FMT_S32P] = { .name = "s32p", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_S32 },
Dsamplefmt.h62 AV_SAMPLE_FMT_S32, ///< signed 32 bits enumerator
/third_party/ffmpeg/libswresample/tests/
Dswresample.c52 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/tests/checkasm/
Dflacdsp.c73 { AV_SAMPLE_FMT_S32, 32 }, in checkasm_check_flacdsp()

123