(self, completed)
| 340 | self.progress.set_fraction(1.0 - float(remaining) / dur) |
| 341 | |
| 342 | def set_completed(self, completed): |
| 343 | self.set_response_sensitive(CANCELLED, not completed) |
| 344 | self.set_response_sensitive(SUCCESS, completed) |
| 345 | |
| 346 | class Resynchronizer(gst.Pipeline): |
| 347 |
no outgoing calls
no test coverage detected