react-native-vision-camera/ios/Extensions/AVCapturePhotoOutput+mirror.swift

20 lines
375 B
Swift
Raw Normal View History

2021-02-19 08:28:05 -07:00
//
// AVCapturePhotoOutput+mirror.swift
// Cuvent
//
// Created by Marc Rousavy on 18.01.21.
// Copyright © 2021 Facebook. All rights reserved.
//
import AVFoundation
extension AVCapturePhotoOutput {
2021-03-09 02:53:29 -07:00
func mirror() {
connections.forEach { connection in
if connection.isVideoMirroringSupported {
connection.isVideoMirrored = true
}
2021-02-19 08:28:05 -07:00
}
2021-03-09 02:53:29 -07:00
}
2021-02-19 08:28:05 -07:00
}