| 370 | } |
| 371 | |
| 372 | static void thread_set_name(Muxer *mux) |
| 373 | { |
| 374 | char name[16]; |
| 375 | snprintf(name, sizeof(name), "mux%d:%s", |
| 376 | mux->of.index, mux->fc->oformat->name); |
| 377 | ff_thread_setname(name); |
| 378 | } |
| 379 | |
| 380 | static void mux_thread_uninit(MuxThreadContext *mt) |
| 381 | { |
no test coverage detected