Skip to content

Commit 6d67f23

Browse files
authored
Make docs smaller (#156)
1 parent dc1ec48 commit 6d67f23

File tree

10 files changed

+4
-4
lines changed

10 files changed

+4
-4
lines changed

guides/advanced/debugging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ Firstly, take a look at `chrome://webrtc-internals`. Make sure that there's noth
9494
your PeerConnection is in the `connected` state. Find the `inbound-rtp` section (either table with stats or graphs, the graph section
9595
will be called _Stats graphs for inbound-rtp (kind=video, mid=2, ...)_) related to your track.
9696

97-
![PeerConnection state](assets/state.png)
97+
![PeerConnection state](assets/state.jpg)
9898

9999
If you cannot find the `inbound-rtp` section, make sure you properly added and negotiated the tracks. The SDP offer and answer can be inspected in the API trace section of
100100
`chrome://webrtc-internals`.
101101

102-
![InboundRTP](assets/inbound.png)
102+
![InboundRTP](assets/inbound.jpg)
103103

104104
Assuming you have found your `inbound-rtp` section, take a look at `packetsReceived` graph.
105105

@@ -116,7 +116,7 @@ transceiver will drop all of the incoming packets. For instance, creating a `rec
116116
direction (not `sendonly`!) on the remote peer, which might be counterintuitive. Make sure you properly negotiated the session by inspecting the SDP offers and answers.
117117
If you're sure that the session was properly negotiated, reproduce the issue, create an RTP dump, and share it with us - this might be an Elixir WebRTC bug.
118118

119-
![CandidatePair](assets/pair.png)
119+
![CandidatePair](assets/pair.jpg)
120120

121121
#### 2. `packetsReceived` growing, but `framesDecoded` stays on 0 (in case of video)
122122

guides/assets/dashboard.mp4

-3.66 MB
Binary file not shown.

guides/assets/inbound.jpg

847 KB
Loading

guides/assets/inbound.png

-2.13 MB
Binary file not shown.

guides/assets/pair.jpg

629 KB
Loading

guides/assets/pair.png

-1.61 MB
Binary file not shown.

guides/assets/state.jpg

903 KB
Loading

guides/assets/state.png

-2.91 MB
Binary file not shown.

guides/assets/webrtc_internals.mp4

-5.26 MB
Binary file not shown.

lib/ex_webrtc/rtp/depayloader.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule ExWebRTC.RTP.Depayloader do
22
@moduledoc """
33
RTP depayloader.
44
5-
It unpacks RTP pakcets into audio/video frames.
5+
It unpacks RTP packets into audio/video frames.
66
"""
77

88
alias ExWebRTC.RTPCodecParameters

0 commit comments

Comments
 (0)