Libav
filtfmts.c
Go to the documentation of this file.
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 <stdio.h>
22 
23 #include "libavutil/mem.h"
24 #include "libavutil/pixdesc.h"
25 
26 #include "libavfilter/avfilter.h"
27 #include "libavfilter/formats.h"
28 
29 int main(int argc, char **argv)
30 {
32  AVFilterContext *filter_ctx;
33  AVFilterGraph *graph_ctx;
34  const char *filter_name;
35  const char *filter_args = NULL;
36  int i, j;
37 
39 
40  if (!argv[1]) {
41  fprintf(stderr, "Missing filter name as argument\n");
42  return 1;
43  }
44 
45  filter_name = argv[1];
46  if (argv[2])
47  filter_args = argv[2];
48 
49  /* allocate graph */
50  graph_ctx = avfilter_graph_alloc();
51  if (!graph_ctx)
52  return 1;
53 
55 
56  /* get a corresponding filter and open it */
57  if (!(filter = avfilter_get_by_name(filter_name))) {
58  fprintf(stderr, "Unrecognized filter with name '%s'\n", filter_name);
59  return 1;
60  }
61 
62  /* open filter and add it to the graph */
63  if (!(filter_ctx = avfilter_graph_alloc_filter(graph_ctx, filter, filter_name))) {
64  fprintf(stderr, "Impossible to open filter with name '%s'\n",
65  filter_name);
66  return 1;
67  }
68  if (avfilter_init_str(filter_ctx, filter_args) < 0) {
69  fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
70  filter_name, filter_args);
71  return 1;
72  }
73 
74  /* create a link for each of the input pads */
75  for (i = 0; i < filter_ctx->nb_inputs; i++) {
76  AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
77  link->type = avfilter_pad_get_type(filter_ctx->filter->inputs, i);
78  filter_ctx->inputs[i] = link;
79  }
80  for (i = 0; i < filter_ctx->nb_outputs; i++) {
81  AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
82  link->type = avfilter_pad_get_type(filter_ctx->filter->outputs, i);
83  filter_ctx->outputs[i] = link;
84  }
85 
86  if (filter->query_formats)
87  filter->query_formats(filter_ctx);
88  else
89  ff_default_query_formats(filter_ctx);
90 
91  /* print the supported formats in input */
92  for (i = 0; i < filter_ctx->nb_inputs; i++) {
93  AVFilterFormats *fmts = filter_ctx->inputs[i]->out_formats;
94  for (j = 0; j < fmts->nb_formats; j++)
95  printf("INPUT[%d] %s: %s\n",
96  i, avfilter_pad_get_name(filter_ctx->filter->inputs, i),
97  av_get_pix_fmt_name(fmts->formats[j]));
98  }
99 
100  /* print the supported formats in output */
101  for (i = 0; i < filter_ctx->nb_outputs; i++) {
102  AVFilterFormats *fmts = filter_ctx->outputs[i]->in_formats;
103  for (j = 0; j < fmts->nb_formats; j++)
104  printf("OUTPUT[%d] %s: %s\n",
105  i, avfilter_pad_get_name(filter_ctx->filter->outputs, i),
106  av_get_pix_fmt_name(fmts->formats[j]));
107  }
108 
109  avfilter_free(filter_ctx);
110  avfilter_graph_free(&graph_ctx);
111  fflush(stdout);
112  return 0;
113 }
void avfilter_free(AVFilterContext *filter)
Free a filter context.
Definition: avfilter.c:491
static const char * filter_name(void *p)
Definition: avfilter.c:330
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
Definition: avfiltergraph.c:71
Main libavfilter public API header.
memory handling functions
void av_log_set_level(int level)
Set the log level.
Definition: log.c:190
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:718
void avfilter_graph_free(AVFilterGraph **graph)
Free a graph, destroy its links, and set *graph to NULL.
int(* query_formats)(AVFilterContext *)
Query formats supported by the filter on its inputs and outputs.
Definition: avfilter.h:544
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:571
void avfilter_register_all(void)
Initialize the filter system.
Definition: allfilters.c:39
unsigned nb_outputs
number of output pads
Definition: avfilter.h:582
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:144
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: avfilter.c:278
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
Definition: mpegaudioenc.c:307
unsigned nb_inputs
number of input pads
Definition: avfilter.h:575
unsigned nb_formats
number of formats
Definition: formats.h:65
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:596
const AVFilterPad * inputs
List of inputs, terminated by a zeroed element.
Definition: avfilter.h:441
int ff_default_query_formats(AVFilterContext *ctx)
Definition: formats.c:385
NULL
Definition: eval.c:55
Filter definition.
Definition: avfilter.h:421
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
Definition: avfilter.c:713
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:578
AVFilterContext * avfilter_graph_alloc_filter(AVFilterGraph *graph, const AVFilter *filter, const char *name)
Create a new filter instance in a filter graph.
int main(int argc, char **argv)
Definition: filtfmts.c:29
A list of supported formats for one end of a filter link.
Definition: formats.h:64
An instance of a filter.
Definition: avfilter.h:563
const AVFilterPad * outputs
List of outputs, terminated by a zeroed element.
Definition: avfilter.h:449
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:1540
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:566
int * formats
list of media formats
Definition: formats.h:66