2010-05-24 20:38:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Stefano Sabatini
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-05-24 20:38:50 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-05-24 20:38:50 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-05-24 20:38:50 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-05-24 20:38:50 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-07-04 15:51:10 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-05-24 20:38:50 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
|
|
|
#include "libavfilter/avfilter.h"
|
2012-05-19 08:37:56 +00:00
|
|
|
#include "libavfilter/formats.h"
|
2010-05-24 20:38:50 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
AVFilter *filter;
|
|
|
|
AVFilterContext *filter_ctx;
|
2013-07-16 13:05:01 +00:00
|
|
|
AVFilterGraph *graph_ctx;
|
2010-05-24 20:38:50 +00:00
|
|
|
const char *filter_name;
|
|
|
|
const char *filter_args = NULL;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
av_log_set_level(AV_LOG_DEBUG);
|
|
|
|
|
|
|
|
if (!argv[1]) {
|
|
|
|
fprintf(stderr, "Missing filter name as argument\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
filter_name = argv[1];
|
|
|
|
if (argv[2])
|
|
|
|
filter_args = argv[2];
|
|
|
|
|
2013-07-16 13:05:01 +00:00
|
|
|
/* allocate graph */
|
|
|
|
graph_ctx = avfilter_graph_alloc();
|
|
|
|
if (!graph_ctx)
|
|
|
|
return 1;
|
|
|
|
|
2010-05-24 20:38:50 +00:00
|
|
|
avfilter_register_all();
|
|
|
|
|
|
|
|
/* get a corresponding filter and open it */
|
|
|
|
if (!(filter = avfilter_get_by_name(filter_name))) {
|
|
|
|
fprintf(stderr, "Unrecognized filter with name '%s'\n", filter_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-07-16 13:05:01 +00:00
|
|
|
/* open filter and add it to the graph */
|
|
|
|
if (!(filter_ctx = avfilter_graph_alloc_filter(graph_ctx, filter, filter_name))) {
|
2012-01-25 11:25:11 +00:00
|
|
|
fprintf(stderr, "Impossible to open filter with name '%s'\n",
|
2012-01-25 14:03:18 +00:00
|
|
|
filter_name);
|
2010-05-24 20:38:50 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2013-03-17 18:44:24 +00:00
|
|
|
if (avfilter_init_str(filter_ctx, filter_args) < 0) {
|
2012-01-25 14:03:18 +00:00
|
|
|
fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
|
|
|
|
filter_name, filter_args);
|
2010-05-24 20:38:50 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a link for each of the input pads */
|
2013-11-04 13:56:28 +00:00
|
|
|
for (i = 0; i < filter_ctx->nb_inputs; i++) {
|
2010-08-06 22:25:42 +00:00
|
|
|
AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
|
|
|
|
link->type = filter_ctx->filter->inputs[i].type;
|
2010-05-24 20:38:50 +00:00
|
|
|
filter_ctx->inputs[i] = link;
|
|
|
|
}
|
2013-11-04 13:56:28 +00:00
|
|
|
for (i = 0; i < filter_ctx->nb_outputs; i++) {
|
2010-08-06 22:25:42 +00:00
|
|
|
AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
|
2010-08-17 18:07:57 +00:00
|
|
|
link->type = filter_ctx->filter->outputs[i].type;
|
2010-05-24 20:38:50 +00:00
|
|
|
filter_ctx->outputs[i] = link;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filter->query_formats)
|
|
|
|
filter->query_formats(filter_ctx);
|
|
|
|
else
|
2012-05-19 08:37:56 +00:00
|
|
|
ff_default_query_formats(filter_ctx);
|
2010-05-24 20:38:50 +00:00
|
|
|
|
|
|
|
/* print the supported formats in input */
|
2013-11-04 13:56:28 +00:00
|
|
|
for (i = 0; i < filter_ctx->nb_inputs; i++) {
|
2010-05-24 20:38:50 +00:00
|
|
|
AVFilterFormats *fmts = filter_ctx->inputs[i]->out_formats;
|
2013-03-31 14:38:07 +00:00
|
|
|
for (j = 0; j < fmts->nb_formats; j++)
|
2010-08-01 11:34:56 +00:00
|
|
|
printf("INPUT[%d] %s: %s\n",
|
|
|
|
i, filter_ctx->filter->inputs[i].name,
|
2012-10-06 11:29:37 +00:00
|
|
|
av_get_pix_fmt_name(fmts->formats[j]));
|
2010-05-24 20:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* print the supported formats in output */
|
2013-11-04 13:56:28 +00:00
|
|
|
for (i = 0; i < filter_ctx->nb_outputs; i++) {
|
2010-05-24 20:38:50 +00:00
|
|
|
AVFilterFormats *fmts = filter_ctx->outputs[i]->in_formats;
|
2013-03-31 14:38:07 +00:00
|
|
|
for (j = 0; j < fmts->nb_formats; j++)
|
2010-08-01 11:34:56 +00:00
|
|
|
printf("OUTPUT[%d] %s: %s\n",
|
|
|
|
i, filter_ctx->filter->outputs[i].name,
|
2012-10-06 11:29:37 +00:00
|
|
|
av_get_pix_fmt_name(fmts->formats[j]));
|
2010-05-24 20:38:50 +00:00
|
|
|
}
|
|
|
|
|
2010-11-08 12:32:39 +00:00
|
|
|
avfilter_free(filter_ctx);
|
2013-07-16 13:05:01 +00:00
|
|
|
avfilter_graph_free(&graph_ctx);
|
2010-05-24 20:38:50 +00:00
|
|
|
fflush(stdout);
|
|
|
|
return 0;
|
|
|
|
}
|