| 168 | } |
| 169 | |
| 170 | bool cOpenslesSource::startRecordingThread() { |
| 171 | if (!threadStarted_) { |
| 172 | // thread should only be created once, configureWrite could be called multiple times |
| 173 | threadStarted_ = true; |
| 174 | smileThreadCreate(recordingThread_, recordingThreadEntry, this); |
| 175 | } |
| 176 | return true; |
| 177 | } |
| 178 | |
| 179 | int cOpenslesSource::configureWriter(sDmLevelConfig &c) |
| 180 | { |
nothing calls this directly
no test coverage detected