File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ func (h *av1FMTP) Match(b FMTP) bool {
17
17
return false
18
18
}
19
19
20
- // AV1 RTP specification:
20
+ // RTP Payload Format For AV1 (v1.0)
21
+ // https://aomediacodec.github.io/av1-rtp-spec/
21
22
// If the profile parameter is not present, it MUST be inferred to be 0 (“Main” profile).
22
23
hProfile , ok := h .parameters ["profile" ]
23
24
if ! ok {
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ func (h *vp9FMTP) Match(b FMTP) bool {
17
17
return false
18
18
}
19
19
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
21
22
// If no profile-id is present, Profile 0 MUST be inferred
22
23
hProfileID , ok := h .parameters ["profile-id" ]
23
24
if ! ok {
You can’t perform that action at this time.
0 commit comments