Skip to content

Commit

Permalink
Merge branch 'release/sora-ios-sdk-2022.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Aug 4, 2022
2 parents 874ec7d + 9986537 commit 14bb321
Show file tree
Hide file tree
Showing 15 changed files with 43 additions and 56 deletions.
12 changes: 11 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,21 @@

## develop

## sora-ios-sdk-2022.5.0

- [UPDATE] システム条件を変更する
- WebRTC SFU Sora 2022.1.1 以降
- Xcode 13.4.1
- @miosakuma
- [FIX] DecoStreamingSample の iOS 14 初期に発生していたクラッシュ不具合の暫定処理を削除
- iOS 14.6 で問題が解消されていたため当初の処理に戻す
- @szktty

## sora-ios-sdk-2022.4.0

- [UPDATE] システム条件を変更する
- macOS 12.3 以降
- WebRTC SFU Sora 2022.1 以降
- WebRTC SFU Sora 2022.1.0 以降
- @miosakuma
- [ADD] VideoChatSample, SimulcastSample, SpotlightSample で bundle_id を設定する
- @enm10k
Expand Down
2 changes: 1 addition & 1 deletion DataChannelSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'DataChannelSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'
pod 'SwiftLint'
pod 'SwiftFormat/CLI'
end
2 changes: 1 addition & 1 deletion DataChannelSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでの動作を保証しません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,12 @@ class PublisherVideoViewController: UIViewController, UIPickerViewDelegate, UIPi
// captureSessionをセットアップしたのち、映像キャプチャを開始します。
// これはcaptureSessionQueue内で実行されるため、captureSessionQueueが停止されている間は処理が先に進みません。
// これによって、ユーザーから許可を得るまでの間、処理を効果的に一時停止することができます。
// 注: iOS14 で以下のコードを実行するとクラッシュしてしまうため、一時的にキューの使用を止めています。
/*
captureSessionQueue.async { [weak self] in
if let finished = self?.configurationFinished, !finished {
self?.configureCaptureSession()
}
self?.captureSession.startRunning()
}
*/
if !configurationFinished {
configureCaptureSession()
captureSessionQueue.async { [weak self] in
if let finished = self?.configurationFinished, !finished {
self?.configureCaptureSession()
}
self?.captureSession.startRunning()
}
captureSession.startRunning()

// 配信画面に遷移してきたら、videoViewをvideoRendererに設定することで、配信者側の動画を画面に表示させます。
SoraSDKManager.shared.currentMediaChannel?.senderStream?.videoRenderer = videoView
Expand All @@ -131,13 +124,9 @@ class PublisherVideoViewController: UIViewController, UIPickerViewDelegate, UIPi
super.viewWillDisappear(animated)

// captureSessionを停止します。
// 注: iOS14 で以下のコードを実行するとクラッシュしてしまうため、一時的にキューの使用を止めています。
/*
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
}
*/
captureSession.stopRunning()
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
}

// 配信画面を何らかの理由で抜けることになったら、videoRendererをnilに戻すことで、videoViewへの動画表示をストップさせます。
SoraSDKManager.shared.currentMediaChannel?.senderStream?.videoRenderer = nil
Expand All @@ -158,30 +147,18 @@ class PublisherVideoViewController: UIViewController, UIPickerViewDelegate, UIPi
switch captureDevicePosition {
case .front:
captureDevicePosition = .back
// 注: iOS14 で以下のコードを実行するとクラッシュしてしまうため、一時的にキューの使用を止めています。
/*
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
self?.configureCaptureSession()
self?.captureSession.startRunning()
}
*/
captureSession.stopRunning()
configureCaptureSession()
captureSession.startRunning()
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
self?.configureCaptureSession()
self?.captureSession.startRunning()
}
case .back:
captureDevicePosition = .front
// 注: iOS14 で以下のコードを実行するとクラッシュしてしまうため、一時的にキューの使用を止めています。
/*
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
self?.configureCaptureSession()
self?.captureSession.startRunning()
}
*/
captureSession.stopRunning()
configureCaptureSession()
captureSession.startRunning()
captureSessionQueue.async { [weak self] in
self?.captureSession.stopRunning()
self?.configureCaptureSession()
self?.captureSession.startRunning()
}
default:
break
}
Expand Down
2 changes: 1 addition & 1 deletion DecoStreamingSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'DecoStreamingSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'

pod 'SwiftLint'
pod 'SwiftFormat/CLI'
Expand Down
2 changes: 1 addition & 1 deletion DecoStreamingSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sora iOS SDK を用いて実装する方法を説明しています。

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでは動作が保証されません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Please read https://github.com/shiguredo/oss before use.
- iOS 13.0 以降
- アーキテクチャ arm64, x86_64 (シミュレーターの動作は未保証)
- macOS 12.3 以降
- Xcode 13.4
- Xcode 13.4.1
- Swift 5.6.1
- CocoaPods 1.11.2 以降
- WebRTC SFU Sora 2022.1 以降
- WebRTC SFU Sora 2022.1.1 以降

Xcode と Swift のバージョンによっては、 CocoaPods で取得できるバイナリに互換性がない可能性があります。

Expand Down
2 changes: 1 addition & 1 deletion ScreenCastSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'ScreenCastSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'

pod 'SwiftLint'
pod 'SwiftFormat/CLI'
Expand Down
2 changes: 1 addition & 1 deletion ScreenCastSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでは動作が保証されません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down
2 changes: 1 addition & 1 deletion SimulcastSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'SimulcastSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'

pod 'SwiftLint'
pod 'SwiftFormat/CLI'
Expand Down
2 changes: 1 addition & 1 deletion SimulcastSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでは動作が保証されません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down
2 changes: 1 addition & 1 deletion SpotlightSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'SpotlightSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'

pod 'SwiftLint'
pod 'SwiftFormat/CLI'
Expand Down
2 changes: 1 addition & 1 deletion SpotlightSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでは動作が保証されません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down
2 changes: 1 addition & 1 deletion VideoChatSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'VideoChatSample' do
use_frameworks!
pod 'Sora', '2022.4.0'
pod 'Sora', '2022.5.0'

pod 'SwiftLint'
pod 'SwiftFormat/CLI'
Expand Down
2 changes: 1 addition & 1 deletion VideoChatSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- iOS 13.0 以降がインストールされたデバイス (iPhone / iPad どちらにも対応しています)
- このサンプルアプリはシミュレータでは動作が保証されません。
- Xcode 13.4 以降
- Xcode 13.4.1 以降
- 本サンプルアプリでは Swift 5.6.1 を使用しています。
- CocoaPods 1.11.2 以降

Expand Down

0 comments on commit 14bb321

Please sign in to comment.