| 320 | } |
| 321 | |
| 322 | static void Launch(WebPWorker* const worker) { |
| 323 | #ifdef WEBP_USE_THREAD |
| 324 | ChangeState(worker, WORK); |
| 325 | #else |
| 326 | Execute(worker); |
| 327 | #endif |
| 328 | } |
| 329 | |
| 330 | static void End(WebPWorker* const worker) { |
| 331 | #ifdef WEBP_USE_THREAD |
nothing calls this directly
no test coverage detected