AV_SAMPLE_FMT_S32  204 doc/examples/demuxing_decoding.c         { AV_SAMPLE_FMT_S32, "s32be", "s32le" },
AV_SAMPLE_FMT_S32   42 doc/examples/resampling_audio.c         { AV_SAMPLE_FMT_S32, "s32be", "s32le" },
AV_SAMPLE_FMT_S32  603 libavcodec/alac.c     case 32: avctx->sample_fmt = req_packed ? AV_SAMPLE_FMT_S32 : AV_SAMPLE_FMT_S32P;
AV_SAMPLE_FMT_S32 1667 libavcodec/alsdec.c                                      ? AV_SAMPLE_FMT_S32 : AV_SAMPLE_FMT_S16;
AV_SAMPLE_FMT_S32   92 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)<<24)
AV_SAMPLE_FMT_S32   97 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16,  *(const int16_t*)pi<<16)
AV_SAMPLE_FMT_S32  100 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S32, (*(const int32_t*)pi>>24) + 0x80)
AV_SAMPLE_FMT_S32  101 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32,  *(const int32_t*)pi>>16)
AV_SAMPLE_FMT_S32  102 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32,  *(const int32_t*)pi)
AV_SAMPLE_FMT_S32  103 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_FLT, float  , AV_SAMPLE_FMT_S32,  *(const int32_t*)pi*(1.0 / (1U<<31)))
AV_SAMPLE_FMT_S32  104 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S32,  *(const int32_t*)pi*(1.0 / (1U<<31)))
AV_SAMPLE_FMT_S32  107 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi * (1U<<31))))
AV_SAMPLE_FMT_S32  112 libavcodec/audioconvert.c         else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double*)pi * (1U<<31))))
AV_SAMPLE_FMT_S32   81 libavcodec/flacdec.c             s->avctx->sample_fmt = AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32  100 libavcodec/flacdsp.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  246 libavcodec/flacenc.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  351 libavcodec/mlp_parser.c             avctx->sample_fmt = AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32  370 libavcodec/mlpdec.c         m->avctx->sample_fmt = AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32  376 libavcodec/mlpdec.c                                                            m->avctx->sample_fmt == AV_SAMPLE_FMT_S32);
AV_SAMPLE_FMT_S32  629 libavcodec/mlpdec.c                                                                m->avctx->sample_fmt == AV_SAMPLE_FMT_S32);
AV_SAMPLE_FMT_S32  882 libavcodec/mlpdec.c                                                                        m->avctx->sample_fmt == AV_SAMPLE_FMT_S32);
AV_SAMPLE_FMT_S32 1051 libavcodec/mlpdec.c     int is32 = (m->avctx->sample_fmt == AV_SAMPLE_FMT_S32);
AV_SAMPLE_FMT_S32   79 libavcodec/pcm-bluray.c                                                            : AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32   80 libavcodec/pcm-bluray.c     if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32   96 libavcodec/pcm-dvd.c                                                            : AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32  251 libavcodec/pcm.c     if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  556 libavcodec/pcm.c PCM_CODEC  (PCM_S24BE,        AV_SAMPLE_FMT_S32, pcm_s24be,        "PCM signed 24-bit big-endian");
AV_SAMPLE_FMT_S32  558 libavcodec/pcm.c PCM_CODEC  (PCM_S24LE,        AV_SAMPLE_FMT_S32, pcm_s24le,        "PCM signed 24-bit little-endian");
AV_SAMPLE_FMT_S32  560 libavcodec/pcm.c PCM_CODEC  (PCM_S32BE,        AV_SAMPLE_FMT_S32, pcm_s32be,        "PCM signed 32-bit big-endian");
AV_SAMPLE_FMT_S32  561 libavcodec/pcm.c PCM_CODEC  (PCM_S32LE,        AV_SAMPLE_FMT_S32, pcm_s32le,        "PCM signed 32-bit little-endian");
AV_SAMPLE_FMT_S32  566 libavcodec/pcm.c PCM_CODEC  (PCM_U24BE,        AV_SAMPLE_FMT_S32, pcm_u24be,        "PCM unsigned 24-bit big-endian");
AV_SAMPLE_FMT_S32  567 libavcodec/pcm.c PCM_CODEC  (PCM_U24LE,        AV_SAMPLE_FMT_S32, pcm_u24le,        "PCM unsigned 24-bit little-endian");
AV_SAMPLE_FMT_S32  568 libavcodec/pcm.c PCM_CODEC  (PCM_U32BE,        AV_SAMPLE_FMT_S32, pcm_u32be,        "PCM unsigned 32-bit big-endian");
AV_SAMPLE_FMT_S32  569 libavcodec/pcm.c PCM_CODEC  (PCM_U32LE,        AV_SAMPLE_FMT_S32, pcm_u32le,        "PCM unsigned 32-bit little-endian");
AV_SAMPLE_FMT_S32   64 libavcodec/s302m.c         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32   49 libavcodec/s302menc.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  174 libavcodec/tta.c             avctx->sample_fmt = AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32   47 libavcodec/ttaenc.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32 3279 libavcodec/utils.c         [AV_SAMPLE_FMT_S32 ] = { AV_CODEC_ID_PCM_S32LE, AV_CODEC_ID_PCM_S32BE },
AV_SAMPLE_FMT_S32   73 libavcodec/x86/flacdsp_init.c         } else if (fmt == AV_SAMPLE_FMT_S32) {
AV_SAMPLE_FMT_S32   95 libavcodec/x86/flacdsp_init.c         } else if (fmt == AV_SAMPLE_FMT_S32) {
AV_SAMPLE_FMT_S32  813 libavdevice/dshow.c     case AV_SAMPLE_FMT_S32: return AV_CODEC_ID_PCM_S32LE;
AV_SAMPLE_FMT_S32  823 libavdevice/dshow.c     case 32: return AV_SAMPLE_FMT_S32;
AV_SAMPLE_FMT_S32  269 libavdevice/lavfi.c                                                   AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32   96 libavfilter/af_afade.c         AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
AV_SAMPLE_FMT_S32  215 libavfilter/af_afade.c     case AV_SAMPLE_FMT_S32:  s->fade_samples = fade_samples_s32;  break;
AV_SAMPLE_FMT_S32   93 libavfilter/af_aphaser.c         AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32P,
AV_SAMPLE_FMT_S32  213 libavfilter/af_aphaser.c     ff_generate_wave_table(p->type, AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  226 libavfilter/af_aphaser.c     case AV_SAMPLE_FMT_S32:  p->phaser = phaser_s32;  break;
AV_SAMPLE_FMT_S32  413 libavfilter/af_atempo.c     } else if (atempo->format == AV_SAMPLE_FMT_S32) {
AV_SAMPLE_FMT_S32  804 libavfilter/af_atempo.c     } else if (atempo->format == AV_SAMPLE_FMT_S32) {
AV_SAMPLE_FMT_S32 1010 libavfilter/af_atempo.c         AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  104 libavfilter/af_bs2b.c         AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  173 libavfilter/af_bs2b.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  123 libavfilter/af_silencedetect.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  163 libavfilter/af_silencedetect.c         AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  141 libavfilter/af_volume.c             AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  238 libavfilter/af_volume.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32   31 libavfilter/audio.h     AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32   73 libavfilter/generate_wave_table.c         case AV_SAMPLE_FMT_S32: {
AV_SAMPLE_FMT_S32   46 libavfilter/x86/af_volume_init.c     } else if (sample_fmt == AV_SAMPLE_FMT_S32) {
AV_SAMPLE_FMT_S32  103 libavformat/uncodedframecrcenc.c         case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  194 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8,  uint8_t, (*(const uint8_t *)pi - 0x80) << 24)
AV_SAMPLE_FMT_S32  199 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16, int16_t,  *(const int16_t *)pi << 16)
AV_SAMPLE_FMT_S32  202 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8,  uint8_t, AV_SAMPLE_FMT_S32, int32_t, (*(const int32_t *)pi >> 24) + 0x80)
AV_SAMPLE_FMT_S32  203 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32, int32_t,  *(const int32_t *)pi >> 16)
AV_SAMPLE_FMT_S32  204 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32, int32_t,  *(const int32_t *)pi)
AV_SAMPLE_FMT_S32  205 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float,   AV_SAMPLE_FMT_S32, int32_t,  *(const int32_t *)pi * (1.0f / (1U << 31)))
AV_SAMPLE_FMT_S32  206 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double,  AV_SAMPLE_FMT_S32, int32_t,  *(const int32_t *)pi * (1.0  / (1U << 31)))
AV_SAMPLE_FMT_S32  209 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float,   av_clipl_int32(llrintf(*(const float *)pi * (1U << 31))))
AV_SAMPLE_FMT_S32  214 libavresample/audio_convert.c CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double,  av_clipl_int32(llrint(*(const double *)pi * (1U << 31))))
AV_SAMPLE_FMT_S32  227 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8)
AV_SAMPLE_FMT_S32  232 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16)
AV_SAMPLE_FMT_S32  235 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8,  AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  236 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  237 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  238 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  239 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  242 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT)
AV_SAMPLE_FMT_S32  247 libavresample/audio_convert.c     SET_CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL)
AV_SAMPLE_FMT_S32   55 libavresample/avresample-test.c PUT_FUNC(s32, AV_SAMPLE_FMT_S32, int32_t, av_clipl_int32(llrint(v_dbl * (1U << 31))))
AV_SAMPLE_FMT_S32   69 libavresample/avresample-test.c     case AV_SAMPLE_FMT_S32:
AV_SAMPLE_FMT_S32  168 libavresample/avresample-test.c     AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32   48 libavresample/options.c         {"s32",  "32-bit signed integer",         0, AV_OPT_TYPE_CONST, {.i64 = AV_SAMPLE_FMT_S32  }, INT_MIN, INT_MAX, PARAM, "internal_sample_fmt"},
AV_SAMPLE_FMT_S32  151 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  166 libavresample/x86/audio_convert_init.c             ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  176 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_S32  180 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  184 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT,
AV_SAMPLE_FMT_S32  230 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32  232 libavresample/x86/audio_convert_init.c         ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT,
AV_SAMPLE_FMT_S32   37 libavutil/samplefmt.c     [AV_SAMPLE_FMT_S32]  = { .name =  "s32", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_S32P },
AV_SAMPLE_FMT_S32   42 libavutil/samplefmt.c     [AV_SAMPLE_FMT_S32P] = { .name = "s32p", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_S32  },
AV_SAMPLE_FMT_S32   56 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80U)<<24)
AV_SAMPLE_FMT_S32   61 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16,  *(const int16_t*)pi<<16)
AV_SAMPLE_FMT_S32   64 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S32, (*(const int32_t*)pi>>24) + 0x80)
AV_SAMPLE_FMT_S32   65 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32,  *(const int32_t*)pi>>16)
AV_SAMPLE_FMT_S32   66 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32,  *(const int32_t*)pi)
AV_SAMPLE_FMT_S32   67 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_FLT, float  , AV_SAMPLE_FMT_S32,  *(const int32_t*)pi*(1.0f/ (1U<<31)))
AV_SAMPLE_FMT_S32   68 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S32,  *(const int32_t*)pi*(1.0 / (1U<<31)))
AV_SAMPLE_FMT_S32   71 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi * (1U<<31))))
AV_SAMPLE_FMT_S32   76 libswresample/audioconvert.c CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double*)pi * (1U<<31))))
AV_SAMPLE_FMT_S32   85 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8 ),
AV_SAMPLE_FMT_S32   90 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16),
AV_SAMPLE_FMT_S32   93 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8 , AV_SAMPLE_FMT_S32),
AV_SAMPLE_FMT_S32   94 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32),
AV_SAMPLE_FMT_S32   95 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32),
AV_SAMPLE_FMT_S32   96 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32),
AV_SAMPLE_FMT_S32   97 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32),
AV_SAMPLE_FMT_S32  100 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT),
AV_SAMPLE_FMT_S32  105 libswresample/audioconvert.c     FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL),
AV_SAMPLE_FMT_S32   87 libswresample/dither.c         if(out_fmt == AV_SAMPLE_FMT_S32) scale = 1.0/(1LL<<31);
AV_SAMPLE_FMT_S32   91 libswresample/dither.c     if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S32 && (s->dither.output_sample_bits&31)) scale = 1;
AV_SAMPLE_FMT_S32   92 libswresample/dither.c     if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S16) scale = 1<<16;
AV_SAMPLE_FMT_S32   93 libswresample/dither.c     if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_U8 ) scale = 1<<24;
AV_SAMPLE_FMT_S32   98 libswresample/dither.c     if (out_fmt == AV_SAMPLE_FMT_S32 && s->dither.output_sample_bits)
AV_SAMPLE_FMT_S32   40 libswresample/soxr_resample.c         format == AV_SAMPLE_FMT_S32 ? SOXR_INT32_I :
AV_SAMPLE_FMT_S32   51 libswresample/swresample-test.c     case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0;
AV_SAMPLE_FMT_S32   70 libswresample/swresample-test.c     case AV_SAMPLE_FMT_S32: ((int32_t*)p)[index]= av_clipl_int32(llrint(v*2147483647));   break;
AV_SAMPLE_FMT_S32   95 libswresample/swresample-test.c     AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_S32   48 libswresample/x86/audio_convert_init.c         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)\
AV_SAMPLE_FMT_S32   50 libswresample/x86/audio_convert_init.c         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)\
AV_SAMPLE_FMT_S32   59 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32   65 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32   68 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32   73 libswresample/x86/audio_convert_init.c         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)
AV_SAMPLE_FMT_S32   77 libswresample/x86/audio_convert_init.c         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)
AV_SAMPLE_FMT_S32   83 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32   87 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_S16P)
AV_SAMPLE_FMT_S32   92 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32   98 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S16P  && in_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  103 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_FLTP)
AV_SAMPLE_FMT_S32  109 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_FLTP  && in_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  121 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_FLTP)
AV_SAMPLE_FMT_S32  124 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_FLTP  && in_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  130 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32  134 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_FLTP)
AV_SAMPLE_FMT_S32  149 libswresample/x86/audio_convert_init.c         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)
AV_SAMPLE_FMT_S32  152 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32  156 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_FLTP)
AV_SAMPLE_FMT_S32  159 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32  161 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_FLTP  && in_fmt == AV_SAMPLE_FMT_S32)
AV_SAMPLE_FMT_S32  167 libswresample/x86/audio_convert_init.c             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)
AV_SAMPLE_FMT_S32  171 libswresample/x86/audio_convert_init.c             if(   out_fmt == AV_SAMPLE_FMT_S32  && in_fmt == AV_SAMPLE_FMT_FLTP)
AV_SAMPLE_FMT_S32  176 libswresample/x86/audio_convert_init.c         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)