(self, main_window)
| 495 | return True |
| 496 | |
| 497 | def run(self, main_window): |
| 498 | if self.start(main_window): |
| 499 | loop = gobject.MainLoop() |
| 500 | self.connect('done', lambda *x: gobject.idle_add(loop.quit)) |
| 501 | loop.run() |
| 502 | else: |
| 503 | self.resolution = CANCELLED |
| 504 | return self.resolution |
| 505 | |
| 506 | class ResyncBin(gst.Bin): |
| 507 | def __init__(self, sync_points, maxdiff): |
no test coverage detected