Skip to content

Commit e15c0a0

Browse files
committed
Merge branch 'main' into dz-livestream-mode
2 parents e2aaae4 + a187ed4 commit e15c0a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+5908
-2743
lines changed

.github/workflows/buildtest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
test:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2929
- uses: actions/cache@v3
3030
with:
3131
path: |

.github/workflows/generate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
generate:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2727

2828
- name: Install Protoc
2929
uses: arduino/setup-protoc@v1
@@ -39,19 +39,19 @@ jobs:
3939
run: go mod tidy
4040

4141
- name: Install generators
42-
uses: magefile/mage-action@v2
42+
uses: magefile/mage-action@v3
4343
with:
4444
version: latest
4545
args: bootstrap
4646

4747
- name: Mage Test
48-
uses: magefile/mage-action@v2
48+
uses: magefile/mage-action@v3
4949
with:
5050
version: latest
5151
args: test
5252

5353
- name: Generate Protobuf
54-
uses: magefile/mage-action@v2
54+
uses: magefile/mage-action@v3
5555
with:
5656
version: latest
5757
args: proto

egress/types.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import "github.com/livekit/protocol/livekit"
1919
const (
2020
EgressTypeRoomComposite = "room_composite"
2121
EgressTypeWeb = "web"
22+
EgressTypeParticipant = "participant"
2223
EgressTypeTrackComposite = "track_composite"
2324
EgressTypeTrack = "track"
2425

@@ -50,6 +51,9 @@ func GetTypes(request interface{}) (string, string) {
5051
case *livekit.EgressInfo_Web:
5152
return EgressTypeWeb, GetOutputType(req.Web)
5253

54+
case *livekit.EgressInfo_Participant:
55+
return EgressTypeParticipant, GetOutputType(req.Participant)
56+
5357
case *livekit.EgressInfo_TrackComposite:
5458
return EgressTypeTrackComposite, GetOutputType(req.TrackComposite)
5559

go.mod

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ require (
1212
github.com/jxskiss/base62 v1.1.0
1313
github.com/lithammer/shortuuid/v4 v4.0.0
1414
github.com/livekit/mageutil v0.0.0-20230125210925-54e8a70427c1
15-
github.com/livekit/psrpc v0.3.2
15+
github.com/livekit/psrpc v0.3.3
1616
github.com/mackerelio/go-osstat v0.2.4
17-
github.com/maxbrunsfeld/counterfeiter/v6 v6.6.2
17+
github.com/maxbrunsfeld/counterfeiter/v6 v6.7.0
1818
github.com/pion/logging v0.2.2
1919
github.com/pion/sdp/v3 v3.0.6
20-
github.com/pion/webrtc/v3 v3.2.14
20+
github.com/pion/webrtc/v3 v3.2.19
2121
github.com/pkg/errors v0.9.1
2222
github.com/prometheus/client_golang v1.16.0
23-
github.com/redis/go-redis/v9 v9.0.5
23+
github.com/redis/go-redis/v9 v9.1.0
2424
github.com/stretchr/testify v1.8.4
2525
github.com/twitchtv/twirp v8.1.3+incompatible
2626
github.com/zeebo/xxh3 v1.0.2
2727
go.uber.org/atomic v1.11.0
2828
go.uber.org/zap v1.25.0
29-
golang.org/x/exp v0.0.0-20230810033253-352e893a4cad
30-
google.golang.org/grpc v1.57.0
29+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
30+
google.golang.org/grpc v1.58.0
3131
google.golang.org/protobuf v1.31.0
3232
gopkg.in/yaml.v3 v3.0.1
3333
)
@@ -39,42 +39,42 @@ require (
3939
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
4040
github.com/eapache/queue v1.1.0 // indirect
4141
github.com/golang/protobuf v1.5.3 // indirect
42-
github.com/google/uuid v1.3.0 // indirect
42+
github.com/google/uuid v1.3.1 // indirect
4343
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
44-
github.com/klauspost/compress v1.16.5 // indirect
44+
github.com/klauspost/compress v1.16.7 // indirect
4545
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
4646
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
4747
github.com/minio/highwayhash v1.0.2 // indirect
4848
github.com/nats-io/jwt/v2 v2.3.0 // indirect
49-
github.com/nats-io/nats.go v1.26.0 // indirect
49+
github.com/nats-io/nats.go v1.28.0 // indirect
5050
github.com/nats-io/nkeys v0.4.4 // indirect
5151
github.com/nats-io/nuid v1.0.1 // indirect
5252
github.com/pion/datachannel v1.5.5 // indirect
5353
github.com/pion/dtls/v2 v2.2.7 // indirect
54-
github.com/pion/ice/v2 v2.3.9 // indirect
55-
github.com/pion/interceptor v0.1.17 // indirect
56-
github.com/pion/mdns v0.0.7 // indirect
54+
github.com/pion/ice/v2 v2.3.11 // indirect
55+
github.com/pion/interceptor v0.1.18 // indirect
56+
github.com/pion/mdns v0.0.8 // indirect
5757
github.com/pion/randutil v0.1.0 // indirect
5858
github.com/pion/rtcp v1.2.10 // indirect
59-
github.com/pion/rtp v1.8.0 // indirect
60-
github.com/pion/sctp v1.8.7 // indirect
61-
github.com/pion/srtp/v2 v2.0.16 // indirect
59+
github.com/pion/rtp v1.8.1 // indirect
60+
github.com/pion/sctp v1.8.8 // indirect
61+
github.com/pion/srtp/v2 v2.0.17 // indirect
6262
github.com/pion/stun v0.6.1 // indirect
63-
github.com/pion/transport/v2 v2.2.1 // indirect
64-
github.com/pion/turn/v2 v2.1.2 // indirect
63+
github.com/pion/transport/v2 v2.2.3 // indirect
64+
github.com/pion/turn/v2 v2.1.3 // indirect
6565
github.com/pmezard/go-difflib v1.0.0 // indirect
6666
github.com/prometheus/client_model v0.3.0 // indirect
6767
github.com/prometheus/common v0.42.0 // indirect
6868
github.com/prometheus/procfs v0.10.1 // indirect
6969
github.com/rogpeppe/go-internal v1.9.0 // indirect
7070
go.uber.org/multierr v1.10.0 // indirect
71-
golang.org/x/crypto v0.11.0 // indirect
72-
golang.org/x/mod v0.11.0 // indirect
73-
golang.org/x/net v0.12.0 // indirect
74-
golang.org/x/sync v0.2.0 // indirect
75-
golang.org/x/sys v0.10.0 // indirect
76-
golang.org/x/text v0.11.0 // indirect
71+
golang.org/x/crypto v0.13.0 // indirect
72+
golang.org/x/mod v0.12.0 // indirect
73+
golang.org/x/net v0.15.0 // indirect
74+
golang.org/x/sync v0.3.0 // indirect
75+
golang.org/x/sys v0.12.0 // indirect
76+
golang.org/x/text v0.13.0 // indirect
7777
golang.org/x/time v0.3.0 // indirect
78-
golang.org/x/tools v0.9.3 // indirect
79-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
78+
golang.org/x/tools v0.13.0 // indirect
79+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect
8080
)

0 commit comments

Comments
 (0)