Source File
vp9.go
Belonging Package
github.com/pion/webrtc/v4/internal/fmtp
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage fmtptype vp9FMTP struct {parameters map[string]string}func ( *vp9FMTP) () string {return "video/vp9"}func ( *vp9FMTP) ( FMTP) bool {, := .(*vp9FMTP)if ! {return false}// 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, := .parameters["profile-id"]if ! {= "0"}, := .parameters["profile-id"]if ! {= "0"}if != {return false}return true}func ( *vp9FMTP) ( string) (string, bool) {, := .parameters[]return ,}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |