Skip to content

Commit

Permalink
1.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Filistovich committed Apr 30, 2022
1 parent 4497a5b commit 47066c1
Show file tree
Hide file tree
Showing 29 changed files with 114 additions and 1,008 deletions.
10 changes: 5 additions & 5 deletions VEEffectsSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>VEEffectsSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>VEEffectsSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
#ifndef VEEFFECTSSDK_SWIFT_H
#define VEEFFECTSSDK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -184,6 +184,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
Expand All @@ -209,7 +216,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif

@class NSString;
@class NSNumber;

SWIFT_CLASS("_TtC12VEEffectsSDK14CameraLutStage")
@interface CameraLutStage : NSObject
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name VEEffectsSDK
import AVFoundation
import BanubaLicenseServicingSDK
Expand All @@ -16,7 +16,7 @@ import UIKit
import VideoEditor
import _Concurrency
@_hasMissingDesignatedInitializers public class VideoCompositionRenderQueue {
public static var queue: Dispatch.DispatchQueue
public static let queue: Dispatch.DispatchQueue
@objc deinit
}
public class ShapeDrawer : VideoEditor.CompositionRenderering {
Expand Down Expand Up @@ -146,12 +146,12 @@ public class ImageEffectInfo {
@objc deinit
}
public struct EffectIDs {
public static var colorEffectStartId: Swift.UInt
public static var maskEffectStartId: Swift.UInt
public static var speedEffectStartId: Swift.UInt
public static var visualEffectStartId: Swift.UInt
public static var transformEffectId: Swift.UInt
public static var pixelateEffectId: Swift.UInt
public static let colorEffectStartId: Swift.UInt
public static let maskEffectStartId: Swift.UInt
public static let speedEffectStartId: Swift.UInt
public static let visualEffectStartId: Swift.UInt
public static let transformEffectId: Swift.UInt
public static let pixelateEffectId: Swift.UInt
}
public protocol EffectRenderer {
func render(in pixelBuffer: CoreVideo.CVPixelBuffer, source: CoreVideo.CVPixelBuffer, sampleTime: CoreMedia.CMTime, startTime: CoreMedia.CMTime, path: Swift.String, additionalParameters: [Swift.String : Any]?)
Expand Down Expand Up @@ -267,3 +267,12 @@ public enum SpeedEffectType : Swift.String, Swift.CaseIterable {
get
}
}
extension VEEffectsSDK.EditorEffectKey : Swift.Equatable {}
extension VEEffectsSDK.EditorEffectKey : Swift.Hashable {}
extension VEEffectsSDK.EditorEffectKey : Swift.RawRepresentable {}
extension VEEffectsSDK.VisualEffectApplicatorType : Swift.Equatable {}
extension VEEffectsSDK.VisualEffectApplicatorType : Swift.Hashable {}
extension VEEffectsSDK.VisualEffectApplicatorType : Swift.RawRepresentable {}
extension VEEffectsSDK.SpeedEffectType : Swift.Equatable {}
extension VEEffectsSDK.SpeedEffectType : Swift.Hashable {}
extension VEEffectsSDK.SpeedEffectType : Swift.RawRepresentable {}
Binary file not shown.

This file was deleted.

Binary file not shown.
Loading

0 comments on commit 47066c1

Please sign in to comment.