We're only considering a small subset of the Gstreamer elements
This commit is contained in:
parent
45086fb11d
commit
a452c49bd3
@ -71,7 +71,7 @@ def gstreamer_info():
|
|||||||
other = []
|
other = []
|
||||||
other.append('Python wrapper: gst-python %s' % (
|
other.append('Python wrapper: gst-python %s' % (
|
||||||
'.'.join(map(str, gst.get_pygst_version()))))
|
'.'.join(map(str, gst.get_pygst_version()))))
|
||||||
other.append('Elements:')
|
other.append('Relevant elements:')
|
||||||
for name, status in _gstreamer_check_elements():
|
for name, status in _gstreamer_check_elements():
|
||||||
other.append(' %s: %s' % (name, status))
|
other.append(' %s: %s' % (name, status))
|
||||||
return {
|
return {
|
||||||
|
|||||||
@ -69,7 +69,7 @@ class DepsTest(unittest.TestCase):
|
|||||||
self.assertIn('gst', result['path'])
|
self.assertIn('gst', result['path'])
|
||||||
self.assertIn('Python wrapper: gst-python', result['other'])
|
self.assertIn('Python wrapper: gst-python', result['other'])
|
||||||
self.assertIn('.'.join(map(str, gst.get_pygst_version())), result['other'])
|
self.assertIn('.'.join(map(str, gst.get_pygst_version())), result['other'])
|
||||||
self.assertIn('Elements:', result['other'])
|
self.assertIn('Relevant elements:', result['other'])
|
||||||
|
|
||||||
def test_pykka_info(self):
|
def test_pykka_info(self):
|
||||||
result = deps.pykka_info()
|
result = deps.pykka_info()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user