We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://www.rfc-editor.org/rfc/rfc5576, for example, this line:
a=ssrc:3761382600 cname:user1066417796@host-9f2666a9
Is currently parsed as:
Attribute { attribute: "ssrc", value: Some( "3761382600 cname:user1066417796@host-9f2666a9", ), },
But it should be parsed as something like:
SourceAttribute { ssrc: 3761382600, attributes: [ Attribute { attribute: "cname", value: Some("user1066417796@host-9f2666a9"), }, ] }
And stored under a new field in the Media struct called source_attributes: Vec<SourceAttribute>.
Media
source_attributes: Vec<SourceAttribute>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://www.rfc-editor.org/rfc/rfc5576, for example, this line:
a=ssrc:3761382600 cname:user1066417796@host-9f2666a9
Is currently parsed as:
But it should be parsed as something like:
And stored under a new field in the
Media
struct calledsource_attributes: Vec<SourceAttribute>
.The text was updated successfully, but these errors were encountered: