(self, name)
| 32 | _state_changed = False |
| 33 | |
| 34 | def __init__(self, name): |
| 35 | # we need to call GObject's init to be able to do self.do_* |
| 36 | gobject.GObject.__init__(self) |
| 37 | # since we can't chain up to our parent's __init__, we set the |
| 38 | # name manually |
| 39 | self.set_property('name', name) |
| 40 | |
| 41 | def do_change_state(self, state_change): |
| 42 | if state_change == gst.STATE_CHANGE_PAUSED_TO_PLAYING: |
nothing calls this directly
no test coverage detected