Skip to content

Commit cdb236c

Browse files
committed
Mass replace pions -> pion
Pions organization was renamed to pion
1 parent 7baf2bd commit cdb236c

File tree

21 files changed

+79
-79
lines changed

21 files changed

+79
-79
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ We've made it easy to run the browser based examples on your local machine.
3131

3232
1. Build and run the example server:
3333
``` sh
34-
go get github.com/pions/webrtc
35-
cd $GOPATH/src/github.com/pions/webrtc/examples
34+
go get github.com/pion/webrtc
35+
cd $GOPATH/src/github.com/pion/webrtc/examples
3636
go run examples.go
3737
```
3838

gstreamer-receive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This example requires you have GStreamer installed, these are the supported plat
1010
`pacman -S mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-libav mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad mingw-w64-x86_64-gst-plugins-ugly`
1111
### Download gstreamer-receive
1212
```
13-
go get github.com/pions/webrtc/examples/gstreamer-receive
13+
go get github.com/pion/webrtc/examples/gstreamer-receive
1414
```
1515

1616
### Open gstreamer-receive example page

gstreamer-receive/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"runtime"
66
"time"
77

8-
"github.com/pions/rtcp"
9-
"github.com/pions/webrtc"
8+
"github.com/pion/rtcp"
9+
"github.com/pion/webrtc"
1010

11-
gst "github.com/pions/webrtc/examples/internal/gstreamer-sink"
12-
"github.com/pions/webrtc/examples/internal/signal"
11+
gst "github.com/pion/webrtc/examples/internal/gstreamer-sink"
12+
"github.com/pion/webrtc/examples/internal/signal"
1313
)
1414

1515
// gstreamerReceiveMain is launched in a goroutine because the main thread is needed

gstreamer-send-offer/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"fmt"
66
"math/rand"
77

8-
"github.com/pions/webrtc"
8+
"github.com/pion/webrtc"
99

10-
gst "github.com/pions/webrtc/examples/internal/gstreamer-src"
11-
"github.com/pions/webrtc/examples/internal/signal"
10+
gst "github.com/pion/webrtc/examples/internal/gstreamer-src"
11+
"github.com/pion/webrtc/examples/internal/signal"
1212
)
1313

1414
func main() {

gstreamer-send/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This example requires you have GStreamer installed, these are the supported plat
1010
`pacman -S mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-libav mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad mingw-w64-x86_64-gst-plugins-ugly`
1111
### Download gstreamer-send
1212
```
13-
go get github.com/pions/webrtc/examples/gstreamer-send
13+
go get github.com/pion/webrtc/examples/gstreamer-send
1414
```
1515

1616
### Open gstreamer-send example page

gstreamer-send/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"fmt"
66
"math/rand"
77

8-
"github.com/pions/webrtc"
8+
"github.com/pion/webrtc"
99

10-
gst "github.com/pions/webrtc/examples/internal/gstreamer-src"
11-
"github.com/pions/webrtc/examples/internal/signal"
10+
gst "github.com/pion/webrtc/examples/internal/gstreamer-src"
11+
"github.com/pion/webrtc/examples/internal/signal"
1212
)
1313

1414
func main() {

internal/gstreamer-sink/gst.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import "C"
1010
import (
1111
"unsafe"
1212

13-
"github.com/pions/webrtc"
13+
"github.com/pion/webrtc"
1414
)
1515

1616
// StartMainLoop starts GLib's main loop

internal/gstreamer-src/gst.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"sync"
1313
"unsafe"
1414

15-
"github.com/pions/webrtc"
16-
"github.com/pions/webrtc/pkg/media"
15+
"github.com/pion/webrtc"
16+
"github.com/pion/webrtc/pkg/media"
1717
)
1818

