File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 2020 - libwebrtc の対象バージョンに追従した
2121 - < https://webrtc.googlesource.com/src/+/9b81d2c954128831c62d8a0657c7f955b3c02d32 >
2222 - @miosakuma
23+ - [ ADD] SignalingOffer に項目を追加する
24+ - 追加する項目
25+ - ` version `
26+ - ` simulcastMulticodec `
27+ - ` spotlight `
28+ - ` channelId `
29+ - ` sessionId `
30+ - ` audio `
31+ - ` audioCodecType `
32+ - ` audioBitRate `
33+ - ` video `
34+ - ` videoCodecType `
35+ - ` videoBitRate `
36+ - @zztkm
2337
2438### misc
2539
Original file line number Diff line number Diff line change @@ -437,9 +437,6 @@ public struct SignalingOffer {
437437 /// mid
438438 public let mid : [ String : String ] ?
439439
440- /// マルチストリーム
441- public let multistream : Bool ?
442-
443440 /// サイマルキャスト有効 / 無効フラグ
444441 public let simulcast : Bool ?
445442
@@ -999,7 +996,6 @@ extension SignalingOffer: Codable {
999996 case mid
1000997 case simulcast
1001998 case version
1002- case multistream
1003999 case simulcast_multicodec
10041000 case spotlight
10051001 case channel_id
@@ -1029,7 +1025,6 @@ extension SignalingOffer: Codable {
10291025 try container. decodeIfPresent ( [ Encoding ] . self,
10301026 forKey: . encodings)
10311027 mid = try container. decodeIfPresent ( [ String : String ] . self, forKey: . mid)
1032- multistream = try container. decodeIfPresent ( Bool . self, forKey: . multistream)
10331028 simulcast = try container. decodeIfPresent ( Bool . self, forKey: . simulcast)
10341029 simulcastMulticodec = try container. decodeIfPresent ( Bool . self, forKey: . simulcast_multicodec)
10351030 spotlight = try container. decodeIfPresent ( Bool . self, forKey: . spotlight)
You can’t perform that action at this time.
0 commit comments