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

IS05 interaction with IS04 test_15: Issue in counting undefined channels #817

Open
kaihagseth opened this issue Jun 15, 2023 · 3 comments
Open

Comments

@kaihagseth
Copy link

I get the following error message:
SDP 'channel-order' for Sender does not match channels its Source

The sender is configured as a source with four channels: one mono group, one group of one undefined channel, and one gorup of two undefined channels.

SDP:
...
a=rtpmap:97 L24/44100/4
a=fmtp:97 channel-order=SMPTE2110.(M, U01, U02); TSMODE=SAMP; TSDELAY=0
...

Source:
...
"channels": [
{
"label": "M1",
"symbol": "M1"
},
{
"label": "U01",
"symbol": "U01"
},
{
"label": "U01",
"symbol": "U01"
},
{
"label": "U02",
"symbol": "U02"
}
],
...

So if I am not mistaken, the source should show the undefined channels as a list of undefined channels in the group, while the SDP will list the groups. This seems to be the way it's working for other groupings at least. Is there an issue with the test or have we misunderstood the spec, and in that case, what should the channels array look like?

@garethsb
Copy link
Contributor

It's possible there's an issue with the test when there are two undefined groups in a row, I don't remember testing that before. Will check.

But also your SDP looks like it has white space after the commas in the list of channel groups, which I don't think is valid?

@kaihagseth
Copy link
Author

But also your SDP looks like it has white space after the commas in the list of channel groups, which I don't think is valid?

You are right, thanks for the heads up! We resolved that issue, on but the reported issue persists. Thank you for checking!

@garethsb
Copy link
Contributor

Yes, the testing tool translates your Source channels to channel-order=SMPTE2110.(M,U03) and reports no match. Will look for guidance on handling multiple Undefined groups.

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

No branches or pull requests

2 participants