diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-19 10:37:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-22 21:33:26 +0200 |
commit | 43c7a01e9879640859d32b062ac01700e1333c7a (patch) | |
tree | 041498d8acb9134fce0b26b4d8af986b65b6ceb6 /tools/lavfi-showfiltfmts.c | |
parent | 88c3b87bd81829d1b7171cb26e5ef5a564dbd96a (diff) | |
download | ffmpeg-43c7a01e9879640859d32b062ac01700e1333c7a.tar.gz |
lavfi: remove avfilter_default_* from public API on next bump.
Those functions are only useful inside filters. It is better to not
support user filters until the API is more stable.
Diffstat (limited to 'tools/lavfi-showfiltfmts.c')
-rw-r--r-- | tools/lavfi-showfiltfmts.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lavfi-showfiltfmts.c b/tools/lavfi-showfiltfmts.c index d25cf3e138..146f0cd081 100644 --- a/tools/lavfi-showfiltfmts.c +++ b/tools/lavfi-showfiltfmts.c @@ -21,6 +21,7 @@ #include "libavformat/avformat.h" #include "libavutil/pixdesc.h" #include "libavfilter/avfilter.h" +#include "libavfilter/formats.h" int main(int argc, char **argv) { @@ -75,7 +76,7 @@ int main(int argc, char **argv) if (filter->query_formats) filter->query_formats(filter_ctx); else - avfilter_default_query_formats(filter_ctx); + ff_default_query_formats(filter_ctx); /* print the supported formats in input */ for (i = 0; i < filter_ctx->input_count; i++) { |