├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── LICENSE ├── Package.swift ├── README.md ├── RxAVFoundation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── RxAVFoundation.xcscheme ├── RxAVFoundation ├── AVCaptureSession+Rx.swift ├── Global.swift ├── Info.plist ├── RxAVCaptureDataOutputSynchronizerDelegate.swift ├── RxAVCaptureDepthDataOutputDelegate.swift ├── RxAVCaptureMetadataOutputObjectsDelegate.swift ├── RxAVCapturePhotoCaptureDelegate.swift ├── RxAVCaptureVideoDataOutputSampleBufferDelegate.swift └── RxAVFoundation.h └── RxAVFoundationTests ├── Info.plist └── RxAVFoundationTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 4.3.1 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "4.3.1" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/README.md -------------------------------------------------------------------------------- /RxAVFoundation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxAVFoundation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxAVFoundation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxAVFoundation.xcodeproj/xcshareddata/xcschemes/RxAVFoundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation.xcodeproj/xcshareddata/xcschemes/RxAVFoundation.xcscheme -------------------------------------------------------------------------------- /RxAVFoundation/AVCaptureSession+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/AVCaptureSession+Rx.swift -------------------------------------------------------------------------------- /RxAVFoundation/Global.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/Global.swift -------------------------------------------------------------------------------- /RxAVFoundation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/Info.plist -------------------------------------------------------------------------------- /RxAVFoundation/RxAVCaptureDataOutputSynchronizerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVCaptureDataOutputSynchronizerDelegate.swift -------------------------------------------------------------------------------- /RxAVFoundation/RxAVCaptureDepthDataOutputDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVCaptureDepthDataOutputDelegate.swift -------------------------------------------------------------------------------- /RxAVFoundation/RxAVCaptureMetadataOutputObjectsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVCaptureMetadataOutputObjectsDelegate.swift -------------------------------------------------------------------------------- /RxAVFoundation/RxAVCapturePhotoCaptureDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVCapturePhotoCaptureDelegate.swift -------------------------------------------------------------------------------- /RxAVFoundation/RxAVCaptureVideoDataOutputSampleBufferDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVCaptureVideoDataOutputSampleBufferDelegate.swift -------------------------------------------------------------------------------- /RxAVFoundation/RxAVFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundation/RxAVFoundation.h -------------------------------------------------------------------------------- /RxAVFoundationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundationTests/Info.plist -------------------------------------------------------------------------------- /RxAVFoundationTests/RxAVFoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxAVFoundation/HEAD/RxAVFoundationTests/RxAVFoundationTests.swift --------------------------------------------------------------------------------