| 187 | } |
| 188 | |
| 189 | void OnStop() { |
| 190 | LOG(INFO) << "OnStop of PlayingDummyStream=" << this; |
| 191 | if (_state.exchange(STATE_STOPPED) == STATE_PLAYING) { |
| 192 | bthread_stop(_play_thread); |
| 193 | bthread_join(_play_thread, NULL); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | void SendData(); |
| 198 |
nothing calls this directly
no test coverage detected