1919
func init() {

janus-gateway/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This example demonstrates how to download a video from a Janus streaming room. B
99
You should confirm that you can successfully watch `Opus/VP8 live stream coming from gstreamer (live)` in the stream demo web UI
1010

1111
### Running
12-
run `main.go` in `github.com/pions/webrtc/examples/janus-gateway/streaming`
12+
run `main.go` in `github.com/pion/webrtc/examples/janus-gateway/streaming`
1313

1414
If this worked you will see the following.
1515
```
@@ -24,7 +24,7 @@ You will see output.ivf in the current folder.
2424
This example demonstrates how to stream to a Janus video-room using pion-WebRTC
2525

2626
### Running
27-
run `main.go` in `github.com/pions/webrtc/examples/janus-gateway/video-room`
27+
run `main.go` in `github.com/pion/webrtc/examples/janus-gateway/video-room`
2828

2929
OSX
3030
```sh

janus-gateway/streaming/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/pions/webrtc/examples/janus-gateway/streaming
1+
module github.com/pion/webrtc/examples/janus-gateway/streaming
22

3-
replace github.com/pions/webrtc => ../../../
3+
replace github.com/pion/webrtc => ../../../
44

55
require (
66
github.com/gorilla/websocket v1.4.0 // indirect
77
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b
8-
github.com/pions/webrtc v1.1.1
8+
github.com/pion/webrtc v1.1.1
99
)

janus-gateway/streaming/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH
66
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
77
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b h1:GT1/zfKpQHX4Cz7F1QUE/tjE/OP0KM5aYaFiKVRgvkk=
88
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b/go.mod h1:BN/Txse3qz8tZOmCm2OfajB2wHVujWmX3o9nVdsI6gE=
9-
github.com/pions/pkg v0.0.0-20181115215726-b60cd756f712 h1:ciXO7F7PusyAzW/EZJt01bETgfTxP/BIGoWQ15pBP54=
10-
github.com/pions/pkg v0.0.0-20181115215726-b60cd756f712/go.mod h1:r9wKZs+Xxv2acLspex4CHQiIhFjGK1zGP+nUm/8klXA=
9+
github.com/pion/pkg v0.0.0-20181115215726-b60cd756f712 h1:ciXO7F7PusyAzW/EZJt01bETgfTxP/BIGoWQ15pBP54=
10+
github.com/pion/pkg v0.0.0-20181115215726-b60cd756f712/go.mod h1:r9wKZs+Xxv2acLspex4CHQiIhFjGK1zGP+nUm/8klXA=
1111
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
1212
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
1313
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

janus-gateway/streaming/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"time"
66

77
janus "github.com/notedit/janus-go"
8-
"github.com/pions/webrtc"
9-
"github.com/pions/webrtc/pkg/media"
10-
"github.com/pions/webrtc/pkg/media/ivfwriter"
11-
"github.com/pions/webrtc/pkg/media/opuswriter"
8+
"github.com/pion/webrtc"
9+
"github.com/pion/webrtc/pkg/media"
10+
"github.com/pion/webrtc/pkg/media/ivfwriter"
11+
"github.com/pion/webrtc/pkg/media/opuswriter"
1212
)
1313

