-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New VideoView.pinchToZoom and pinchToZoomAutoZoomOut properties which work for iOS only. Seamless zoom in/out will work for supported devices such as .builtInTripleCamera. This is currently only for local tracks (capturing). https://github.com/livekit/client-sdk-swift/assets/548776/2bc5fabb-3184-4613-9d3e-c8a236a15189
- Loading branch information
1 parent
7dd9a43
commit 4821466
Showing
5 changed files
with
122 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2024 LiveKit | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import AVFoundation | ||
|
||
public extension AVCaptureDevice { | ||
/// Helper extension to return the acual direction the camera is facing. | ||
/// In macOS, the Facetime camera's position is .unspecified but this property will return .front for such cases. | ||
var facingPosition: AVCaptureDevice.Position { | ||
if deviceType == .builtInWideAngleCamera, position == .unspecified { | ||
return .front | ||
} | ||
|
||
return position | ||
} | ||
} | ||
|
||
public extension Collection where Element: AVCaptureDevice { | ||
/// Helper extension to return only a single suggested device for each position. | ||
func singleDeviceforEachPosition() -> [AVCaptureDevice] { | ||
let front = first { $0.facingPosition == .front } | ||
let back = first { $0.facingPosition == .back } | ||
return [front, back].compactMap { $0 } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters