Source File
av1.go
Belonging Package
github.com/pion/webrtc/v4/internal/fmtp
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage fmtptype av1FMTP struct {parameters map[string]string}func ( *av1FMTP) () string {return "video/av1"}func ( *av1FMTP) ( FMTP) bool {, := .(*av1FMTP)if ! {return false}// 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)., := .parameters["profile"]if ! {= "0"}, := .parameters["profile"]if ! {= "0"}if != {return false}return true}func ( *av1FMTP) ( 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. |