MCPcopy Create free account
hub / github.com/GStreamer/gst-python / build_pipeline

Method build_pipeline

old_examples/bps.py:62–71  ·  view source on GitHub ↗
(self, buffers)

Source from the content-addressed store, hash-verified

60 return sink
61
62 def build_pipeline(self, buffers):
63 pipeline = gst.Pipeline('pipeline')
64
65 src = self.fakesrc(buffers)
66 pipeline.add(src)
67 sink = self.fakesink()
68 pipeline.add(sink)
69 src.link(sink)
70
71 return pipeline
72
73 def idle(self, pipeline):
74 return pipeline.iterate()

Callers 1

runMethod · 0.95

Calls 4

fakesrcMethod · 0.95
fakesinkMethod · 0.95
addMethod · 0.80
linkMethod · 0.80

Tested by

no test coverage detected