diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-28 21:51:03 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-17 18:05:38 +0200 |
commit | 8fe0c527f33fe6d2e89d62a23ae912553572452b (patch) | |
tree | d955208bfcffbad28d1aedce78b758effe17e8b6 /libavfilter/internal.h | |
parent | 85afbb1d00d58812df5d634e946b2fcf653bcd8e (diff) | |
download | ffmpeg-8fe0c527f33fe6d2e89d62a23ae912553572452b.tar.gz |
lavfi: add LUT (LookUp Table) generic filters
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 64b3f3b865..0630e9b7d6 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -52,4 +52,7 @@ int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx); /** default handler for freeing audio/video buffer when there are no references left */ void ff_avfilter_default_free_buffer(AVFilterBuffer *buf); +/** Tell is a format is contained in the provided list terminated by -1. */ +int ff_fmt_is_in(int fmt, const int *fmts); + #endif /* AVFILTER_INTERNAL_H */ |