MCPcopy Create free account
hub / github.com/GrapheneCt/NetStream / IsVideoSupported

Method IsVideoSupported

NetStream/source/utils.cpp:483–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

481}
482
483bool 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
493bool utils::IsAudioSupported(uint32_t ch, uint32_t srate)
494{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected