gst1: Replace decodebin2 with decodebin

This commit is contained in:
Stein Magnus Jodal 2015-09-02 01:02:23 +02:00
parent 63750d28fb
commit 2920f83065

View File

@ -70,7 +70,7 @@ def _setup_pipeline(uri, proxy_config=None):
raise exceptions.ScannerError('GStreamer can not open: %s' % uri)
typefind = Gst.ElementFactory.make('typefind')
decodebin = Gst.ElementFactory.make('decodebin2')
decodebin = Gst.ElementFactory.make('decodebin')
pipeline = Gst.ElementFactory.make('pipeline')
for e in (src, typefind, decodebin):