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.
This commit is contained in:
parent
88c3b87bd8
commit
43c7a01e98
10 changed files with 81 additions and 16 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue