Skip to content

Commit 302bbb9

Browse files
committed
fix some wording
1 parent 98f2214 commit 302bbb9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • docs/contributing/reverse-engineering/voice

docs/contributing/reverse-engineering/voice/webrtc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ An incoming **Op Code 12 Video** event signals that a user in the voice channel
175175
}
176176
```
177177

178-
A value > 0 for the SSRC indicates that the user is publishing that track, while a value of 0 for the track indicates the user is not currently publishing that track. If you receive a positive value SSRC for either audio, expect the PeerConnection onTrack event to be fired and to receive a track matching that SSRC. For video, the video_ssrc has to be > 0 AND you have to have at least 1 object wtih `active=true`.
178+
A value > 0 for the SSRC indicates that the user is publishing that track, while a value of 0 for the track indicates the user is not currently publishing that track. If you receive a positive value SSRC for either audio, expect the PeerConnection onTrack event to be fired and to receive a track matching that SSRC. For video, the video_ssrc has to be > 0 AND you have to have at least 1 stream with `active=true`.
179179

180180
### Client->Server Op Code 12 Video
181181

@@ -204,7 +204,7 @@ An outgoing **Op Code 12 Video** event signals that your client wants to change
204204
}
205205
```
206206

207-
Similarily, a value > 0 for the SSRC indicates that the user is publishing that track, while a value of 0 for the track indicates the user is not currently publishing that track. If you send a positive value for SSRC for audio, the server will be expecting for you to start sending a track matching that SSRC. For video, the video_ssrc has to be > 0 AND you have to have at least 1 object wtih `active=true`.
207+
Similarily, a value > 0 for the SSRC indicates that the user is publishing that track, while a value of 0 for the track indicates the user is not currently publishing that track. If you send a positive value for SSRC for audio, the server will be expecting for you to start sending a track matching that SSRC. For video, the video_ssrc has to be > 0 AND you have to have at least 1 stream with `active=true`.
208208

209209
## Other Voice Gateway events
210210

0 commit comments

Comments
 (0)