-
Notifications
You must be signed in to change notification settings - Fork 14
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
Improve the structs in the API, add docs #104
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
f21de60
PeerConnection: improve docs, add missing getters
LVala 15875fb
Refactor the public modules, use internal maps for transceivers, send…
LVala 88fcd93
Add some properties back to RTPTransceivers
LVala d330284
Apply requested changes
LVala b5cb05e
Fix typos in docs
LVala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
defmodule ExWebRTC.RTPSender.ReportRecorder do | ||
@moduledoc nil | ||
@moduledoc false | ||
|
||
import Bitwise | ||
|
||
|
@@ -29,10 +29,7 @@ defmodule ExWebRTC.RTPSender.ReportRecorder do | |
packet_count: 0, | ||
octet_count: 0 | ||
|
||
@doc """ | ||
Records outgoing RTP Packet. | ||
`time` parameter accepts output of `System.os_time(:native)` as a value (UNIX timestamp in :native units). | ||
""" | ||
# `time` parameter accepts output of `System.os_time(:native)` as a value (UNIX timestamp in :native units). | ||
@spec record_packet(t(), ExRTP.Packet.t(), integer()) :: t() | ||
def record_packet(recorder, packet, time \\ System.os_time(:native)) | ||
|
||
|
@@ -80,13 +77,9 @@ defmodule ExWebRTC.RTPSender.ReportRecorder do | |
} | ||
end | ||
|
||
@doc """ | ||
Creates an RTCP Sender Report. | ||
`time` parameter accepts output of `System.os_time(:native)` as a value (UNIX timestamp in :native units). | ||
|
||
This function can be called only if at least one packet has been recorded, | ||
otherwise it will raise. | ||
""" | ||
# `time` parameter accepts output of `System.os_time(:native)` as a value (UNIX timestamp in :native units). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above |
||
# This function can be called only if at least one packet has been recorded, | ||
# otherwise it will raise. | ||
@spec get_report(t(), integer()) :: {:ok, SenderReport.t(), t()} | {:error, term()} | ||
def get_report(recorder, time \\ System.os_time(:native)) | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO the previous docs could stay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd say to leave as a comment and in general use comments for developer information and docs for public stuff? The only useful thing I could think off was that the LSP would provide the doc info even when function is private, but it doesn't seem to be the case.
EDIT: nvm, LSP does provide this info (which is actually useful), so I'll leave it as a
doc
.