| 192 | } |
| 193 | |
| 194 | static xo_encoder_node_t * |
| 195 | xo_encoder_find (const char *name) |
| 196 | { |
| 197 | xo_encoder_node_t *xep; |
| 198 | |
| 199 | xo_encoder_list_init(&xo_encoders); |
| 200 | |
| 201 | XO_ENCODER_LIST_FOREACH(xep, &xo_encoders) { |
| 202 | if (xo_streq(xep->xe_name, name)) |
| 203 | return xep; |
| 204 | } |
| 205 | |
| 206 | return NULL; |
| 207 | } |
| 208 | |
| 209 | static xo_encoder_node_t * |
| 210 | xo_encoder_discover (const char *name) |
no test coverage detected