From a868a14ec8196a58bf064e33ba00dd3e259c36e8 Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Tue, 25 Jun 2024 22:30:07 +0200 Subject: [PATCH] Add links to RTP payload format specifications --- internal/fmtp/av1.go | 3 ++- internal/fmtp/vp9.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/fmtp/av1.go b/internal/fmtp/av1.go index 59d8b31a8d1..29eccd114d0 100644 --- a/internal/fmtp/av1.go +++ b/internal/fmtp/av1.go @@ -17,7 +17,8 @@ func (h *av1FMTP) Match(b FMTP) bool { return false } - // AV1 RTP specification: + // RTP Payload Format For AV1 (v1.0) + // https://aomediacodec.github.io/av1-rtp-spec/ // If the profile parameter is not present, it MUST be inferred to be 0 (“Main” profile). hProfile, ok := h.parameters["profile"] if !ok { diff --git a/internal/fmtp/vp9.go b/internal/fmtp/vp9.go index 9400fe02b6f..7fc618bccd8 100644 --- a/internal/fmtp/vp9.go +++ b/internal/fmtp/vp9.go @@ -17,7 +17,8 @@ func (h *vp9FMTP) Match(b FMTP) bool { return false } - // draft-ietf-payload-vp9-16: + // RTP Payload Format for VP9 Video - draft-ietf-payload-vp9-16 + // https://datatracker.ietf.org/doc/html/draft-ietf-payload-vp9-16 // If no profile-id is present, Profile 0 MUST be inferred hProfileID, ok := h.parameters["profile-id"] if !ok {