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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
cimport libav as lib
from av.filter.graph cimport Graph
cdef _cinit_sentinel = object()
cdef class FilterLink:
def __cinit__(self, sentinel):
if sentinel is not _cinit_sentinel:
raise RuntimeError("cannot instantiate FilterLink")
@property
def input(self):
if self._input:
return self._input
cdef lib.AVFilterContext *cctx = self.ptr.src
cdef unsigned int i
for i in range(cctx.nb_outputs):
if self.ptr == cctx.outputs[i]:
break
else:
raise RuntimeError("could not find link in context")
ctx = self.graph._context_by_ptr[<long>cctx]
self._input = ctx.outputs[i]
return self._input
@property
def output(self):
if self._output:
return self._output
cdef lib.AVFilterContext *cctx = self.ptr.dst
cdef unsigned int i
for i in range(cctx.nb_inputs):
if self.ptr == cctx.inputs[i]:
break
else:
raise RuntimeError("could not find link in context")
try:
ctx = self.graph._context_by_ptr[<long>cctx]
except KeyError:
raise RuntimeError("could not find context in graph", (cctx.name, cctx.filter.name))
self._output = ctx.inputs[i]
return self._output
cdef FilterLink wrap_filter_link(Graph graph, lib.AVFilterLink *ptr):
cdef FilterLink link = FilterLink(_cinit_sentinel)
link.graph = graph
link.ptr = ptr
return link
cdef class FilterPad:
def __cinit__(self, sentinel):
if sentinel is not _cinit_sentinel:
raise RuntimeError("cannot construct FilterPad")
def __repr__(self):
_filter = self.filter.name
_io = "inputs" if self.is_input else "outputs"
return f"<av.FilterPad {_filter}.{_io}[{self.index}]: {self.name} ({self.type})>"
@property
def is_output(self):
return not self.is_input
@property
def name(self):
return lib.avfilter_pad_get_name(self.base_ptr, self.index)
cdef class FilterContextPad(FilterPad):
def __repr__(self):
_filter = self.filter.name
_io = "inputs" if self.is_input else "outputs"
context = self.context.name
return f"<av.FilterContextPad {_filter}.{_io}[{self.index}] of {context}: {self.name} ({self.type})>"
@property
def link(self):
if self._link:
return self._link
cdef lib.AVFilterLink **links = self.context.ptr.inputs if self.is_input else self.context.ptr.outputs
cdef lib.AVFilterLink *link = links[self.index]
if not link:
return
self._link = wrap_filter_link(self.context.graph, link)
return self._link
@property
def linked(self):
cdef FilterLink link = self.link
if link:
return link.input if self.is_input else link.output
cdef tuple alloc_filter_pads(Filter filter, const lib.AVFilterPad *ptr, bint is_input, FilterContext context=None):
if not ptr:
return ()
pads = []
# We need to be careful and check our bounds if we know what they are,
# since the arrays on a AVFilterContext are not NULL terminated.
cdef int i = 0
cdef int count
if context is None:
count = lib.avfilter_filter_pad_count(filter.ptr, not is_input)
else:
count = (context.ptr.nb_inputs if is_input else context.ptr.nb_outputs)
cdef FilterPad pad
while (i < count):
pad = FilterPad(_cinit_sentinel) if context is None else FilterContextPad(_cinit_sentinel)
pads.append(pad)
pad.filter = filter
pad.context = context
pad.is_input = is_input
pad.base_ptr = ptr
pad.index = i
i += 1
return tuple(pads)
|