Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

H264inclient #398

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

olofkallander
Copy link
Contributor

Added h264 support in simple client and allow selection of h264 at allocation of conference if h264 is also enabled in config.json.
Default is vp8.

@@ -10,6 +10,7 @@ struct AllocateConference
{
utils::Optional<uint32_t> lastN;
bool useGlobalPort = true;
bool useH264 = false;
Copy link
Member

@RicardoMDomingues RicardoMDomingues Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we do it a little more generic? So if we want to support new video codec ion future (like vp9, vp10). We will flood this with booleans.

I believe we should have a field more generic, like:
videoCodec = "default | vp8 | h264" // default is the one that is on smb config

If it's given an unsupported value, http request should fail with 400.

This way we could add support to new codecs without API changes

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, I will fix that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants