You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the payload format numbers for video and audio in a stream are the same, the video does not display.
Steps to Reproduce
Ensure that the payload format numbers for both video and audio in a stream are set to the same value.
Attempt to display the video stream.
Expected Behavior
The video stream should display correctly, regardless of the payload format numbers.
Actual Behavior
The video stream does not display when the payload format numbers for video and audio are the same.
Workaround
To focus on receiving only the video stream, I use the following code:
while(!string.IsNullOrEmpty(line=sdpStreamReader.ReadLine())){if(line[0]=='m'){ParseMediaLine(line);}elseif(line[0]=='a'){ParseAttributesLine(line);}if(line.Contains("track1")){break;}}Theloop stops reading lines once it encounters a line containing "track1",focusingthe parsing process on the relevant video stream data.
The text was updated successfully, but these errors were encountered:
Bug Description
When the payload format numbers for video and audio in a stream are the same, the video does not display.
Steps to Reproduce
Expected Behavior
The video stream should display correctly, regardless of the payload format numbers.
Actual Behavior
The video stream does not display when the payload format numbers for video and audio are the same.
Workaround
To focus on receiving only the video stream, I use the following code:
The text was updated successfully, but these errors were encountered: