| 121 | bool decoder_plugins_enabled[num_decoder_plugins]; |
| 122 | |
| 123 | const struct DecoderPlugin * |
| 124 | decoder_plugin_from_name(const char *name) noexcept |
| 125 | { |
| 126 | return decoder_plugins_find([=](const DecoderPlugin &plugin){ |
| 127 | return strcmp(plugin.name, name) == 0; |
| 128 | }); |
| 129 | } |
| 130 | |
| 131 | void |
| 132 | decoder_plugin_init_all(const ConfigData &config) |
no outgoing calls
no test coverage detected