forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathavfilter.pxd
More file actions
76 lines (54 loc) · 1.92 KB
/
Copy pathavfilter.pxd
File metadata and controls
76 lines (54 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
cdef extern from "libavfilter/avfilter.h" nogil:
cdef int avfilter_version()
cdef char* avfilter_configuration()
cdef char* avfilter_license()
cdef struct AVFilterPad:
# This struct is opaque.
pass
const char* avfilter_pad_get_name(const AVFilterPad *pads, int index)
AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int index)
cdef struct AVFilter:
AVClass *priv_class
const char *name
const char *description
const int flags
const AVFilterPad *inputs
const AVFilterPad *outputs
int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags)
cdef enum:
AVFILTER_FLAG_DYNAMIC_INPUTS
AVFILTER_FLAG_DYNAMIC_OUTPUTS
AVFILTER_FLAG_SLICE_THREADS
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
cdef AVFilter* avfilter_get_by_name(const char *name)
cdef struct AVFilterLink # Defined later.
cdef struct AVFilterContext:
AVClass *av_class
AVFilter *filter
char *name
unsigned int nb_inputs
AVFilterPad *input_pads
AVFilterLink **inputs
unsigned int nb_outputs
AVFilterPad *output_pads
AVFilterLink **outputs
cdef int avfilter_init_str(AVFilterContext *ctx, const char *args)
cdef int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
cdef void avfilter_free(AVFilterContext*)
cdef AVClass* avfilter_get_class()
cdef struct AVFilterLink:
AVFilterContext *src
AVFilterPad *srcpad
AVFilterContext *dst
AVFilterPad *dstpad
AVMediaType Type
int w
int h
AVRational sample_aspect_ratio
uint64_t channel_layout
int sample_rate
int format
AVRational time_base
# custom
cdef set pyav_get_available_filters()