mirror of https://git.ffmpeg.org/ffmpeg.git
lavd/lavfi: support unknown channel layouts.
This commit is contained in:
parent
eeb975f5cd
commit
863fb11f63
|
@ -248,6 +248,10 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
|
||||||
ret = av_opt_set_int_list(sink, "sample_fmts", sample_fmts, AV_SAMPLE_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
|
ret = av_opt_set_int_list(sink, "sample_fmts", sample_fmts, AV_SAMPLE_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto end;
|
goto end;
|
||||||
|
ret = av_opt_set_int(sink, "all_channel_counts", 1,
|
||||||
|
AV_OPT_SEARCH_CHILDREN);
|
||||||
|
if (ret < 0)
|
||||||
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
lavfi->sinks[i] = sink;
|
lavfi->sinks[i] = sink;
|
||||||
|
|
Loading…
Reference in New Issue