Searched refs:supported_samplerates (Results 1 – 25 of 29) sorted by relevance
12
/third_party/ffmpeg/libavcodec/ |
D | mpegaudioenc_fixed.c | 34 .supported_samplerates = (const int[]){
|
D | mpegaudioenc_float.c | 35 .supported_samplerates = (const int[]){
|
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 | codec.h | 212 …const int *supported_samplerates; ///< array of supported audio samplerates, or NULL if unkn… member
|
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 | ac3enc_fixed.c | 158 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | ac3enc_float.c | 153 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | libshine.c | 145 .supported_samplerates = libshine_sample_rates,
|
D | s302menc.c | 182 .supported_samplerates = (const int[]) { 48000, 0 },
|
D | pcm-dvdenc.c | 188 .supported_samplerates = (const int[]) { 48000, 96000, 0},
|
D | libtwolame.c | 232 .supported_samplerates = twolame_samplerates,
|
D | eac3enc.c | 266 .supported_samplerates = ff_ac3_sample_rate_tab,
|
D | libspeexenc.c | 365 .supported_samplerates = (const int[]){ 8000, 16000, 32000, 0 },
|
D | libmp3lame.c | 344 .supported_samplerates = libmp3lame_sample_rates,
|
D | libfdk-aacenc.c | 476 .supported_samplerates = aac_sample_rates,
|
D | sbcdec.c | 379 .supported_samplerates = (const int[]) { 16000, 32000, 44100, 48000, 0 },
|
D | utils.c | 812 if (avctx->codec->supported_samplerates) { in avcodec_open2() 813 for (i = 0; avctx->codec->supported_samplerates[i] != 0; i++) in avcodec_open2() 814 if (avctx->sample_rate == avctx->codec->supported_samplerates[i]) in avcodec_open2() 816 if (avctx->codec->supported_samplerates[i] == 0) { in avcodec_open2()
|
D | libopusenc.c | 588 .supported_samplerates = libopus_sample_rates,
|
D | ra144enc.c | 557 .supported_samplerates = (const int[]){ 8000, 0 },
|
D | opusenc.c | 734 .supported_samplerates = (const int []){ 48000, 0 },
|
D | mlpenc.c | 2394 .supported_samplerates = (const int[]) {44100, 48000, 88200, 96000, 176400, 192000, 0}, 2410 .supported_samplerates = (const int[]) {44100, 48000, 88200, 96000, 176400, 192000, 0},
|
/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/gstreamer/gst_libav/ext/libav/ |
D | gstavcodecmap.c | 732 } else if (codec && codec->supported_samplerates in gst_ff_aud_caps_new() 733 && codec->supported_samplerates[0]) { in gst_ff_aud_caps_new() 737 if (!codec->supported_samplerates[1]) { in gst_ff_aud_caps_new() 739 codec->supported_samplerates[0], NULL); in gst_ff_aud_caps_new() 741 const int *rates = codec->supported_samplerates; in gst_ff_aud_caps_new() 2530 codec->sample_fmts, codec->supported_samplerates); in gst_ffmpeg_codectype_to_audio_caps()
|
12