| 129 | } |
| 130 | |
| 131 | void QtPlayer::Play() |
| 132 | { |
| 133 | // Set mode to playing, and speed to normal |
| 134 | mode = PLAYBACK_PLAY; |
| 135 | Speed(1); |
| 136 | |
| 137 | if (reader && !threads_started) { |
| 138 | // Start thread only once |
| 139 | p->startPlayback(); |
| 140 | threads_started = true; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | void QtPlayer::Loading() |
| 145 | { |
nothing calls this directly
no test coverage detected