|
@@ -517,9 +517,12 @@ public class PQGPUImagePlayerView: UIView {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- for (index, filter) in cacheFilters.enumerated() {
|
|
|
- FilterLog(2, message: " 初始化 config create currentSticker timelinein \(String(describing: filter.stickerInfo?.timelineIn)) timelineout \(String(describing: filter.stickerInfo?.timelineOut)) in :\(String(describing: filter.stickerInfo?.model_in)) out \(String(describing: filter.stickerInfo?.out)) index\(index)")
|
|
|
+ DispatchQueue.global().async {[weak self] in
|
|
|
+ if let strongSelf = self {
|
|
|
+ for (index, filter) in strongSelf.cacheFilters.enumerated() {
|
|
|
+ FilterLog(2, message: " 初始化 config create currentSticker timelinein \(String(describing: filter.stickerInfo?.timelineIn)) timelineout \(String(describing: filter.stickerInfo?.timelineOut)) in :\(String(describing: filter.stickerInfo?.model_in)) out \(String(describing: filter.stickerInfo?.out)) index\(index)")
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if(cacheFilters.first != nil){
|