diff --git a/submodules/LegacyComponents/Sources/PGVideoMovie.h b/submodules/LegacyComponents/Sources/PGVideoMovie.h index fc89958f80..834a84a5a9 100755 --- a/submodules/LegacyComponents/Sources/PGVideoMovie.h +++ b/submodules/LegacyComponents/Sources/PGVideoMovie.h @@ -6,13 +6,13 @@ @interface PGVideoMovie : GPUImageOutput @property (readwrite, retain) AVAsset *asset; -@property (readonly, assign) bool shouldRepeat; +@property (nonatomic, assign) bool shouldRepeat; @property (readonly, nonatomic) CGFloat progress; @property (readonly, nonatomic) AVAssetReader *assetReader; -@property (readonly, nonatomic) BOOL audioEncodingIsFinished; -@property (readonly, nonatomic) BOOL videoEncodingIsFinished; +@property (readonly, nonatomic) bool audioEncodingIsFinished; +@property (readonly, nonatomic) bool videoEncodingIsFinished; - (instancetype)initWithAsset:(AVAsset *)asset;