Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2025 年 6 月リリースでレガシー ストリーム機能が削除される予定のため、multistreamEnabled を非推奨にする #202

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
- @zztkm
- [UPDATE] `SignalingOffer` に `simulcast` を追加する
- @zztkm
- [UPDATE] multistreamEnabled を非推奨にする
- Sora のレガシーストリーム機能が 2025 年 6 月リリースにて廃止されるため
- @zztkm
- [UPDATE] GitHub Actions の定期実行をやめる
- build.yml の起動イベントから schedule を削除
- @zztkm
Expand Down
1 change: 1 addition & 0 deletions Sora/Configuration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public struct Configuration {
public var role: Role

/// マルチストリームの可否
@available(*, deprecated, message: "レガシーストリーム機能は 2025 年 6 月リリースの Sora にて廃止します。")
public var multistreamEnabled: Bool

/// :nodoc:
Expand Down
2 changes: 2 additions & 0 deletions Sora/MediaChannelConfiguration.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import Foundation

// TODO(zztkm): MediaChannelConfiguration は現在利用されていないため、不要かもしれない
public class MediaChannelConfiguration {
public static var maxBitRate = 5000

public var connectionMetadata: String?
public var connectionTimeout: Int = 30
@available(*, deprecated, message: "レガシーストリーム機能は 2025 年 6 月リリースの Sora にて廃止します。")
public var multistreamEnabled: Bool = false
public var videoCodec: VideoCodec = .default
public var audioCodec: AudioCodec = .default
Expand Down
1 change: 1 addition & 0 deletions Sora/Signaling.swift
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ public struct SignalingConnect {
public var sdp: String?

/// マルチストリームの可否
@available(*, deprecated, message: "レガシーストリーム機能は 2025 年 6 月リリースの Sora にて廃止します。")
public var multistreamEnabled: Bool?

/// 映像の可否
Expand Down