]> git.sesse.net Git - ffmpeg/blob - tools/lavfi-showfiltfmts.c
cosmetics: Align some AVInput/OutputFormat declarations
[ffmpeg] / tools / lavfi-showfiltfmts.c
1 /*
2  * Copyright (c) 2009 Stefano Sabatini
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "libavformat/avformat.h"
22 #include "libavutil/pixdesc.h"
23 #include "libavfilter/avfilter.h"
24
25 int main(int argc, char **argv)
26 {
27     AVFilter *filter;
28     AVFilterContext *filter_ctx;
29     const char *filter_name;
30     const char *filter_args = NULL;
31     int i, j;
32
33     av_log_set_level(AV_LOG_DEBUG);
34
35     if (!argv[1]) {
36         fprintf(stderr, "Missing filter name as argument\n");
37         return 1;
38     }
39
40     filter_name = argv[1];
41     if (argv[2])
42         filter_args = argv[2];
43
44     avfilter_register_all();
45
46     /* get a corresponding filter and open it */
47     if (!(filter = avfilter_get_by_name(filter_name))) {
48         fprintf(stderr, "Unrecognized filter with name '%s'\n", filter_name);
49         return 1;
50     }
51
52     if (avfilter_open(&filter_ctx, filter, NULL) < 0) {
53         fprintf(stderr, "Impossible to open filter with name '%s'\n",
54                 filter_name);
55         return 1;
56     }
57     if (avfilter_init_filter(filter_ctx, filter_args, NULL) < 0) {
58         fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
59                 filter_name, filter_args);
60         return 1;
61     }
62
63     /* create a link for each of the input pads */
64     for (i = 0; i < filter_ctx->input_count; i++) {
65         AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
66         link->type = filter_ctx->filter->inputs[i].type;
67         filter_ctx->inputs[i] = link;
68     }
69     for (i = 0; i < filter_ctx->output_count; i++) {
70         AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
71         link->type = filter_ctx->filter->outputs[i].type;
72         filter_ctx->outputs[i] = link;
73     }
74
75     if (filter->query_formats)
76         filter->query_formats(filter_ctx);
77     else
78         avfilter_default_query_formats(filter_ctx);
79
80     /* print the supported formats in input */
81     for (i = 0; i < filter_ctx->input_count; i++) {
82         AVFilterFormats *fmts = filter_ctx->inputs[i]->out_formats;
83         for (j = 0; j < fmts->format_count; j++)
84             printf("INPUT[%d] %s: %s\n",
85                    i, filter_ctx->filter->inputs[i].name,
86                    av_pix_fmt_descriptors[fmts->formats[j]].name);
87     }
88
89     /* print the supported formats in output */
90     for (i = 0; i < filter_ctx->output_count; i++) {
91         AVFilterFormats *fmts = filter_ctx->outputs[i]->in_formats;
92         for (j = 0; j < fmts->format_count; j++)
93             printf("OUTPUT[%d] %s: %s\n",
94                    i, filter_ctx->filter->outputs[i].name,
95                    av_pix_fmt_descriptors[fmts->formats[j]].name);
96     }
97
98     avfilter_free(filter_ctx);
99     fflush(stdout);
100     return 0;
101 }