(self, messageAge, paused, position)
| 869 | return self._room.isPaused() and not paused or not self._room.isPaused() and paused |
| 870 | |
| 871 | def _updatePositionByAge(self, messageAge, paused, position): |
| 872 | if not paused: |
| 873 | position += messageAge |
| 874 | return position |
| 875 | |
| 876 | def updateState(self, position, paused, doSeek, messageAge): |
| 877 | pauseChanged = self.__hasPauseChanged(paused) |