From 3775b516ae06028ed61d61c5353c06a082bb6215 Mon Sep 17 00:00:00 2001 From: Paul Wells Date: Wed, 22 Oct 2025 01:36:51 -0700 Subject: [PATCH 1/3] move rtp converter to separate util package --- utils/{ => rtputil}/rtpconverter.go | 0 utils/{ => rtputil}/rtpconverter_test.go | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename utils/{ => rtputil}/rtpconverter.go (100%) rename utils/{ => rtputil}/rtpconverter_test.go (100%) diff --git a/utils/rtpconverter.go b/utils/rtputil/rtpconverter.go similarity index 100% rename from utils/rtpconverter.go rename to utils/rtputil/rtpconverter.go diff --git a/utils/rtpconverter_test.go b/utils/rtputil/rtpconverter_test.go similarity index 100% rename from utils/rtpconverter_test.go rename to utils/rtputil/rtpconverter_test.go From 1e398fe76acf209df0fc6c11fdffd324d618c92e Mon Sep 17 00:00:00 2001 From: Paul Wells Date: Wed, 22 Oct 2025 01:41:39 -0700 Subject: [PATCH 2/3] Create pretty-weeks-behave.md --- .changeset/pretty-weeks-behave.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/pretty-weeks-behave.md diff --git a/.changeset/pretty-weeks-behave.md b/.changeset/pretty-weeks-behave.md new file mode 100644 index 000000000..238c027b1 --- /dev/null +++ b/.changeset/pretty-weeks-behave.md @@ -0,0 +1,5 @@ +--- +"@fake-scope/fake-pkg": patch +--- + +move rtp converter to separate util package From e60bc3f692ee7e45b8d69ee79609c536637ec5bf Mon Sep 17 00:00:00 2001 From: Paul Wells Date: Wed, 22 Oct 2025 01:43:34 -0700 Subject: [PATCH 3/3] tidy --- utils/rtputil/rtpconverter.go | 2 +- utils/rtputil/rtpconverter_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/rtputil/rtpconverter.go b/utils/rtputil/rtpconverter.go index d7c5cc9cf..9ee9290cc 100644 --- a/utils/rtputil/rtpconverter.go +++ b/utils/rtputil/rtpconverter.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package utils +package rtputil import "time" diff --git a/utils/rtputil/rtpconverter_test.go b/utils/rtputil/rtpconverter_test.go index 6bbc217b4..b98727923 100644 --- a/utils/rtputil/rtpconverter_test.go +++ b/utils/rtputil/rtpconverter_test.go @@ -1,4 +1,4 @@ -package utils +package rtputil import ( "testing"