summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-10-14 22:56:54 -0400
committerGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-10-17 18:58:38 -0400
commit62144b225d077b201a723d843d38c6d15cb087f9 (patch)
treeaf96927f7c7ac29d27afd87609ef174402025319 /libavfilter/internal.h
parent7303962f1467e302906561be53ca4d51abbe5522 (diff)
avfilter/internal: Doxygen for ff_fmt_is_in
This clarifies and adds Doxygen for ff_fmt_is_in. Reviewed-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r--libavfilter/internal.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index d92e1204f5..1cc6bf3b10 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -152,7 +152,15 @@ struct AVFilterInternal {
avfilter_execute_func *execute;
};
-/** Tell is a format is contained in the provided list terminated by -1. */
+/**
+ * Tell if an integer is contained in the provided -1-terminated list of integers.
+ * This is useful for determining (for instance) if an AVPixelFormat is in an
+ * array of supported formats.
+ *
+ * @param fmt provided format
+ * @param fmts -1-terminated list of formats
+ * @return 1 if present, 0 if absent
+ */
int ff_fmt_is_in(int fmt, const int *fmts);
/* Functions to parse audio format arguments */