FFmpeg
1.2.12
Main Page
Related Pages
Modules
Data Structures
Files
Examples
File List
Globals
debian
tmp
usr
include
libavfilter
avfiltergraph.h
Go to the documentation of this file.
1
/*
2
* Filter graphs
3
* copyright (c) 2007 Bobby Bingham
4
*
5
* This file is part of FFmpeg.
6
*
7
* FFmpeg is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU Lesser General Public
9
* License as published by the Free Software Foundation; either
10
* version 2.1 of the License, or (at your option) any later version.
11
*
12
* FFmpeg is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* Lesser General Public License for more details.
16
*
17
* You should have received a copy of the GNU Lesser General Public
18
* License along with FFmpeg; if not, write to the Free Software
19
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
*/
21
22
#ifndef AVFILTER_AVFILTERGRAPH_H
23
#define AVFILTER_AVFILTERGRAPH_H
24
25
#include "
avfilter.h
"
26
#include "libavutil/log.h"
27
28
typedef
struct
AVFilterGraph
{
29
const
AVClass
*
av_class
;
30
unsigned
filter_count
;
31
AVFilterContext
**
filters
;
32
33
char
*
scale_sws_opts
;
34
char
*
resample_lavr_opts
;
35
char
*
aresample_swr_opts
;
36
44
AVFilterLink
**
sink_links
;
45
int
sink_links_count
;
46
47
unsigned
disable_auto_convert
;
48
}
AVFilterGraph
;
49
53
AVFilterGraph
*
avfilter_graph_alloc
(
void
);
54
61
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*graph,
char
*
name
);
62
69
int
avfilter_graph_add_filter
(
AVFilterGraph
*graphctx,
AVFilterContext
*
filter
);
70
84
int
avfilter_graph_create_filter
(
AVFilterContext
**filt_ctx,
AVFilter
*
filt
,
85
const
char
*
name
,
const
char
*args,
void
*opaque,
86
AVFilterGraph
*graph_ctx);
87
96
void
avfilter_graph_set_auto_convert
(
AVFilterGraph
*graph,
unsigned
flags
);
97
98
enum
{
99
AVFILTER_AUTO_CONVERT_ALL
= 0,
100
AVFILTER_AUTO_CONVERT_NONE
= -1,
101
};
102
110
int
avfilter_graph_config
(
AVFilterGraph
*graphctx,
void
*log_ctx);
111
116
void
avfilter_graph_free
(
AVFilterGraph
**graph);
117
127
typedef
struct
AVFilterInOut
{
129
char
*
name
;
130
132
AVFilterContext
*
filter_ctx
;
133
135
int
pad_idx
;
136
138
struct
AVFilterInOut
*
next
;
139
}
AVFilterInOut
;
140
146
AVFilterInOut
*
avfilter_inout_alloc
(
void
);
147
152
void
avfilter_inout_free
(
AVFilterInOut
**inout);
153
167
int
avfilter_graph_parse
(
AVFilterGraph
*graph,
const
char
*
filters
,
168
AVFilterInOut
**
inputs
,
AVFilterInOut
**
outputs
,
169
void
*log_ctx);
170
201
int
avfilter_graph_parse2
(
AVFilterGraph
*graph,
const
char
*
filters
,
202
AVFilterInOut
**
inputs
,
203
AVFilterInOut
**
outputs
);
204
205
221
int
avfilter_graph_send_command
(
AVFilterGraph
*graph,
const
char
*target,
const
char
*cmd,
const
char
*
arg
,
char
*res,
int
res_len,
int
flags
);
222
238
int
avfilter_graph_queue_command
(
AVFilterGraph
*graph,
const
char
*target,
const
char
*cmd,
const
char
*
arg
,
int
flags
,
double
ts);
239
240
249
char
*
avfilter_graph_dump
(
AVFilterGraph
*graph,
const
char
*
options
);
250
269
int
avfilter_graph_request_oldest
(
AVFilterGraph
*graph);
270
271
#endif
/* AVFILTER_AVFILTERGRAPH_H */
Generated on Thu Feb 12 2015 17:56:50 for FFmpeg by
1.8.1.2