Skip to content

Commit a868a14

Browse files
aler9edaniels
authored andcommitted
Add links to RTP payload format specifications
1 parent 31c2c0d commit a868a14

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

internal/fmtp/av1.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ func (h *av1FMTP) Match(b FMTP) bool {
1717
return false
1818
}
1919

20-
// AV1 RTP specification:
20+
// RTP Payload Format For AV1 (v1.0)
21+
// https://aomediacodec.github.io/av1-rtp-spec/
2122
// If the profile parameter is not present, it MUST be inferred to be 0 (“Main” profile).
2223
hProfile, ok := h.parameters["profile"]
2324
if !ok {

internal/fmtp/vp9.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ func (h *vp9FMTP) Match(b FMTP) bool {
1717
return false
1818
}
1919

20-
// draft-ietf-payload-vp9-16:
20+
// RTP Payload Format for VP9 Video - draft-ietf-payload-vp9-16
21+
// https://datatracker.ietf.org/doc/html/draft-ietf-payload-vp9-16
2122
// If no profile-id is present, Profile 0 MUST be inferred
2223
hProfileID, ok := h.parameters["profile-id"]
2324
if !ok {

0 commit comments

Comments
 (0)