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 diff --git a/utils/rtpconverter.go b/utils/rtputil/rtpconverter.go similarity index 98% rename from utils/rtpconverter.go rename to utils/rtputil/rtpconverter.go index d7c5cc9cf..9ee9290cc 100644 --- a/utils/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/rtpconverter_test.go b/utils/rtputil/rtpconverter_test.go similarity index 98% rename from utils/rtpconverter_test.go rename to utils/rtputil/rtpconverter_test.go index 6bbc217b4..b98727923 100644 --- a/utils/rtpconverter_test.go +++ b/utils/rtputil/rtpconverter_test.go @@ -1,4 +1,4 @@ -package utils +package rtputil import ( "testing"