| 113 | } |
| 114 | |
| 115 | void VideoPlayer::Stop() |
| 116 | { |
| 117 | if (_state == States::Stopped) |
| 118 | return; |
| 119 | _state = States::Stopped; |
| 120 | if (_player.Backend) |
| 121 | _player.Backend->Player_Stop(_player); |
| 122 | } |
| 123 | |
| 124 | float VideoPlayer::GetTime() const |
| 125 | { |
no test coverage detected