| 16 | } |
| 17 | |
| 18 | VideoPlayer::~VideoPlayer() |
| 19 | { |
| 20 | // Ensure to free player memory |
| 21 | Stop(); |
| 22 | if (_player.Backend) |
| 23 | _player.Backend->Player_Destroy(_player); |
| 24 | } |
| 25 | |
| 26 | void VideoPlayer::SetIsLooping(bool value) |
| 27 | { |
nothing calls this directly
no test coverage detected