| 248 | } |
| 249 | |
| 250 | void shutdown(void) |
| 251 | { |
| 252 | deadYet = true; |
| 253 | int i; |
| 254 | for(i = 0; i < NFRAMES; i++) |
| 255 | cframes[i].signalReady(); // Release my thread |
| 256 | if(thread) |
| 257 | { |
| 258 | thread->stop(); delete thread; thread = NULL; |
| 259 | } |
| 260 | for(i = 0; i < NFRAMES; i++) |
| 261 | cframes[i].signalComplete(); // Release compressor |
| 262 | } |
| 263 | |
| 264 | private: |
| 265 |
nothing calls this directly
no test coverage detected