Commit b1fe7940 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/split: support any channel count for asplit filter

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7042a55c
......@@ -32,6 +32,7 @@
#include "avfilter.h"
#include "audio.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
......@@ -143,6 +144,7 @@ AVFilter ff_af_asplit = {
.priv_class = &asplit_class,
.init = split_init,
.uninit = split_uninit,
.query_formats = ff_query_formats_all,
.inputs = avfilter_af_asplit_inputs,
.outputs = NULL,
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment