| 481 | } |
| 482 | |
| 483 | bool utils::IsVideoSupported(uint32_t width, uint32_t height) |
| 484 | { |
| 485 | if (width > 1280 || height > 720) |
| 486 | { |
| 487 | return false; |
| 488 | } |
| 489 | |
| 490 | return true; |
| 491 | } |
| 492 | |
| 493 | bool utils::IsAudioSupported(uint32_t ch, uint32_t srate) |
| 494 | { |
nothing calls this directly
no outgoing calls
no test coverage detected