| 178 | } |
| 179 | |
| 180 | static void |
| 181 | xo_encoder_setup (void) |
| 182 | { |
| 183 | static int initted; |
| 184 | if (!initted) { |
| 185 | initted = 1; |
| 186 | |
| 187 | xo_string_list_init(&xo_encoder_path); |
| 188 | xo_encoder_list_init(&xo_encoders); |
| 189 | |
| 190 | xo_encoder_path_add(XO_ENCODERDIR); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | static xo_encoder_node_t * |
| 195 | xo_encoder_find (const char *name) |
no test coverage detected