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/
H A Daudio_convert_init.c49 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 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_
[all...]
H A 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)) 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 Dsoxr_resample.c40 format == AV_SAMPLE_FMT_S32 ? SOXR_INT32_I : in create()
/third_party/ffmpeg/libavresample/
H A Daudio_convert.c194 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 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/
H A Dpcm.c294 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 Dpcm-dvdenc.c57 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 Dpcm-bluray.c78 : 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 Ds302menc.c52 case AV_SAMPLE_FMT_S32: in s302m_encode_init()
183 .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
H A Dpcm-blurayenc.c44 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 Dttaenc.c51 case AV_SAMPLE_FMT_S32: in tta_encode_init()
217 AV_SAMPLE_FMT_S32,
H A Dpcm-dvd.c87 : AV_SAMPLE_FMT_S32; in pcm_dvd_parse_header()
309 AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
H A Dflacdsp.c98 case AV_SAMPLE_FMT_S32: in ff_flacdsp_init()
/third_party/ffmpeg/libavcodec/x86/
H A Dflacdsp_init.c75 } 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 Daf_aphaser.c187 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 Daf_bs2b.c100 AV_SAMPLE_FMT_S32, in query_formats()
168 case AV_SAMPLE_FMT_S32: in config_output()
H A Dgenerate_wave_table.c73 case AV_SAMPLE_FMT_S32: { in ff_generate_wave_table()
H A Daf_silencedetect.c185 case AV_SAMPLE_FMT_S32: in config_input()
272 AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
/third_party/ffmpeg/libavresample/tests/
H A Davresample.c56 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 Daf_volume_init.c46 } else if (sample_fmt == AV_SAMPLE_FMT_S32) { in ff_volume_init_x86()
/third_party/ffmpeg/libavutil/
H A Dsamplefmt.h59 AV_SAMPLE_FMT_S32, ///< signed 32 bits enumerator
H A Dsamplefmt.c39 [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 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,
/third_party/ffmpeg/tests/checkasm/
H A Dflacdsp.c73 { AV_SAMPLE_FMT_S32, 32 }, in checkasm_check_flacdsp()

Completed in 11 milliseconds

123