forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathavfiltergraph.pxd
More file actions
51 lines (39 loc) · 1.25 KB
/
Copy pathavfiltergraph.pxd
File metadata and controls
51 lines (39 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
cdef extern from "libavfilter/avfilter.h" nogil:
cdef struct AVFilterGraph:
int nb_filters
AVFilterContext **filters
cdef struct AVFilterInOut:
char *name
AVFilterContext *filter_ctx
int pad_idx
AVFilterInOut *next
cdef AVFilterGraph* avfilter_graph_alloc()
cdef void avfilter_graph_free(AVFilterGraph **ptr)
cdef int avfilter_graph_parse2(
AVFilterGraph *graph,
const char *filter_str,
AVFilterInOut **inputs,
AVFilterInOut **outputs
)
cdef AVFilterContext* avfilter_graph_alloc_filter(
AVFilterGraph *graph,
const AVFilter *filter,
const char *name
)
cdef int avfilter_graph_create_filter(
AVFilterContext **filt_ctx,
AVFilter *filt,
const char *name,
const char *args,
void *opaque,
AVFilterGraph *graph_ctx
)
cdef int avfilter_link(
AVFilterContext *src,
unsigned int srcpad,
AVFilterContext *dst,
unsigned int dstpad
)
cdef int avfilter_graph_config(AVFilterGraph *graph, void *logctx)
cdef char* avfilter_graph_dump(AVFilterGraph *graph, const char *options)
cdef void avfilter_inout_free(AVFilterInOut **inout_list)