1414
func saveToDisk(i media.Writer, track *webrtc.Track) {

janus-gateway/video-room/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/pions/webrtc/examples/janus-gateway/streaming
1+
module github.com/pion/webrtc/examples/janus-gateway/streaming
22

3-
replace github.com/pions/webrtc => ../../../
3+
replace github.com/pion/webrtc => ../../../
44

55
require (
66
github.com/gorilla/websocket v1.4.0 // indirect
77
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b
8-
github.com/pions/webrtc v1.1.1
8+
github.com/pion/webrtc v1.1.1
99
)

janus-gateway/video-room/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH
66
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
77
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b h1:GT1/zfKpQHX4Cz7F1QUE/tjE/OP0KM5aYaFiKVRgvkk=
88
github.com/notedit/janus-go v0.0.0-20180821162543-a152adf0cb7b/go.mod h1:BN/Txse3qz8tZOmCm2OfajB2wHVujWmX3o9nVdsI6gE=
9-
github.com/pions/pkg v0.0.0-20181115215726-b60cd756f712 h1:ciXO7F7PusyAzW/EZJt01bETgfTxP/BIGoWQ15pBP54=
10-
github.com/pions/pkg v0.0.0-20181115215726-b60cd756f712/go.mod h1:r9wKZs+Xxv2acLspex4CHQiIhFjGK1zGP+nUm/8klXA=
9+
github.com/pion/pkg v0.0.0-20181115215726-b60cd756f712 h1:ciXO7F7PusyAzW/EZJt01bETgfTxP/BIGoWQ15pBP54=
10+
github.com/pion/pkg v0.0.0-20181115215726-b60cd756f712/go.mod h1:r9wKZs+Xxv2acLspex4CHQiIhFjGK1zGP+nUm/8klXA=
1111
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
1212
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
1313
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

janus-gateway/video-room/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"time"
88

99
janus "github.com/notedit/janus-go"
10-
"github.com/pions/webrtc"
10+
"github.com/pion/webrtc"
1111

12-
gst "github.com/pions/webrtc/examples/internal/gstreamer-src"
12+
gst "github.com/pion/webrtc/examples/internal/gstreamer-src"
1313
)
1414

1515
func watchHandle(handle *janus.Handle) {

sfu-ws/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This could serve as the building block to building conferencing software, and ot
66
## Instructions
77
### Download sfu-ws
88
```
9-
go get github.com/pions/webrtc/examples/sfu-ws
9+
go get github.com/pion/webrtc/examples/sfu-ws
1010
```
1111

1212
### Run SFU

sfu-ws/broadcast_data.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"sync"
55

6-
"github.com/pions/webrtc"
6+
"github.com/pion/webrtc"
77
)
88

