| 200 | } |
| 201 | |
| 202 | [[gnu::pure]] |
| 203 | static bool |
| 204 | decoder_check_plugin_suffix(const DecoderPlugin &plugin, |
| 205 | std::string_view suffix) noexcept |
| 206 | { |
| 207 | return !suffix.empty() && plugin.SupportsSuffix(suffix); |
| 208 | } |
| 209 | |
| 210 | static DecodeResult |
| 211 | decoder_run_stream_plugin(DecoderBridge &bridge, InputStream &is, |
no test coverage detected