/third_party/ffmpeg/libavfilter/ |
H A D | formats.c | 392 AVFilterChannelLayouts *ch_layouts; in ff_make_channel_layout_list() local 397 ch_layouts = av_mallocz(sizeof(*ch_layouts)); in ff_make_channel_layout_list() 398 if (!ch_layouts) in ff_make_channel_layout_list() 400 ch_layouts->nb_channel_layouts = count; in ff_make_channel_layout_list() 402 ch_layouts->channel_layouts = in ff_make_channel_layout_list() 403 av_calloc(count, sizeof(*ch_layouts->channel_layouts)); in ff_make_channel_layout_list() 404 if (!ch_layouts->channel_layouts) { in ff_make_channel_layout_list() 405 av_freep(&ch_layouts); in ff_make_channel_layout_list() 409 int ret = av_channel_layout_copy(&ch_layouts in ff_make_channel_layout_list() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | libgsmenc.c | 133 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO, { 0 } }, 153 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO, { 0 } },
|
H A D | mpegaudioenc_float.c | 45 .p.ch_layouts = (const AVChannelLayout[]){ AV_CHANNEL_LAYOUT_MONO,
|
H A D | mpegaudioenc_fixed.c | 44 .p.ch_layouts = (const AVChannelLayout[]){ AV_CHANNEL_LAYOUT_MONO,
|
H A D | aptxdec.c | 190 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_STEREO, { 0 } }, 210 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_STEREO, { 0 } },
|
H A D | libcodec2.c | 187 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO, { 0 } }, 205 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO, { 0 } },
|
H A D | encode.c | 516 if (avctx->codec->ch_layouts) { in encode_preinit_audio() 522 for (i = 0; avctx->codec->ch_layouts[i].nb_channels; i++) { in encode_preinit_audio() 523 if (!av_channel_layout_compare(&avctx->ch_layout, &avctx->codec->ch_layouts[i])) in encode_preinit_audio() 526 if (!avctx->codec->ch_layouts[i].nb_channels) { in encode_preinit_audio()
|
H A D | codec.h | 223 * @deprecated use ch_layouts instead 246 const AVChannelLayout *ch_layouts; member
|
H A D | aptxenc.c | 262 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_STEREO, { 0 } }, 284 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_STEREO, { 0 } },
|
H A D | cngenc.c | 111 .p.ch_layouts = (const AVChannelLayout[]){ AV_CHANNEL_LAYOUT_MONO, { 0 } },
|
H A D | ac3enc_float.c | 144 .p.ch_layouts = ff_ac3_ch_layouts,
|
H A D | ac3enc_fixed.c | 141 .p.ch_layouts = ff_ac3_ch_layouts,
|
H A D | libshine.c | 152 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO,
|
H A D | pcm-dvdenc.c | 194 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO,
|
H A D | aacdec.c | 572 .p.ch_layouts = aac_ch_layout, 600 .p.ch_layouts = aac_ch_layout,
|
H A D | libtwolame.c | 237 .p.ch_layouts = (const AVChannelLayout[]) {
|
H A D | pcm-blurayenc.c | 299 .p.ch_layouts = (const AVChannelLayout[]) {
|
H A D | libmp3lame.c | 352 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO,
|
H A D | libspeexenc.c | 368 .p.ch_layouts = (const AVChannelLayout[]) { AV_CHANNEL_LAYOUT_MONO,
|
H A D | eac3enc.c | 270 .p.ch_layouts = ff_ac3_ch_layouts,
|
H A D | adpcmenc.c | 970 static const AVChannelLayout ch_layouts[] = { variable 1005 .p.ch_layouts = ch_layouts, \
|
H A D | g722enc.c | 388 .p.ch_layouts = (const AVChannelLayout[]){
|
H A D | libfdk-aacenc.c | 498 .p.ch_layouts = aac_ch_layouts,
|
/third_party/ffmpeg/doc/examples/ |
H A D | encode_audio.c | 78 if (!codec->ch_layouts) in select_channel_layout() 81 p = codec->ch_layouts; in select_channel_layout()
|
/third_party/ffmpeg/libavcodec/tests/ |
H A D | avcodec.c | 81 if (codec->ch_layouts || codec->sample_fmts || in main()
|