mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
[Infer] change atomic properties to nonatomic (#1932)
This commit is contained in:
@@ -40,12 +40,12 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
- (void)pause;
|
||||
- (BOOL)isPlaying;
|
||||
|
||||
@property (nullable, atomic, strong, readwrite) AVAsset *asset;
|
||||
@property (nullable, atomic, strong, readwrite) AVVideoComposition *videoComposition;
|
||||
@property (nullable, atomic, strong, readwrite) AVAudioMix *audioMix;
|
||||
@property (nullable, nonatomic, strong, readwrite) AVAsset *asset;
|
||||
@property (nullable, nonatomic, strong, readwrite) AVVideoComposition *videoComposition;
|
||||
@property (nullable, nonatomic, strong, readwrite) AVAudioMix *audioMix;
|
||||
|
||||
@property (nullable, atomic, strong, readonly) AVPlayer *player;
|
||||
@property (nullable, atomic, strong, readonly) AVPlayerItem *currentItem;
|
||||
@property (nullable, nonatomic, strong, readonly) AVPlayer *player;
|
||||
@property (nullable, nonatomic, strong, readonly) AVPlayerItem *currentItem;
|
||||
|
||||
|
||||
/**
|
||||
@@ -63,9 +63,9 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
@property (nonatomic, assign) int32_t periodicTimeObserverTimescale;
|
||||
|
||||
//! Defaults to AVLayerVideoGravityResizeAspect
|
||||
@property (atomic) NSString *gravity;
|
||||
@property (nonatomic) NSString *gravity;
|
||||
|
||||
@property (nullable, atomic, weak, readwrite) id<ASVideoNodeDelegate, ASNetworkImageNodeDelegate> delegate;
|
||||
@property (nullable, nonatomic, weak, readwrite) id<ASVideoNodeDelegate, ASNetworkImageNodeDelegate> delegate;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user