gst1: Send in an argument to Gst.init

As of gst-python 1.5.2, the init call requires one argument. The
argument is a list of the command line options. I don't think we need to
send any.

This relates to #1432.
This commit is contained in:
Trygve Aaberge 2016-02-08 00:21:33 +01:00
parent e67e4c2c6e
commit 6cbfe86677

View File

@ -22,7 +22,7 @@ except ImportError:
"""))
raise
else:
Gst.is_initialized() or Gst.init()
Gst.is_initialized() or Gst.init([])
REQUIRED_GST_VERSION = (1, 2, 3)