| 404 | }; |
| 405 | |
| 406 | static InputStreamPtr |
| 407 | wavpack_open_wvc(DecoderClient &client, std::string_view uri) |
| 408 | { |
| 409 | try { |
| 410 | return client.OpenUri(fmt::format("{}c", uri)); |
| 411 | } catch (...) { |
| 412 | return nullptr; |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | /* |
| 417 | * Decodes a stream. |
no test coverage detected