From 42ad1265abea614327dd29ed02251929e8363ce7 Mon Sep 17 00:00:00 2001 From: Pion <59523206+pionbot@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:44:34 +0000 Subject: [PATCH] Update CI configs to v0.11.37 Update lint scripts and CI configs. --- .github/.gitignore | 2 +- .github/fetch-scripts.sh | 2 +- .github/install-hooks.sh | 2 +- .github/workflows/api.yaml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/fuzz.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/renovate-go-sum-fix.yaml | 2 +- .github/workflows/reuse.yml | 2 +- .github/workflows/test.yaml | 2 +- .github/workflows/tidy-check.yaml | 2 +- .gitignore | 2 +- .golangci.yml | 2 +- .goreleaser.yml | 2 +- .reuse/dep5 | 4 ++-- abscapturetimeextension.go | 2 +- abscapturetimeextension_test.go | 2 +- abssendtimeextension.go | 2 +- abssendtimeextension_test.go | 2 +- audiolevelextension.go | 2 +- audiolevelextension_test.go | 2 +- codecov.yml | 2 +- codecs/av1/frame/av1.go | 2 +- codecs/av1/frame/av1_test.go | 2 +- codecs/av1/obu/errors.go | 2 +- codecs/av1/obu/leb128.go | 2 +- codecs/av1/obu/leb128_test.go | 2 +- codecs/av1/obu/obu.go | 2 +- codecs/av1/obu/obu_test.go | 2 +- codecs/av1_depacketizer.go | 2 +- codecs/av1_depacketizer_test.go | 2 +- codecs/av1_packet.go | 2 +- codecs/av1_packet_test.go | 2 +- codecs/codecs.go | 2 +- codecs/common.go | 2 +- codecs/common_test.go | 2 +- codecs/error.go | 2 +- codecs/g711_packet.go | 2 +- codecs/g711_packet_test.go | 2 +- codecs/g722_packet.go | 2 +- codecs/g722_packet_test.go | 2 +- codecs/h264/spreader.go | 2 +- codecs/h264/spreader_test.go | 2 +- codecs/h264_packet.go | 2 +- codecs/h264_packet_test.go | 2 +- codecs/h265_packet.go | 2 +- codecs/h265_packet_test.go | 2 +- codecs/h266_packet.go | 2 +- codecs/h266_packet_test.go | 2 +- codecs/opus_packet.go | 2 +- codecs/opus_packet_test.go | 2 +- codecs/vp8_packet.go | 2 +- codecs/vp8_packet_test.go | 2 +- codecs/vp9/bits.go | 2 +- codecs/vp9/header.go | 2 +- codecs/vp9/header_test.go | 2 +- codecs/vp9_packet.go | 2 +- codecs/vp9_packet_test.go | 2 +- depacketizer.go | 2 +- error.go | 2 +- examples/send-h264/main.go | 2 +- header_extension.go | 2 +- header_extension_test.go | 2 +- packet.go | 2 +- packet_test.go | 2 +- packetizer.go | 2 +- packetizer_test.go | 2 +- partitionheadchecker.go | 2 +- payload_types.go | 2 +- pkg/frame/av1.go | 2 +- pkg/obu/leb128.go | 2 +- playoutdelayextension.go | 2 +- playoutdelayextension_test.go | 2 +- rand.go | 2 +- rtp.go | 2 +- sequencer.go | 2 +- sequencer_test.go | 2 +- transportccextension.go | 2 +- transportccextension_test.go | 2 +- vlaextension.go | 2 +- vlaextension_test.go | 2 +- 82 files changed, 83 insertions(+), 83 deletions(-) diff --git a/.github/.gitignore b/.github/.gitignore index c3421a1a..c4e11699 100644 --- a/.github/.gitignore +++ b/.github/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT .goassets diff --git a/.github/fetch-scripts.sh b/.github/fetch-scripts.sh index f333841e..16b1338d 100755 --- a/.github/fetch-scripts.sh +++ b/.github/fetch-scripts.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT set -eu diff --git a/.github/install-hooks.sh b/.github/install-hooks.sh index 2bad37c1..6e673139 100755 --- a/.github/install-hooks.sh +++ b/.github/install-hooks.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT SCRIPT_PATH="$(realpath "$(dirname "$0")")" diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index 1032179e..d4052c64 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: API diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ea9b825e..f825e2ee 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: CodeQL diff --git a/.github/workflows/fuzz.yaml b/.github/workflows/fuzz.yaml index 2f888ad3..cd43c193 100644 --- a/.github/workflows/fuzz.yaml +++ b/.github/workflows/fuzz.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fuzz diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 5dd3a993..0966ef18 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b94deb7..fe0d3895 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Release diff --git a/.github/workflows/renovate-go-sum-fix.yaml b/.github/workflows/renovate-go-sum-fix.yaml index b7bb1b4f..28cf9e22 100644 --- a/.github/workflows/renovate-go-sum-fix.yaml +++ b/.github/workflows/renovate-go-sum-fix.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fix go.sum diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 8633a12a..3dfd683c 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: REUSE Compliance Check diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab6ebae4..6e34f4fa 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Test diff --git a/.github/workflows/tidy-check.yaml b/.github/workflows/tidy-check.yaml index 7ed07ba0..f2c3538b 100644 --- a/.github/workflows/tidy-check.yaml +++ b/.github/workflows/tidy-check.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Go mod tidy diff --git a/.gitignore b/.gitignore index 6e2f206a..23945578 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT ### JetBrains IDE ### diff --git a/.golangci.yml b/.golangci.yml index 4b4025fb..43af4c38 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT version: "2" diff --git a/.goreleaser.yml b/.goreleaser.yml index 30093e9d..8577d86d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT builds: diff --git a/.reuse/dep5 b/.reuse/dep5 index b26c56d6..ebb85e4d 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -3,9 +3,9 @@ Upstream-Name: Pion Source: https://github.com/pion/ Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum **/go.mod **/go.sum .eslintrc.json package.json examples.json sfu-ws/flutter/.gitignore sfu-ws/flutter/pubspec.yaml c-data-channels/webrtc.h examples/examples.json yarn.lock -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: MIT Files: testdata/seed/* testdata/fuzz/* **/testdata/fuzz/* api/*.txt -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: CC0-1.0 diff --git a/abscapturetimeextension.go b/abscapturetimeextension.go index f90f26b6..81dc6150 100644 --- a/abscapturetimeextension.go +++ b/abscapturetimeextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/abscapturetimeextension_test.go b/abscapturetimeextension_test.go index 1b6d9482..ea2b171f 100644 --- a/abscapturetimeextension_test.go +++ b/abscapturetimeextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/abssendtimeextension.go b/abssendtimeextension.go index 41c3d47e..30bc7ea9 100644 --- a/abssendtimeextension.go +++ b/abssendtimeextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/abssendtimeextension_test.go b/abssendtimeextension_test.go index 9fb09e41..4fadb77b 100644 --- a/abssendtimeextension_test.go +++ b/abssendtimeextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/audiolevelextension.go b/audiolevelextension.go index 3d3e61f3..19ba50f7 100644 --- a/audiolevelextension.go +++ b/audiolevelextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/audiolevelextension_test.go b/audiolevelextension_test.go index 5e89ed17..999de6d6 100644 --- a/audiolevelextension_test.go +++ b/audiolevelextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/codecov.yml b/codecov.yml index 263e4d45..b9639c22 100644 --- a/codecov.yml +++ b/codecov.yml @@ -3,7 +3,7 @@ # # It is automatically copied from https://github.com/pion/.goassets repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT coverage: diff --git a/codecs/av1/frame/av1.go b/codecs/av1/frame/av1.go index 157672d2..56dcf86f 100644 --- a/codecs/av1/frame/av1.go +++ b/codecs/av1/frame/av1.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package frame provides code to construct complete media frames from packetized media. diff --git a/codecs/av1/frame/av1_test.go b/codecs/av1/frame/av1_test.go index 3b5aa254..fbfd38ce 100644 --- a/codecs/av1/frame/av1_test.go +++ b/codecs/av1/frame/av1_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package frame diff --git a/codecs/av1/obu/errors.go b/codecs/av1/obu/errors.go index eeba3a4f..75106bee 100644 --- a/codecs/av1/obu/errors.go +++ b/codecs/av1/obu/errors.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package obu diff --git a/codecs/av1/obu/leb128.go b/codecs/av1/obu/leb128.go index 56b9ff0f..7662bc08 100644 --- a/codecs/av1/obu/leb128.go +++ b/codecs/av1/obu/leb128.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package obu implements tools for working with the Open Bitstream Unit. diff --git a/codecs/av1/obu/leb128_test.go b/codecs/av1/obu/leb128_test.go index a7bf2150..3a00be64 100644 --- a/codecs/av1/obu/leb128_test.go +++ b/codecs/av1/obu/leb128_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package obu diff --git a/codecs/av1/obu/obu.go b/codecs/av1/obu/obu.go index 6bc91f17..7d7a3ff9 100644 --- a/codecs/av1/obu/obu.go +++ b/codecs/av1/obu/obu.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package obu diff --git a/codecs/av1/obu/obu_test.go b/codecs/av1/obu/obu_test.go index 6267e84b..e70f3a8d 100644 --- a/codecs/av1/obu/obu_test.go +++ b/codecs/av1/obu/obu_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package obu diff --git a/codecs/av1_depacketizer.go b/codecs/av1_depacketizer.go index f38e0b2f..d9dbbcd0 100644 --- a/codecs/av1_depacketizer.go +++ b/codecs/av1_depacketizer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/av1_depacketizer_test.go b/codecs/av1_depacketizer_test.go index f7280185..2fd725c6 100644 --- a/codecs/av1_depacketizer_test.go +++ b/codecs/av1_depacketizer_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/av1_packet.go b/codecs/av1_packet.go index 2f6d1c92..797d4fee 100644 --- a/codecs/av1_packet.go +++ b/codecs/av1_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/av1_packet_test.go b/codecs/av1_packet_test.go index 39cf01be..86e88926 100644 --- a/codecs/av1_packet_test.go +++ b/codecs/av1_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/codecs.go b/codecs/codecs.go index cd1c8915..42caf1e2 100644 --- a/codecs/codecs.go +++ b/codecs/codecs.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package codecs implements codec specific RTP payloader/depayloaders diff --git a/codecs/common.go b/codecs/common.go index 8d7531a3..41ff6f39 100644 --- a/codecs/common.go +++ b/codecs/common.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/common_test.go b/codecs/common_test.go index bb009ba3..72bd0238 100644 --- a/codecs/common_test.go +++ b/codecs/common_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/error.go b/codecs/error.go index 60530e97..81a26e04 100644 --- a/codecs/error.go +++ b/codecs/error.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/g711_packet.go b/codecs/g711_packet.go index 7ac268a1..61022c01 100644 --- a/codecs/g711_packet.go +++ b/codecs/g711_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/g711_packet_test.go b/codecs/g711_packet_test.go index 3fee2c32..8ca68bea 100644 --- a/codecs/g711_packet_test.go +++ b/codecs/g711_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs //nolint:dupl diff --git a/codecs/g722_packet.go b/codecs/g722_packet.go index 7d586ab9..5569df88 100644 --- a/codecs/g722_packet.go +++ b/codecs/g722_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/g722_packet_test.go b/codecs/g722_packet_test.go index 8bcf791a..33672636 100644 --- a/codecs/g722_packet_test.go +++ b/codecs/g722_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs //nolint:dupl diff --git a/codecs/h264/spreader.go b/codecs/h264/spreader.go index 04c018de..81a0347a 100644 --- a/codecs/h264/spreader.go +++ b/codecs/h264/spreader.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package h264 provides helpers for working with H264 Bitstreams diff --git a/codecs/h264/spreader_test.go b/codecs/h264/spreader_test.go index 88036a27..21dd1df9 100644 --- a/codecs/h264/spreader_test.go +++ b/codecs/h264/spreader_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package h264 diff --git a/codecs/h264_packet.go b/codecs/h264_packet.go index fdc00edc..c011d4f5 100644 --- a/codecs/h264_packet.go +++ b/codecs/h264_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/h264_packet_test.go b/codecs/h264_packet_test.go index 64b09ae5..e6afe176 100644 --- a/codecs/h264_packet_test.go +++ b/codecs/h264_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/h265_packet.go b/codecs/h265_packet.go index faabb0c2..38a8bbb1 100644 --- a/codecs/h265_packet.go +++ b/codecs/h265_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/h265_packet_test.go b/codecs/h265_packet_test.go index c95fe752..7d1d6570 100644 --- a/codecs/h265_packet_test.go +++ b/codecs/h265_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/h266_packet.go b/codecs/h266_packet.go index f816aaa9..d2098bc4 100644 --- a/codecs/h266_packet.go +++ b/codecs/h266_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/h266_packet_test.go b/codecs/h266_packet_test.go index 97917737..ed6cd86f 100644 --- a/codecs/h266_packet_test.go +++ b/codecs/h266_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/opus_packet.go b/codecs/opus_packet.go index 89aaae35..8d09f583 100644 --- a/codecs/opus_packet.go +++ b/codecs/opus_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/opus_packet_test.go b/codecs/opus_packet_test.go index 45dd473a..f801a088 100644 --- a/codecs/opus_packet_test.go +++ b/codecs/opus_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/vp8_packet.go b/codecs/vp8_packet.go index ecf45153..85380987 100644 --- a/codecs/vp8_packet.go +++ b/codecs/vp8_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/vp8_packet_test.go b/codecs/vp8_packet_test.go index 0f94a4c8..6b23817f 100644 --- a/codecs/vp8_packet_test.go +++ b/codecs/vp8_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/vp9/bits.go b/codecs/vp9/bits.go index 97f7022d..7bfa47bc 100644 --- a/codecs/vp9/bits.go +++ b/codecs/vp9/bits.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package vp9 diff --git a/codecs/vp9/header.go b/codecs/vp9/header.go index 26314747..138fe953 100644 --- a/codecs/vp9/header.go +++ b/codecs/vp9/header.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package vp9 contains a VP9 header parser. diff --git a/codecs/vp9/header_test.go b/codecs/vp9/header_test.go index c3e3dbad..1ee94979 100644 --- a/codecs/vp9/header_test.go +++ b/codecs/vp9/header_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package vp9 diff --git a/codecs/vp9_packet.go b/codecs/vp9_packet.go index bbae1ce7..fbb2d077 100644 --- a/codecs/vp9_packet.go +++ b/codecs/vp9_packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/codecs/vp9_packet_test.go b/codecs/vp9_packet_test.go index 7e3f0acb..d7937984 100644 --- a/codecs/vp9_packet_test.go +++ b/codecs/vp9_packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package codecs diff --git a/depacketizer.go b/depacketizer.go index 3027ae67..9722da59 100644 --- a/depacketizer.go +++ b/depacketizer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/error.go b/error.go index eb78874a..c0777ebe 100644 --- a/error.go +++ b/error.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/examples/send-h264/main.go b/examples/send-h264/main.go index 4ca4e5e8..572c8ad7 100644 --- a/examples/send-h264/main.go +++ b/examples/send-h264/main.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // send-h264 demonstrates how to send and receieve RTP packets over the network. diff --git a/header_extension.go b/header_extension.go index 3601993f..174bd4e9 100644 --- a/header_extension.go +++ b/header_extension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/header_extension_test.go b/header_extension_test.go index 1b4a1e42..43866278 100644 --- a/header_extension_test.go +++ b/header_extension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/packet.go b/packet.go index b343a538..d7a5e083 100644 --- a/packet.go +++ b/packet.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/packet_test.go b/packet_test.go index 3b8f8a18..20533d9e 100644 --- a/packet_test.go +++ b/packet_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/packetizer.go b/packetizer.go index 744619dc..f5bfc159 100644 --- a/packetizer.go +++ b/packetizer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/packetizer_test.go b/packetizer_test.go index b79c2a29..08605be0 100644 --- a/packetizer_test.go +++ b/packetizer_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/partitionheadchecker.go b/partitionheadchecker.go index 51f16a96..10a09946 100644 --- a/partitionheadchecker.go +++ b/partitionheadchecker.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/payload_types.go b/payload_types.go index a9bf2272..2cb4d3fd 100644 --- a/payload_types.go +++ b/payload_types.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/pkg/frame/av1.go b/pkg/frame/av1.go index 73edea61..02101e2c 100644 --- a/pkg/frame/av1.go +++ b/pkg/frame/av1.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package frame is deprecated. diff --git a/pkg/obu/leb128.go b/pkg/obu/leb128.go index e1d9c8cb..f5b8fef6 100644 --- a/pkg/obu/leb128.go +++ b/pkg/obu/leb128.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package obu is deprecated. diff --git a/playoutdelayextension.go b/playoutdelayextension.go index 188fe07b..bb728ffc 100644 --- a/playoutdelayextension.go +++ b/playoutdelayextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/playoutdelayextension_test.go b/playoutdelayextension_test.go index bd2fdd50..42bcd97e 100644 --- a/playoutdelayextension_test.go +++ b/playoutdelayextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/rand.go b/rand.go index 3ddddd1b..2ded2bb9 100644 --- a/rand.go +++ b/rand.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/rtp.go b/rtp.go index 5487232e..4ac23181 100644 --- a/rtp.go +++ b/rtp.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package rtp provides RTP packetizer and depacketizer diff --git a/sequencer.go b/sequencer.go index 12fcce50..ab554cd5 100644 --- a/sequencer.go +++ b/sequencer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/sequencer_test.go b/sequencer_test.go index a701615d..8d8e5bcf 100644 --- a/sequencer_test.go +++ b/sequencer_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/transportccextension.go b/transportccextension.go index aa4fb0a7..4f60661e 100644 --- a/transportccextension.go +++ b/transportccextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/transportccextension_test.go b/transportccextension_test.go index 9bee5a29..1d88cec0 100644 --- a/transportccextension_test.go +++ b/transportccextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/vlaextension.go b/vlaextension.go index 21fe6298..bf69a1a5 100644 --- a/vlaextension.go +++ b/vlaextension.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp diff --git a/vlaextension_test.go b/vlaextension_test.go index a9928182..5f52e2b7 100644 --- a/vlaextension_test.go +++ b/vlaextension_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rtp