99
type BroadcastHub struct {

sfu-ws/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
module github.com/pions/webrtc/examples/sfu-ws
1+
module github.com/pion/webrtc/examples/sfu-ws
22

33
require (
44
github.com/gorilla/websocket v1.4.0
5-
github.com/pions/rtcp v1.1.2
6-
github.com/pions/webrtc v1.2.0
5+
github.com/pion/rtcp v1.1.2
6+
github.com/pion/webrtc v1.2.0
77
github.com/povilasv/prommod v0.0.11
88
github.com/prometheus/client_golang v0.9.2
99
)
1010

11-
replace github.com/pions/webrtc => ../../
11+
replace github.com/pion/webrtc => ../../

sfu-ws/go.sum

+35-35
Original file line numberDiff line numberDiff line change
@@ -24,41 +24,41 @@ github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
2424
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
2525
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
2626
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
27-
github.com/pions/datachannel v1.2.0 h1:N12qhHSRVlgBcaal2Hi4skdz7VI4yz6bNC5IJDMzCNw=
28-
github.com/pions/datachannel v1.2.0/go.mod h1:MKPEKJRwX/a9/tyQvcVTUI9szyf8ZuUyZxSA9AVMSro=
29-
github.com/pions/dtls v1.2.2 h1:izn/74bIBxVuHb+NdirkmWMH/yFNd8PBVXJgeH/ofGU=
30-
github.com/pions/dtls v1.2.2/go.mod h1:5o0cLHyBEl8CvuA88enDDM6aBwn4SNo8md2dPhcynfc=
31-
github.com/pions/ice v0.1.0 h1:V3RaaUV7QEFUrNk2tHzRqNo3ldCwwnghEpDIQ8+m/eA=
32-
github.com/pions/ice v0.1.0/go.mod h1:vGnMrwYxOMmfR093luGSh2yMm1DDpPqj8lGRNsmo9VQ=
33-
github.com/pions/ice v0.1.1 h1:SZouAvl9RnrNnCHxSnurOfzqK2+oD0ZeURSoxuOs0tI=
34-
github.com/pions/ice v0.1.1/go.mod h1:vGnMrwYxOMmfR093luGSh2yMm1DDpPqj8lGRNsmo9VQ=
35-
github.com/pions/logging v0.1.0 h1:vr+vInmjaRI06CqPWErEQpywxaqoIZcUjQ2eN68jRbk=
36-
github.com/pions/logging v0.1.0/go.mod h1:duuz9/Se8ujqvq7OPzbnPpRlha6A0fk1Ba2wrbn4zew=
37-
github.com/pions/qtls-vendor-extracted v0.0.0-20190210024908-018998217c65 h1:skcEQZ2eUdm1WKlYu7y1y0HBzOwa1pgSAwvhG6PrI2s=
38-
github.com/pions/qtls-vendor-extracted v0.0.0-20190210024908-018998217c65/go.mod h1:tSUehzG/8OAT3JvWvnovveLfRMM8NvgfN1LzwSrBX5s=
39-
github.com/pions/quic v0.0.1 h1:SvloojnZl+wiaee/yKI88n/wQosFMCvatAKyxoRoiFQ=
40-
github.com/pions/quic v0.0.1/go.mod h1:q62rRbOZG6Keu45rWWljWZHXmB3H7fKdeJ1KtNcDrNQ=
41-
github.com/pions/quic-go v0.7.1-0.20190211221741-ec20a8498576 h1:fD1z2bI0qf8yiZGDg5dxhVPP6xtsACP6FN5rDhpDVfM=
42-
github.com/pions/quic-go v0.7.1-0.20190211221741-ec20a8498576/go.mod h1:YvOsXPS6wXEfRGJobrsWSOBmlN6dkEIg+cUpnSDLkhc=
43-
github.com/pions/rtcp v1.1.2 h1:gTb+GOvOYDRZb+3OgZz5PE51xrHGZL0WIM5X37dGi60=
44-
github.com/pions/rtcp v1.1.2/go.mod h1:E8DBOVSErqbHrUEs8KINt3yhzO7FvKuZr2bVUKTvyaw=
45-
github.com/pions/rtp v1.1.0 h1:aioiXSi2UclJptFRqmii76GTrlgry5ucCGtdKc+5VDs=
46-
github.com/pions/rtp v1.1.0/go.mod h1:Bro/2l0PS5C3SQaEpLA+H34kpKIurx3K2Zln/nKjRMs=
47-
github.com/pions/sctp v1.3.0/go.mod h1:GZTG/xApE7wdUFEQq2Rmzgxl/+YaB/L1k8xUl1D5bmo=
48-
github.com/pions/sctp v1.4.2 h1:oOV8oLmGds2GZnIeGSHn8d385kwBxNeWNJ0kJOIR4yY=
49-
github.com/pions/sctp v1.4.2/go.mod h1:Yws4nn6vR0npKJ2n2R+Cm+0JGaMKca0M1pYdGXovz3o=
50-
github.com/pions/sdp/v2 v2.1.0 h1:YbbbaceX1aB6j3hPVdQ6GnniIRKqT/rmfnt4XvKR/E0=
51-
github.com/pions/sdp/v2 v2.1.0/go.mod h1:KGRBcHfpkgJXjrzKJz2wj/Jf1KWnsHdoIiqtayQ5QmE=
52-
github.com/pions/srtp v1.1.2 h1:mMhn9jsMUokSq+Owyviz6zw9BblBQhHiCB21kpP8KOE=
53-
github.com/pions/srtp v1.1.2/go.mod h1:oQrU6IspEuRx9kdWeX2eb54y6F0ieS0J8GZayc9yZY0=
54-
github.com/pions/stun v0.2.0 h1:spIzpfkEg6HV+2iIo6qeOsAjtadZKzbXbrd2e9ZCCcs=
55-
github.com/pions/stun v0.2.0/go.mod h1:rMdCIsqqnTLC4MOHJE3LNiFQRfIjUDzI1kzx//7oPOM=
56-
github.com/pions/transport v0.0.0-20190110151433-e7cbf7d5f464/go.mod h1:HLhzI7I0k8TyiQ99hfRZNRf84lG76eaFnZHnVy/wFnM=
57-
github.com/pions/transport v0.2.0/go.mod h1:HLhzI7I0k8TyiQ99hfRZNRf84lG76eaFnZHnVy/wFnM=
58-
github.com/pions/transport v0.4.0 h1:1N6fluzmj5W/16eFLDsCB18s/xEkjVTek0K4IJz75FU=
59-
github.com/pions/transport v0.4.0/go.mod h1:9gvUd8ZeyU4ZX7dhNuUq97mPoekopkd7eCJEyhKwVO0=
60-
github.com/pions/transport v0.5.0 h1:/KGBCzjc8bvVh8P5NP8GiSGL/PbupzhqvEOEBSlZux0=
61-
github.com/pions/transport v0.5.0/go.mod h1:9gvUd8ZeyU4ZX7dhNuUq97mPoekopkd7eCJEyhKwVO0=
27+
github.com/pion/datachannel v1.2.0 h1:N12qhHSRVlgBcaal2Hi4skdz7VI4yz6bNC5IJDMzCNw=
28+
github.com/pion/datachannel v1.2.0/go.mod h1:MKPEKJRwX/a9/tyQvcVTUI9szyf8ZuUyZxSA9AVMSro=
29+
github.com/pion/dtls v1.2.2 h1:izn/74bIBxVuHb+NdirkmWMH/yFNd8PBVXJgeH/ofGU=
30+
github.com/pion/dtls v1.2.2/go.mod h1:5o0cLHyBEl8CvuA88enDDM6aBwn4SNo8md2dPhcynfc=
31+
github.com/pion/ice v0.1.0 h1:V3RaaUV7QEFUrNk2tHzRqNo3ldCwwnghEpDIQ8+m/eA=
32+
github.com/pion/ice v0.1.0/go.mod h1:vGnMrwYxOMmfR093luGSh2yMm1DDpPqj8lGRNsmo9VQ=
33+
github.com/pion/ice v0.1.1 h1:SZouAvl9RnrNnCHxSnurOfzqK2+oD0ZeURSoxuOs0tI=
34+
github.com/pion/ice v0.1.1/go.mod h1:vGnMrwYxOMmfR093luGSh2yMm1DDpPqj8lGRNsmo9VQ=
35+
github.com/pion/logging v0.1.0 h1:vr+vInmjaRI06CqPWErEQpywxaqoIZcUjQ2eN68jRbk=
36+
github.com/pion/logging v0.1.0/go.mod h1:duuz9/Se8ujqvq7OPzbnPpRlha6A0fk1Ba2wrbn4zew=
37+
github.com/pion/qtls-vendor-extracted v0.0.0-20190210024908-018998217c65 h1:skcEQZ2eUdm1WKlYu7y1y0HBzOwa1pgSAwvhG6PrI2s=
38+
github.com/pion/qtls-vendor-extracted v0.0.0-20190210024908-018998217c65/go.mod h1:tSUehzG/8OAT3JvWvnovveLfRMM8NvgfN1LzwSrBX5s=
39+
github.com/pion/quic v0.0.1 h1:SvloojnZl+wiaee/yKI88n/wQosFMCvatAKyxoRoiFQ=
40+
github.com/pion/quic v0.0.1/go.mod h1:q62rRbOZG6Keu45rWWljWZHXmB3H7fKdeJ1KtNcDrNQ=
41+
github.com/pion/quic-go v0.7.1-0.20190211221741-ec20a8498576 h1:fD1z2bI0qf8yiZGDg5dxhVPP6xtsACP6FN5rDhpDVfM=
42+
github.com/pion/quic-go v0.7.1-0.20190211221741-ec20a8498576/go.mod h1:YvOsXPS6wXEfRGJobrsWSOBmlN6dkEIg+cUpnSDLkhc=
43+
github.com/pion/rtcp v1.1.2 h1:gTb+GOvOYDRZb+3OgZz5PE51xrHGZL0WIM5X37dGi60=
44+
github.com/pion/rtcp v1.1.2/go.mod h1:E8DBOVSErqbHrUEs8KINt3yhzO7FvKuZr2bVUKTvyaw=
45+
github.com/pion/rtp v1.1.0 h1:aioiXSi2UclJptFRqmii76GTrlgry5ucCGtdKc+5VDs=
46+
github.com/pion/rtp v1.1.0/go.mod h1:Bro/2l0PS5C3SQaEpLA+H34kpKIurx3K2Zln/nKjRMs=
47+
github.com/pion/sctp v1.3.0/go.mod h1:GZTG/xApE7wdUFEQq2Rmzgxl/+YaB/L1k8xUl1D5bmo=
48+
github.com/pion/sctp v1.4.2 h1:oOV8oLmGds2GZnIeGSHn8d385kwBxNeWNJ0kJOIR4yY=
49+
github.com/pion/sctp v1.4.2/go.mod h1:Yws4nn6vR0npKJ2n2R+Cm+0JGaMKca0M1pYdGXovz3o=
50+
github.com/pion/sdp/v2 v2.1.0 h1:YbbbaceX1aB6j3hPVdQ6GnniIRKqT/rmfnt4XvKR/E0=
51+
github.com/pion/sdp/v2 v2.1.0/go.mod h1:KGRBcHfpkgJXjrzKJz2wj/Jf1KWnsHdoIiqtayQ5QmE=
52+
github.com/pion/srtp v1.1.2 h1:mMhn9jsMUokSq+Owyviz6zw9BblBQhHiCB21kpP8KOE=
53+
github.com/pion/srtp v1.1.2/go.mod h1:oQrU6IspEuRx9kdWeX2eb54y6F0ieS0J8GZayc9yZY0=
54+
github.com/pion/stun v0.2.0 h1:spIzpfkEg6HV+2iIo6qeOsAjtadZKzbXbrd2e9ZCCcs=
55+
github.com/pion/stun v0.2.0/go.mod h1:rMdCIsqqnTLC4MOHJE3LNiFQRfIjUDzI1kzx//7oPOM=
56+
github.com/pion/transport v0.0.0-20190110151433-e7cbf7d5f464/go.mod h1:HLhzI7I0k8TyiQ99hfRZNRf84lG76eaFnZHnVy/wFnM=
57+
github.com/pion/transport v0.2.0/go.mod h1:HLhzI7I0k8TyiQ99hfRZNRf84lG76eaFnZHnVy/wFnM=
58+
github.com/pion/transport v0.4.0 h1:1N6fluzmj5W/16eFLDsCB18s/xEkjVTek0K4IJz75FU=
59+
github.com/pion/transport v0.4.0/go.mod h1:9gvUd8ZeyU4ZX7dhNuUq97mPoekopkd7eCJEyhKwVO0=
60+
github.com/pion/transport v0.5.0 h1:/KGBCzjc8bvVh8P5NP8GiSGL/PbupzhqvEOEBSlZux0=
61+
github.com/pion/transport v0.5.0/go.mod h1:9gvUd8ZeyU4ZX7dhNuUq97mPoekopkd7eCJEyhKwVO0=
6262
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
6363
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
6464
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=

sfu-ws/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"net/http"
77

8-
"github.com/pions/webrtc"
8+
"github.com/pion/webrtc"
99
"github.com/povilasv/prommod"
1010
"github.com/prometheus/client_golang/prometheus"
1111
"github.com/prometheus/client_golang/prometheus/promhttp"

sfu-ws/room.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"time"
1010

1111
"github.com/gorilla/websocket"
12-
"github.com/pions/rtcp"
13-
"github.com/pions/webrtc"
12+
"github.com/pion/rtcp"
13+
"github.com/pion/webrtc"
1414
)
1515

1616
// Peer config

0 commit comments

Comments
 (0)