SFU is now called Galène.

This commit is contained in:
Juliusz Chroboczek
2020-12-06 19:43:17 +01:00
parent 2d07c5d317
commit ef1c211b7f
23 changed files with 56 additions and 55 deletions
+6 -6
View File
@@ -13,12 +13,12 @@ import (
"github.com/pion/rtp"
"github.com/pion/webrtc/v3"
"sfu/conn"
"sfu/estimator"
"sfu/group"
"sfu/jitter"
"sfu/packetcache"
"sfu/rtptime"
"galene/conn"
"galene/estimator"
"galene/group"
"galene/jitter"
"galene/packetcache"
"galene/rtptime"
)
type bitrate struct {
+2 -2
View File
@@ -9,8 +9,8 @@ import (
"github.com/pion/rtp/codecs"
"github.com/pion/webrtc/v3"
"sfu/packetcache"
"sfu/rtptime"
"galene/packetcache"
"galene/rtptime"
)
func isVP8Keyframe(packet *rtp.Packet) bool {
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"sync/atomic"
"time"
"sfu/rtptime"
"sfu/stats"
"galene/rtptime"
"galene/stats"
)
func (c *webClient) GetStats() *stats.Client {
+3 -3
View File
@@ -9,9 +9,9 @@ import (
"github.com/pion/rtp"
"sfu/conn"
"sfu/packetcache"
"sfu/rtptime"
"galene/conn"
"galene/packetcache"
"galene/rtptime"
)
// packetIndex is a request to send a packet from the cache.
+4 -4
View File
@@ -12,10 +12,10 @@ import (
"github.com/gorilla/websocket"
"github.com/pion/webrtc/v3"
"sfu/conn"
"sfu/diskwriter"
"sfu/estimator"
"sfu/group"
"galene/conn"
"galene/diskwriter"
"galene/estimator"
"galene/group"
)
func errorToWSCloseMessage(id string, err error) (*clientMessage, []byte) {