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 unsigned avfilter_filter_pad_count(const AVFilter *filter, int is_output)
cdef struct AVFilter:
const char *name
const char *description
const AVFilterPad *inputs
const AVFilterPad *outputs
const AVClass *priv_class
int flags
cdef AVFilter* avfilter_get_by_name(const char *name)
cdef const AVFilter* av_filter_iterate(void **opaque)
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()
int avfilter_process_command(AVFilterContext *filter,
const char *cmd,
const char *arg,
char *res,
int res_len,
int flags)
cdef int AVFILTER_CMD_FLAG_FAST
cdef extern from "libavfilter/buffersink.h" nogil:
cdef void av_buffersink_set_frame_size(AVFilterContext *ctx, unsigned frame_size)
|