(self, main_window)
| 498 | return True |
| 499 | |
| 500 | def run(self, main_window): |
| 501 | if self.start(main_window): |
| 502 | loop = gobject.MainLoop() |
| 503 | self.connect('done', lambda *x: gobject.idle_add(loop.quit)) |
| 504 | loop.run() |
| 505 | else: |
| 506 | self.resolution = CANCELLED |
| 507 | return self.resolution |
| 508 | |
| 509 | class RemuxBin(gst.Bin): |
| 510 | def __init__(self, start_time, stop_time): |
no test coverage detected