| 491 | } |
| 492 | |
| 493 | bool utils::IsAudioSupported(uint32_t ch, uint32_t srate) |
| 494 | { |
| 495 | if (ch > 2 || srate > 48000) |
| 496 | { |
| 497 | return false; |
| 498 | } |
| 499 | |
| 500 | return true; |
| 501 | } |
| 502 | |
| 503 | bool utils::IsLocalPath(const char *path) |
| 504 | { |
nothing calls this directly
no outgoing calls
no test coverage detected