diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-12-26 16:52:15 +0100 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-01-26 11:15:38 +0100 |
commit | 699b286a21456bc24d60383a313ac61eed44a919 (patch) | |
tree | bf800ab03a77ed358ea139dfe8c1ffeff57b677a | |
parent | b00502457ac3007c051c811ad259acc970a6bcb9 (diff) | |
download | ffmpeg-699b286a21456bc24d60383a313ac61eed44a919.tar.gz |
lavfi/af_anull: accept unknown channel layouts.
-rw-r--r-- | libavfilter/af_anull.c | 2 |
1 files changed, 2 insertions, 0 deletions
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, |