| 274 | } |
| 275 | |
| 276 | void |
| 277 | xo_encoder_unregister (const char *name) |
| 278 | { |
| 279 | xo_encoder_setup(); |
| 280 | |
| 281 | xo_encoder_node_t *xep = xo_encoder_find(name); |
| 282 | if (xep) { |
| 283 | TAILQ_REMOVE(&xo_encoders, xep, xe_link); |
| 284 | xo_free(xep); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | int |
| 289 | xo_encoder_init (xo_handle_t *xop, const char *name) |
nothing calls this directly
no test coverage detected