summaryrefslogtreecommitdiff
path: root/libavfilter/formats.h
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-12-26 16:46:43 +0100
committerNicolas George <nicolas.george@normalesup.org>2013-01-26 11:15:38 +0100
commit7bb98b753b4502c08f5a9fd6785c91612beb36e9 (patch)
tree85789c0579b9861700bae6d2c51162ed36ed2e6f /libavfilter/formats.h
parentb6afb2dde1aa92ff8fac020f34fc436fede388b0 (diff)
downloadffmpeg-7bb98b753b4502c08f5a9fd6785c91612beb36e9.tar.gz
lavfi: implement ff_all_channel_counts().
Diffstat (limited to 'libavfilter/formats.h')
-rw-r--r--libavfilter/formats.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavfilter/formats.h b/libavfilter/formats.h
index 438267fc16..4ef63df27a 100644
--- a/libavfilter/formats.h
+++ b/libavfilter/formats.h
@@ -123,11 +123,17 @@ AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
/**
* Construct an empty AVFilterChannelLayouts/AVFilterFormats struct --
- * representing any channel layout/sample rate.
+ * representing any channel layout (with known disposition)/sample rate.
*/
AVFilterChannelLayouts *ff_all_channel_layouts(void);
AVFilterFormats *ff_all_samplerates(void);
+/**
+ * Construct an AVFilterChannelLayouts coding for any channel layout, with
+ * known or unknown disposition.
+ */
+AVFilterChannelLayouts *ff_all_channel_counts(void);
+
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);