initial commit

This commit is contained in:
Caleb
2026-03-01 15:59:27 +08:00
commit a9e97d56cb
1426 changed files with 172367 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
//
// FUVideoComponentDefines.h
// FUVideoComponent
//
// Created by 项林平 on 2022/5/16.
//
#ifndef FUVideoComponentDefines_h
#define FUVideoComponentDefines_h
/// 弱引用对象
#define FUWeakify(object) autoreleasepool{} __weak __typeof__(object) weak##_##object = object;
/// 强引用对象
#define FUStrongify(object) autoreleasepool{} __typeof__(object) object = weak##_##object;
/// 视频方向
typedef NS_ENUM(NSInteger, FUVideoOrientation) {
FUVideoOrientationPortrait = 0,
FUVideoOrientationLandscapeRight,
FUVideoOrientationUpsideDown,
FUVideoOrientationLandscapeLeft
};
#endif /* FUVideoComponentDefines_h */