Ignore:
Timestamp:
12/21/14 10:20:57 (9 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Fixed the handling of the Gst library with PyGTK

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/common.py

    r575 r585  
    2727        import gst
    2828
     29        def gst_init():
     30            pass
     31
    2932        def gst_element_factory_make(what):
    3033            return gst.element_factory_make(what)
     
    4346        from gi.repository import Gst as gst
    4447
     48        def gst_init():
     49            gst.init()
     50
    4551        def gst_element_factory_make(what):
    4652            return gst.ElementFactory.make(what)
Note: See TracChangeset for help on using the changeset viewer.