From 699b286a21456bc24d60383a313ac61eed44a919 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Wed, 26 Dec 2012 16:52:15 +0100 Subject: [PATCH] lavfi/af_anull: accept unknown channel layouts. --- libavfilter/af_anull.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/af_anull.c b/libavfilter/af_anull.c index 40af7b8bc7..c61da3b4f1 100644 --- a/libavfilter/af_anull.c +++ b/libavfilter/af_anull.c @@ -50,6 +50,8 @@ AVFilter avfilter_af_anull = { .priv_size = 0, + .query_formats = ff_query_formats_all, + .inputs = avfilter_af_anull_inputs, .outputs = avfilter_af_anull_outputs,