Searched refs:supported_samplerates (Results 1 – 25 of 29) sorted by relevance
12
/third_party/ffmpeg/doc/examples/ |
D | encode_audio.c | 60 if (!codec->supported_samplerates) in select_sample_rate() 63 p = codec->supported_samplerates; in select_sample_rate()
|
D | muxing.c | 157 if ((*codec)->supported_samplerates) { in add_stream() 158 c->sample_rate = (*codec)->supported_samplerates[0]; in add_stream() 159 for (i = 0; (*codec)->supported_samplerates[i]; i++) { in add_stream() 160 if ((*codec)->supported_samplerates[i] == 44100) in add_stream()
|
/third_party/ffmpeg/libavcodec/ |
D | libcodec2.c | 193 .supported_samplerates = (const int[]){ 8000, 0 }, 209 .supported_samplerates = (const int[]){ 8000, 0 },
|
D | sbcenc.c | 260 for (int i = 0; avctx->codec->supported_samplerates[i]; i++) in sbc_encode_init() 261 if (avctx->sample_rate == avctx->codec->supported_samplerates[i]) in sbc_encode_init() 358 .supported_samplerates = (const int[]) { 16000, 32000, 44100, 48000, 0 },
|
D | mpegaudioenc_fixed.c | 34 .supported_samplerates = (const int[]){
|
D | mpegaudioenc_float.c | 35 .supported_samplerates = (const int[]){
|
D | encode.c | 583 if (avctx->codec->supported_samplerates) { in ff_encode_preinit() 584 for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++) in ff_encode_preinit() 585 if (avctx->sample_rate == avctx->codec->supported_samplerates[i]) in ff_encode_preinit() 587 if (avctx->codec->supported_samplerates[i] == 0) { in ff_encode_preinit()
|
D | aptxenc.c | 257 .supported_samplerates = (const int[]) {8000, 16000, 24000, 32000, 44100, 48000, 0}, 276 .supported_samplerates = (const int[]) {8000, 16000, 24000, 32000, 44100, 48000, 0},
|
D | codec.h | 219 …const int *supported_samplerates; ///< array of supported audio samplerates, or NULL if unkn… member
|
D | ac3enc_fixed.c | 143 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | ac3enc_float.c | 146 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | libshine.c | 145 .supported_samplerates = libshine_sample_rates,
|
D | pcm-dvdenc.c | 182 .supported_samplerates = (const int[]) { 48000, 96000, 0},
|
D | s302menc.c | 182 .supported_samplerates = (const int[]) { 48000, 0 },
|
D | libtwolame.c | 232 .supported_samplerates = twolame_samplerates,
|
D | eac3enc.c | 263 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | libmp3lame.c | 344 .supported_samplerates = libmp3lame_sample_rates,
|
D | libspeexenc.c | 365 .supported_samplerates = (const int[]){ 8000, 16000, 32000, 0 },
|
D | libfdk-aacenc.c | 476 .supported_samplerates = aac_sample_rates,
|
D | sbcdec.c | 380 .supported_samplerates = (const int[]) { 16000, 32000, 44100, 48000, 0 },
|
D | libopusenc.c | 597 .supported_samplerates = libopus_sample_rates,
|
D | ra144enc.c | 554 .supported_samplerates = (const int[]){ 8000, 0 },
|
D | opusenc.c | 735 .supported_samplerates = (const int []){ 48000, 0 },
|
D | mlpenc.c | 2378 .supported_samplerates = (const int[]) {44100, 48000, 88200, 96000, 176400, 192000, 0}, 2395 .supported_samplerates = (const int[]) {44100, 48000, 88200, 96000, 176400, 192000, 0},
|
/third_party/gstreamer/gst_libav/ext/libav/ |
D | gstavcodecmap.c | 710 } else if (codec && codec->supported_samplerates in gst_ff_aud_caps_new() 711 && codec->supported_samplerates[0]) { in gst_ff_aud_caps_new() 715 if (!codec->supported_samplerates[1]) { in gst_ff_aud_caps_new() 717 codec->supported_samplerates[0], NULL); in gst_ff_aud_caps_new() 719 const int *rates = codec->supported_samplerates; in gst_ff_aud_caps_new() 2591 codec->sample_fmts, codec->supported_samplerates); in gst_ffmpeg_codectype_to_audio_caps()
|
12