diff --git a/uni_modules/uni-video/package.json b/uni_modules/uni-video/package.json index 29c40635a242f3878cbbebfa88ccedb45fcc40f0..54d0eb341c3f7bc4abd856bda26726c39dfb0306 100644 --- a/uni_modules/uni-video/package.json +++ b/uni_modules/uni-video/package.json @@ -32,7 +32,8 @@ }, "uni_modules": { "dependencies": [ - "uni-framework" + "uni-framework", + "uni-fileSystemManager" ], "uni-ext-api": { "uni": { diff --git a/uni_modules/uni-video/utssdk/app-android/index.uts b/uni_modules/uni-video/utssdk/app-android/index.uts index b840337370fed0e0512eafa755f8160f9e02e2bc..d4c505332f60e750b049e3095849f1897f710b5a 100644 --- a/uni_modules/uni-video/utssdk/app-android/index.uts +++ b/uni_modules/uni-video/utssdk/app-android/index.uts @@ -7,7 +7,7 @@ export const createVideoContext : CreateVideoContext = function (videoId : strin if (component == null) { const pages = getCurrentPages(); if (pages.length > 0) { - videoElement = pages[pages.length - 1].$el?.parentNode?.querySelector('#' + videoId); + videoElement = pages[pages.length - 1].vm!.$el?.parentNode?.querySelector('#' + videoId); } } else { videoElement = component.$el?.parentNode?.querySelector('#' + videoId); diff --git a/uni_modules/uni-video/utssdk/app-android/index.vue b/uni_modules/uni-video/utssdk/app-android/index.vue index 0b0bf48b4fb8383d25e2a3605e60222cdfe86064..37f01529d8659116dd0fd2ce61fd083ae45f4c26 100644 --- a/uni_modules/uni-video/utssdk/app-android/index.vue +++ b/uni_modules/uni-video/utssdk/app-android/index.vue @@ -20,6 +20,8 @@ import ViewGroup from 'android.view.ViewGroup'; import OnHierarchyChangeListener from 'android.view.ViewGroup.OnHierarchyChangeListener'; import View from 'android.view.View'; + import OnKeyListener from 'android.view.View.OnKeyListener'; + import KeyEvent from 'android.view.KeyEvent'; import WindowManager from 'android.view.WindowManager'; import TextUtils from 'android.text.TextUtils'; import JSONObject from 'org.json.JSONObject'; @@ -32,6 +34,8 @@ import Glide from 'com.bumptech.glide.Glide'; + import File from 'java.io.File'; + import { Danmu, RequestFullScreenOptions } from '../interface.uts'; import { UniVideoTimeUpdateEventDetail, UniVideoFullScreenChangeEventDetail, UniVideoProgressEventDetail, UniVideoFullScreenClickEventDetail, UniVideoControlsToggleEventDetail } from '../interface.uts'; import { UniVideoTimeUpdateEventImpl, UniVideoFullScreenChangeEventImpl, UniVideoErrorEventImpl, UniVideoProgressEventImpl, UniVideoFullScreenClickEventImpl, UniVideoControlsToggleEventImpl } from './event.uts'; @@ -52,7 +56,8 @@ screenHeight: 0, layoutWidth: 0, layoutHeight: 0, - videoBox: null as FrameLayout | null + videoBox: null as FrameLayout | null, + copyPath: '' }; }, emits: ["play", "pause", "ended", "timeupdate", "fullscreenchange", "waiting", "error", "progress", "fullscreenclick", "controlstoggle"], @@ -402,6 +407,9 @@ this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this)); this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this)); this.playerView?.setOnHierarchyChangeListener(new OnHierarchyChangeListenerImpl(this)); + this.playerView?.setOnKeyListener(new OnKeyListenerImpl(this)); + this.playerView?.setFocusable(true); + this.playerView?.setFocusableInTouchMode(true); }, NVLayouted() { if (!this.isFirstLayoutFinished) { @@ -421,9 +429,11 @@ if (isFullScreenChanged) { isFullScreenChanged = false; if (this.playerView!.isFullscreen()) { + this.playerView?.requestFocus(); if (this.getLayoutWidth() != this.screenHeight) this.setStyleWidth(this.screenHeight.toFloat()); if (this.getLayoutHeight() != this.screenWidth) this.setStyleHeight(this.screenWidth.toFloat()); } else { + this.playerView?.clearFocus(); if (this.getLayoutWidth() != this.layoutWidth) this.setStyleWidth(this.layoutWidth.toFloat()); if (this.getLayoutHeight() != this.layoutHeight) this.setStyleHeight(this.layoutHeight.toFloat()); } @@ -434,6 +444,10 @@ this.playerView?.onDestroy(); this.playerView = null; } + if (!this.copyPath.isEmpty()) { + const file = new File(this.copyPath); + if (file.exists()) file.delete(); + } }, NVRecycler() { this.playerView = this.$el; @@ -577,7 +591,21 @@ if (src.startsWith("https://") || src.startsWith("http://") || src.startsWith("rtmp://") || src.startsWith("rtsp://")) { // 网络地址 return src; } else { // 本地地址 - return UTSAndroid.convert2AbsFullPath(src); + const path = UTSAndroid.convert2AbsFullPath(src); + if (path.startsWith('/android_asset')) { + const destDirPath = UTSAndroid.getAppContext()!.getCacheDir().getAbsolutePath() + '/uni-net-cache/video/'; + const destDir = new File(destDirPath); + if (!destDir.exists()) destDir.mkdirs(); + const destFilePath = destDirPath + path.substring(path.lastIndexOf('/') + 1); + const destFile = new File(destFilePath); + if (!destFile.exists()) { + destFile.createNewFile(); + uni.getFileSystemManager().copyFileSync(src, destFilePath); + } + this.copyPath = destFilePath; + return destFilePath; + } + return path; } }, /** @@ -604,6 +632,8 @@ this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this)); this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this)); this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this)); + this.playerView?.setOnHierarchyChangeListener(new OnHierarchyChangeListenerImpl(this)); + this.playerView?.setOnKeyListener(new OnKeyListenerImpl(this)); } } } @@ -653,7 +683,13 @@ this.comp.$emit("fullscreenclick", new UniVideoFullScreenClickEventImpl(JSON.parse(msg)!)); break; case "controlstoggle": - this.comp.$emit("controlstoggle", new UniVideoControlsToggleEventImpl(JSON.parse(msg)!)); + const detail = JSON.parse(msg)!; + if (detail.show && this.playerView.isFullscreen()) { + setTimeout(() => { + if (!this.playerView.isFocused()) this.playerView.requestFocus(); + }, 100); + } + this.comp.$emit("controlstoggle", new UniVideoControlsToggleEventImpl(detail)); break; case "error": this.comp.$emit("error", new UniVideoErrorEventImpl(new VideoErrorImpl(100001))); @@ -762,8 +798,9 @@ this.playerView.pause(); this.playerView.setCenterPlayBntVisibility((this.comp as VideoComponent).showCenterPlayBtn); (this.comp as VideoComponent).currentPos = this.playerView.getCurPosition(); - (this.comp as VideoComponent).currentFrame?.recycle(); - (this.comp as VideoComponent).currentFrame = this.playerView.captureFrame(); + const frame = this.playerView.captureFrame(); + (this.comp as VideoComponent).currentFrame = frame; + this.playerView.showLastFrame(frame); } } } @@ -793,4 +830,26 @@ } } + + class OnKeyListenerImpl implements OnKeyListener { + + private comp : UTSContainer; + private playerView : IjkPlayerView; + + constructor(comp : UTSContainer) { + super(); + this.comp = comp; + this.playerView = comp.$el!; + } + + override onKey(v : View, keyCode : Int, event : KeyEvent) : Boolean { + if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) { + if (this.playerView.isFullscreen()) { + (this.comp as VideoComponent).exitFullScreen(); + return true; + } + } + return false; + } + } \ No newline at end of file diff --git a/uni_modules/uni-video/utssdk/app-android/libs/videoplayer.aar b/uni_modules/uni-video/utssdk/app-android/libs/videoplayer.aar index 5ed5a187459d8ef3797406dbdecff1427afdc1cd..42470f0d80207f1b09c780324e7cb44b32ecf37d 100644 Binary files a/uni_modules/uni-video/utssdk/app-android/libs/videoplayer.aar and b/uni_modules/uni-video/utssdk/app-android/libs/videoplayer.aar differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/Info.plist b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/Info.plist index 41698effd8fbf546f37532f67a0c977df5201bae..53540d72ac01bb2f6f1bfd113f59915883c63201 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/Info.plist +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/Info.plist @@ -8,32 +8,32 @@ BinaryPath DCUniVideo.framework/DCUniVideo LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath DCUniVideo.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator BinaryPath DCUniVideo.framework/DCUniVideo LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath DCUniVideo.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator CFBundlePackageType diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/DCUniVideo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/DCUniVideo index efa787acee07d8099f14e410a00f7e3255a0e8b3..5074acb575f004edc64bdd42d489ced870f40e11 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/DCUniVideo and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/DCUniVideo differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Headers/DCUniVideo-Swift.h b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Headers/DCUniVideo-Swift.h index 8223c822519d737a3f1b7de291fa21c2b639b74b..a41f2d205d63dc8e7c525d2dcada15319ee3491d 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Headers/DCUniVideo-Swift.h +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Headers/DCUniVideo-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef DCUNIVIDEO_SWIFT_H #define DCUNIVIDEO_SWIFT_H #pragma clang diagnostic push @@ -339,6 +339,15 @@ SWIFT_CLASS("_TtC10DCUniVideo13HJDanmakuView") +SWIFT_CLASS("_TtC10DCUniVideo23UniMonitoredContentView") +@interface UniMonitoredContentView : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)didAddSubview:(UIView * _Nonnull)subview; +- (void)layoutSubviews; +@end + + SWIFT_CLASS("_TtC10DCUniVideo20UniVideoPlayerConfig") @interface UniVideoPlayerConfig : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Info.plist b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Info.plist index 92ee829279f33d13de5024c82ee8b317b64d074a..a51882a0d1bf1a2a660c03a84288f857b3b5b3e2 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Info.plist and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Info.plist differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo index 637654f61a6c9b4540c3d453ef9f32fabe03a637..2687b4f948fd1262c921f20f3ea2552c0337b8f1 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.abi.json b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.abi.json index 4bd22e1b8af1d2b5c24d335415fe555244d0eba8..8bedc4f130192f54fb5b6e09e2188b26351b51b8 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.abi.json +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.abi.json @@ -1572,6 +1572,60 @@ "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "videoPlayerWillEnterFullScreen", + "printedName": "videoPlayerWillEnterFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "videoPlayerWillExitFullScreen", + "printedName": "videoPlayerWillExitFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "videoPlayerExitFullScreen", @@ -1901,6 +1955,161 @@ "AccessControl" ] }, + { + "kind": "TypeDecl", + "name": "UniMonitoredContentView", + "printedName": "UniMonitoredContentView", + "children": [ + { + "kind": "Function", + "name": "didAddSubview", + "printedName": "didAddSubview(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)didAddSubview:", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC13didAddSubviewyySo6UIViewCF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "didAddSubview:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)layoutSubviews", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC14layoutSubviewsyyF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { "kind": "TypeDecl", "name": "UniVideoPlayerViewPresent", @@ -2104,7 +2313,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?" + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?" } ], "declKind": "Var", @@ -2129,12 +2338,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2164,12 +2373,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2216,14 +2425,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Var", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", "moduleName": "DCUniVideo", "declAttributes": [ "Final", @@ -2238,14 +2447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2265,14 +2474,14 @@ }, { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2292,8 +2501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2323,12 +2532,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2378,6 +2587,34 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "onVideoComponentReused", + "printedName": "onVideoComponentReused(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UniVideoPlayerConfig", + "printedName": "DCUniVideo.UniVideoPlayerConfig", + "usr": "c:@M@DCUniVideo@objc(cs)UniVideoPlayerConfig" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "play", @@ -3970,9 +4207,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC6zIndexSivp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl" ], "hasStorage": true, @@ -4057,9 +4294,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC14selectionStyleAA0cd9SelectionF0Ovp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -6046,7 +6283,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?" + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?" } ], "declKind": "Var", @@ -6055,9 +6292,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6072,12 +6309,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6105,12 +6342,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6154,7 +6391,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?" + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?" } ], "declKind": "Var", @@ -6163,9 +6400,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6180,12 +6417,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6213,12 +6450,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6271,9 +6508,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC10isPreparedSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6317,9 +6554,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC9isPlayingSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6363,9 +6600,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC13configurationAA0C13ConfigurationCvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "Final", "HasStorage", + "Custom", "AccessControl" ], "isLet": true, @@ -7388,7095 +7625,1824 @@ }, "ConstValues": [ { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 712, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 801, - "length": 5, - "value": "false" + "offset": 160, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 829, - "length": 6, - "value": "\"true\"" + "offset": 191, + "length": 3, + "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 917, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 3, + "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1079, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1210, - "length": 7, - "value": "\"FALSE\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "IntegerLiteral", - "offset": 4172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 160, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 3, - "value": "\"2\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 160, "length": 3, "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 191, "length": 3, "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 222, "length": 3, "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "FloatLiteral", "offset": 303, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 240, "length": 14, "value": "\"DCUniVideo.HJDanmakuModel\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 192, "length": 3, "value": "100" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 198, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 205, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 382, - "length": 19, - "value": "\"ijkio:cache:ffio:\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 727, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 1, - "value": "\".videoCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 829, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1153, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 1, - "value": "\".videoCacheMap\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1230, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1241, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1258, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 1509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 1544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1736, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1747, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1758, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2286, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2297, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3029, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3360, - "length": 8, - "value": "\"%02hhx\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", "kind": "IntegerLiteral", "offset": 361, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 705, - "length": 14, - "value": "\"video_volume\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 16, - "value": "\"MPVolumeSlider\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1013, - "length": 8, - "value": "\"音量\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1089, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 319, "length": 3, "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 459, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 529, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 657, "length": 4, "value": "30.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 794, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1802, + "offset": 2712, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1841, + "offset": 2751, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1881, + "offset": 2791, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1918, + "offset": 2828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1966, + "offset": 2876, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2001, + "offset": 2911, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2039, + "offset": 2949, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 2994, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2125, + "offset": 3035, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2168, + "offset": 3078, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2209, + "offset": 3119, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2247, + "offset": 3157, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2280, + "offset": 3190, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2363, + "offset": 3273, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "Array", - "offset": 2460, + "offset": 3370, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2709, + "offset": 3619, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 22, - "value": "\"UIRequiresFullScreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 149, + "length": 3, + "value": "155" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 369, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 382, + "length": 4, + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 3, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 394, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 6, - "value": "\"_doc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6166, - "length": 5, - "value": "\"..\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 602, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6205, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 615, "length": 4, - "value": "\".\/\"" + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6240, - "length": 18, - "value": "\"unifile:\/\/cache\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 627, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6289, - "length": 16, - "value": "\"unifile:\/\/usr\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 640, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6337, - "length": 20, - "value": "\"unifile:\/\/sandbox\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7007, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7182, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7211, - "length": 6, - "value": "\"rtsp\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7257, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7304, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7367, - "length": 5, - "value": "\"tcp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7382, - "length": 16, - "value": "\"rtsp_transport\"" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7475, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7486, - "length": 11, - "value": "\"reconnect\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7552, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7565, - "length": 5, - "value": "\"vol\"" + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7650, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7663, - "length": 5, - "value": "\"vol\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7751, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7780, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7807, - "length": 7, - "value": "\".m3u8\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7843, - "length": 7, - "value": "\".M3U8\"" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7855, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7894, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8112, - "length": 3, - "value": "\"1\"" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8125, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 8330, - "length": 1, - "value": "1" + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8341, - "length": 22, - "value": "\"enable-accurate-seek\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8696, - "length": 2, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8815, - "length": 24, - "value": "\"Cookie:\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8838, - "length": 1, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8903, - "length": 9, - "value": "\"headers\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9034, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9074, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9189, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9229, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9240, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9294, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, "length": 11, - "value": "\"useragent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9393, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9516, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9525, - "length": 1, - "value": "\"\r\n\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9629, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9700, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9879, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9890, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9986, - "length": 9, - "value": "\"max-fps\"" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10072, + "offset": 1145, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10083, - "length": 10, - "value": "\"opensles\"" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10276, - "length": 1, - "value": "1" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10287, - "length": 17, - "value": "\"mediacodec-hevc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1367, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10440, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1427, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10451, - "length": 8, - "value": "\"infbuf\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10536, - "length": 2, - "value": "25" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1740, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10548, - "length": 9, - "value": "\"max-fps\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10647, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1915, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10695, - "length": 20, - "value": "\"protocol_whitelist\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1974, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 11028, + "offset": 2034, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11299, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2151, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11427, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11918, - "length": 17, - "value": "\"cache_file_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12035, - "length": 16, - "value": "\"cache_map_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12139, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12231, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12242, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12383, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12396, - "length": 20, - "value": "\"analyzemaxduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12485, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12496, - "length": 17, - "value": "\"analyzeduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12582, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12589, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12601, - "length": 11, - "value": "\"probesize\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12915, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 13531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13578, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 14026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14225, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14301, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14356, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14479, - "length": 12, - "value": "\"user_agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14715, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14765, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14816, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14976, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15448, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15551, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15650, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16143, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16273, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16401, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16525, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17232, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17504, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17990, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 18038, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18467, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18795, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18828, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19171, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19487, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19576, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19788, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20064, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20311, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20865, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20893, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22043, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23198, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23277, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23376, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24607, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25629, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25684, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26062, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26121, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26499, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26617, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26632, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26643, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26667, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27010, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27024, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27080, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27307, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27475, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27620, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28616, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28651, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28691, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28732, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28740, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28779, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28796, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28819, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 29103, - "length": 3, - "value": "1.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 149, - "length": 3, - "value": "155" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 369, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 382, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 394, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 407, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 602, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 615, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 627, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 640, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 925, - "length": 4, - "value": "0.97" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "Array", - "offset": 996, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1238, - "length": 2, - "value": "79" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1271, - "length": 2, - "value": "76" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1318, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1465, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "BooleanLiteral", - "offset": 1503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1826, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1832, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1975, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1982, - "length": 3, - "value": "132" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2019, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2031, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2116, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "StringLiteral", - "offset": 2187, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2368, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2680, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2686, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2770, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2819, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2824, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3205, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3209, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3509, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3601, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3648, - "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3684, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 1170, - "length": 54, - "value": "\"AVSystemController_SystemVolumeDidChangeNotification\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3023, - "length": 55, - "value": "\"AVSystemController_AudioCategoryNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3155, - "length": 13, - "value": "\"Audio\/Video\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3237, - "length": 65, - "value": "\"AVSystemController_AudioVolumeChangeReasonNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3396, - "length": 22, - "value": "\"ExplicitVolumeChange\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3476, - "length": 53, - "value": "\"AVSystemController_AudioVolumeNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 3992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4420, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4686, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 4751, - "length": 9, - "value": "\"waiting\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5179, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5342, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5535, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5710, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 5752, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5796, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5830, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6083, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 6149, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 7451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7580, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8149, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8360, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 8502, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 8948, - "length": 7, - "value": "\"ended\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1427, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1550, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1740, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1915, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1974, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2151, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 4443, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5453, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7945, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7983, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8015, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8816, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9880, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9974, - "length": 2, - "value": "90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 10025, - "length": 3, - "value": "-90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 1200, - "length": 20, - "value": "\"DCUniVideo.UniVideoPlayerConfig\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 1007, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1663, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2630, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 3024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 3560, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 3731, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3901, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3928, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4112, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 4626, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4843, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5038, - "length": 14, - "value": "[(\"show\", true)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 5226, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5784, - "length": 15, - "value": "[(\"show\", false)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5904, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 6121, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6164, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7157, - "length": 5, - "value": "155.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7209, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7259, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7432, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuCell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 167, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 208, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 244, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 924, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 960, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1085, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1479, - "length": 13, - "value": "\"player_stop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1541, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 1595, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1606, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1631, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1901, - "length": 18, - "value": "\"video_ic_muteoff\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1968, - "length": 17, - "value": "\"video_ic_muteon\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2050, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2062, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 2178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2397, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2810, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 14, - "value": "\"slider_thumb\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3103, - "length": 2, - "value": "66" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3108, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 3, - "value": "191" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3141, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3153, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3210, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3216, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3228, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3234, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3245, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3251, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3295, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4060, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4210, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4226, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4312, - "length": 16, - "value": "\"exitfullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4377, - "length": 12, - "value": "\"fullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4430, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4441, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4455, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4467, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4871, - "length": 4, - "value": "21.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5025, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5037, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 5370, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6117, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6156, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6473, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6513, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6582, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6986, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7028, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7091, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7518, - "length": 4, - "value": "42.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7560, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7624, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7946, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7990, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 8603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8643, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8701, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9957, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10013, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10060, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10128, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 475, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 563, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1383, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1560, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1567, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1712, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1864, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 2972, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4980, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "FloatLiteral", - "offset": 4987, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 5410, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5478, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7007, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7117, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1065, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1090, - "length": 21, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1110, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2567, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 2680, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2959, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2965, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2991, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3074, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3100, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3197, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3409, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3480, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3550, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3633, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3705, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3775, - "length": 6, - "value": "\"down\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4594, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4655, - "length": 3, - "value": "600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 5591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 5598, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 419, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 753, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 1474, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2555, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3464, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4354, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4479, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "FloatLiteral", - "offset": 4617, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6278, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 6975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8321, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8359, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8391, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "FloatLiteral", - "offset": 311, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "BooleanLiteral", - "offset": 3106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 303, - "length": 7, - "value": "\"click\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 9, - "value": "\"screenX\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 9, - "value": "\"screenY\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 13, - "value": "\"screenWidth\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 14, - "value": "\"screenHeight\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 604, - "length": 17, - "value": "\"fullscreenclick\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 835, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1483, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 1533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1780, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2008, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2040, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2906, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3286, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3302, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 3410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3424, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3499, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3694, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3864, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4863, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5037, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 5230, - "length": 16, - "value": "\"controlstoggle\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 5885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6277, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7483, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 270, - "length": 8, - "value": "\"弹幕\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 326, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 430, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 3, - "value": "150" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 668, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 680, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 685, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 697, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1270, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1600, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1673, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1734, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1799, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3273, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3347, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3421, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 3584, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3405, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 3578, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3975, - "length": 33, - "value": "\"com.olinone.danmaku.renderQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 33, - "value": "\"com.olinone.danmaku.sourceQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4343, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 5352, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 5611, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5806, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5916, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 6522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6550, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 36, - "value": "\"configuration nil or duration <= 0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 19, - "value": "\"isPrepared is NO!\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6828, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 7109, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7433, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7538, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 8930, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 9542, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuView\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 12624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13043, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13224, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15473, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16068, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16116, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17583, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17804, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 17910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18247, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18683, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 18996, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19200, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 19784, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19992, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 20010, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21501, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21800, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 22808, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22866, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23763, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 23967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 23998, + "offset": 2469, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 24258, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24637, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25278, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25306, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 25510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 25541, + "offset": 2551, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25777, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 147, - "length": 5, - "value": "\"src\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 194, - "length": 13, - "value": "\"initialTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 10, - "value": "\"controls\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 348, - "length": 13, - "value": "\"enableDanmu\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 11, - "value": "\"danmuList\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 10, - "value": "\"danmuBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 501, - "length": 10, - "value": "\"autoplay\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 6, - "value": "\"loop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 588, - "length": 7, - "value": "\"muted\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 637, - "length": 13, - "value": "\"pageGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 690, - "length": 11, - "value": "\"direction\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 14, - "value": "\"showProgress\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 807, - "length": 19, - "value": "\"showFullscreenBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"showPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 13, - "value": "\"showMuteBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 984, - "length": 19, - "value": "\"showCenterPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1055, - "length": 23, - "value": "\"enableProgressGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 11, - "value": "\"objectFit\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1166, - "length": 8, - "value": "\"poster\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1216, - "length": 13, - "value": "\"showLoading\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2646, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2741, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3029, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3584, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3690, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, "length": 4, - "value": "50.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, "length": 4, - "value": "10.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2379, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2630, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 1145, + "offset": 322, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1155, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1605, + "offset": 167, "length": 4, - "value": "15.0" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1663, + "offset": 282, "length": 4, "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 889, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 924, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1258, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 527, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 1595, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1631, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 299, + "offset": 2037, "length": 3, - "value": "4.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 915, + "offset": 2050, "length": 4, - "value": "12.0" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2062, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 1280, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2397, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1580, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 2473, + "length": 9, + "value": "\"0:00:00\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1875, + "offset": 2734, "length": 2, - "value": "20" + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 2810, + "length": 9, + "value": "\"0:00:00\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 3020, + "length": 14, + "value": "\"slider_thumb\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1957, + "offset": 3103, "length": 2, - "value": "20" + "value": "66" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2020, - "length": 1, - "value": "2" + "offset": 3108, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2045, + "offset": 3120, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2124, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3124, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2157, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3135, + "length": 3, + "value": "191" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "2" + "offset": 3141, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "IntegerLiteral", - "offset": 2236, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 3153, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2364, - "length": 2, - "value": "20" + "offset": 3210, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2457, - "length": 2, - "value": "20" + "offset": 3216, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2531, - "length": 1, - "value": "2" + "offset": 3228, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2561, - "length": 1, - "value": "5" + "offset": 3234, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2834, - "length": 2, - "value": "20" + "offset": 3245, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2926, - "length": 2, - "value": "20" + "offset": 3251, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 3003, + "offset": 3263, "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3041, - "length": 5, - "value": "false" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3081, + "offset": 3295, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3286, + "offset": 3928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3325, + "offset": 4060, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3466, - "length": 2, - "value": "45" + "offset": 4210, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4216, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3509, + "offset": 4226, "length": 2, - "value": "45" + "value": "20" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3635, - "length": 1, - "value": "5" + "offset": 4238, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3670, + "offset": 4260, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3706, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4312, + "length": 16, + "value": "\"exitfullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3749, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4377, + "length": 12, + "value": "\"fullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 3828, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4430, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3896, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4441, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3931, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4455, "length": 4, - "value": "true" + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4467, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "BooleanLiteral", - "offset": 3973, - "length": 4, - "value": "true" + "offset": 439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 475, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 420, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 510, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 457, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 563, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2166, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2674, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 2904, + "offset": 2003, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3113, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3234, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3293, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3540, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "0" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 3990, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4301, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 4389, - "length": 6, - "value": "\"13.0\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4426, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4566, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4695, - "length": 1, - "value": "2" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4714, - "length": 1, - "value": "2" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4883, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4895, - "length": 1, - "value": "0" + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 5244, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 5256, - "length": 1, - "value": "0" + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 5757, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 6021, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 6379, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7205, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7329, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7363, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 7728, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7822, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8056, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8110, - "length": 1, - "value": "0" + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8114, - "length": 1, - "value": "0" + "offset": 254, + "length": 4, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8183, - "length": 1, + "offset": 210, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8269, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8751, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8785, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "FloatLiteral", + "offset": 311, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "StringLiteral", - "offset": 9231, + "offset": 270, "length": 8, - "value": "\"detail\"" + "value": "\"弹幕\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9242, - "length": 12, - "value": "\"fullScreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "FloatLiteral", + "offset": 326, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 9256, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9263, - "length": 11, - "value": "\"direction\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9276, - "length": 10, - "value": "\"vertical\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9335, - "length": 18, - "value": "\"fullscreenchange\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 282, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 662, "length": 3, - "value": "0.0" + "value": "150" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 668, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "IntegerLiteral", - "offset": 488, + "offset": 680, "length": 2, - "value": "20" + "value": "53" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "FloatLiteral", - "offset": 660, + "offset": 697, "length": 3, - "value": "0.0" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1074, + "offset": 2346, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 6, - "value": "\"cell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1421, - "length": 4, - "value": "true" + "offset": 2774, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "FloatLiteral", - "offset": 1614, + "offset": 3578, "length": 3, - "value": "0.1" + "value": "0.2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 1628, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1773, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1779, - "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1834, + "offset": 3775, "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 1891, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2035, - "length": 3, - "value": "0.1" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 2113, - "length": 4, - "value": "true" + "offset": 3821, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2235, - "length": 3, - "value": "0.1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3975, + "length": 33, + "value": "\"com.olinone.danmaku.renderQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2241, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 33, + "value": "\"com.olinone.danmaku.sourceQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2280, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "IntegerLiteral", - "offset": 2321, + "offset": 4483, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3594, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuView\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2692, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 5, + "value": "\"src\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "20" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 13, + "value": "\"initialTime\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2896, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 10, + "value": "\"duration\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 10, + "value": "\"controls\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 502, - "length": 25, - "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" + "offset": 348, + "length": 13, + "value": "\"enableDanmu\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3291, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 11, + "value": "\"danmuList\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3762, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 452, + "length": 10, + "value": "\"danmuBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3791, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 10, + "value": "\"autoplay\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 3986, + "offset": 546, "length": 6, - "value": "\"cell\"" + "value": "\"loop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 4102, - "length": 2, - "value": "30" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"muted\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 4413, - "length": 6, - "value": "\"cell\"" + "offset": 637, + "length": 13, + "value": "\"pageGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 401, - "length": 3, - "value": "\"#\"" + "offset": 690, + "length": 11, + "value": "\"direction\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 1472, - "length": 2, - "value": "\"\"" + "offset": 744, + "length": 14, + "value": "\"showProgress\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 1542, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 807, + "length": 19, + "value": "\"showFullscreenBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2092, - "length": 3, - "value": "\"#\"" + "offset": 868, + "length": 13, + "value": "\"showPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2154, - "length": 2, - "value": "\"\"" + "offset": 923, + "length": 13, + "value": "\"showMuteBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2571, - "length": 3, - "value": "\"#\"" + "offset": 984, + "length": 19, + "value": "\"showCenterPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2655, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1055, + "length": 23, + "value": "\"enableProgressGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2673, - "length": 1, - "value": "6" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 11, + "value": "\"objectFit\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2717, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 8, + "value": "\"poster\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2729, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1216, + "length": 13, + "value": "\"showLoading\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2781, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 8, + "value": "\"header\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2908, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 10, + "value": "\"advanced\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 27, + "value": "\"vslideGestureInFullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3015, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 19, + "value": "\"enablePlayGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3027, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 7, + "value": "\"title\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3114, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 11, + "value": "\"httpCache\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1606, + "length": 14, + "value": "\"playStrategy\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1657, + "length": 7, + "value": "\"codec\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3128, - "length": 5, - "value": "255.0" + "offset": 148, + "length": 4, + "value": "50.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3170, - "length": 1, - "value": "8" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "StringLiteral", + "offset": 455, + "length": 15, + "value": "\"backbarbutton\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3175, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 557, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3183, - "length": 5, - "value": "255.0" + "offset": 570, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3225, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 584, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3233, - "length": 5, - "value": "255.0" + "offset": 596, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 922, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "FloatLiteral", - "offset": 3247, + "offset": 299, "length": 3, - "value": "1.0" + "value": "4.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3397, - "length": 12, - "value": "\"DCUniVideo\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "FloatLiteral", + "offset": 915, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "StringLiteral", - "offset": 3419, - "length": 8, - "value": "\"bundle\"" + "offset": 1146, + "length": 6, + "value": "\"play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3501, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "BooleanLiteral", + "offset": 1280, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 1, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "BooleanLiteral", + "offset": 364, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "IntegerLiteral", + "offset": 488, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "FloatLiteral", + "offset": 660, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", "kind": "StringLiteral", - "offset": 3522, - "length": 1, - "value": "\".png\"" + "offset": 502, + "length": 25, + "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" } ] } \ No newline at end of file diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.private.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.private.swiftinterface index 967ef69656f8fbfd610e3b85766fc8e3e543fa95..0fb64e4646f0d61fb9ddee0c6b00a8dbc2ab70f0 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftdoc b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftdoc index 0cae0c67852039449e81aa9d618a29c08d7a0aba..b9af9e5da30ed2c9a5c7a2d34b9aeb5c47c03f9c 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftdoc and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftinterface index 967ef69656f8fbfd610e3b85766fc8e3e543fa95..0fb64e4646f0d61fb9ddee0c6b00a8dbc2ab70f0 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/DCUniVideo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/DCUniVideo index b8b03d976f5f3983bcfc0dc1dda0e1c04c2c35f5..028e16b0b3a9a912d8c448a14d7e24a6c30b9a01 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/DCUniVideo and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/DCUniVideo differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Headers/DCUniVideo-Swift.h b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Headers/DCUniVideo-Swift.h index a46204d439963a1a80629661f04b2d62324bc106..6df4ca6a80205dec9cf1f7cd7e33cb96090f7b18 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Headers/DCUniVideo-Swift.h +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Headers/DCUniVideo-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef DCUNIVIDEO_SWIFT_H #define DCUNIVIDEO_SWIFT_H #pragma clang diagnostic push @@ -339,6 +339,15 @@ SWIFT_CLASS("_TtC10DCUniVideo13HJDanmakuView") +SWIFT_CLASS("_TtC10DCUniVideo23UniMonitoredContentView") +@interface UniMonitoredContentView : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)didAddSubview:(UIView * _Nonnull)subview; +- (void)layoutSubviews; +@end + + SWIFT_CLASS("_TtC10DCUniVideo20UniVideoPlayerConfig") @interface UniVideoPlayerConfig : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -373,7 +382,7 @@ SWIFT_CLASS("_TtC10DCUniVideo18UniVideoPlayerView") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef DCUNIVIDEO_SWIFT_H #define DCUNIVIDEO_SWIFT_H #pragma clang diagnostic push @@ -712,6 +721,15 @@ SWIFT_CLASS("_TtC10DCUniVideo13HJDanmakuView") +SWIFT_CLASS("_TtC10DCUniVideo23UniMonitoredContentView") +@interface UniMonitoredContentView : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)didAddSubview:(UIView * _Nonnull)subview; +- (void)layoutSubviews; +@end + + SWIFT_CLASS("_TtC10DCUniVideo20UniVideoPlayerConfig") @interface UniVideoPlayerConfig : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Info.plist b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Info.plist index 2a145565cb515db03a6ae47cc32fb315f53e99d7..a1d46050fcea5a702aac0871ea744b8da19b325b 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Info.plist and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Info.plist differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo index 1072d7b5c91154eeb8c9d89d01c631088477b5a1..418233496fca121bbffa96b0122308c145bfb06e 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo index 73941b401341278c49a195eb14ee9031ed70e9c9..69dabc4d965ad1ba3ee1e90479c7e87d3354090d 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json index 4bd22e1b8af1d2b5c24d335415fe555244d0eba8..8bedc4f130192f54fb5b6e09e2188b26351b51b8 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -1572,6 +1572,60 @@ "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "videoPlayerWillEnterFullScreen", + "printedName": "videoPlayerWillEnterFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "videoPlayerWillExitFullScreen", + "printedName": "videoPlayerWillExitFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "videoPlayerExitFullScreen", @@ -1901,6 +1955,161 @@ "AccessControl" ] }, + { + "kind": "TypeDecl", + "name": "UniMonitoredContentView", + "printedName": "UniMonitoredContentView", + "children": [ + { + "kind": "Function", + "name": "didAddSubview", + "printedName": "didAddSubview(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)didAddSubview:", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC13didAddSubviewyySo6UIViewCF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "didAddSubview:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)layoutSubviews", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC14layoutSubviewsyyF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { "kind": "TypeDecl", "name": "UniVideoPlayerViewPresent", @@ -2104,7 +2313,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?" + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?" } ], "declKind": "Var", @@ -2129,12 +2338,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2164,12 +2373,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2216,14 +2425,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Var", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", "moduleName": "DCUniVideo", "declAttributes": [ "Final", @@ -2238,14 +2447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2265,14 +2474,14 @@ }, { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2292,8 +2501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2323,12 +2532,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2378,6 +2587,34 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "onVideoComponentReused", + "printedName": "onVideoComponentReused(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UniVideoPlayerConfig", + "printedName": "DCUniVideo.UniVideoPlayerConfig", + "usr": "c:@M@DCUniVideo@objc(cs)UniVideoPlayerConfig" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "play", @@ -3970,9 +4207,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC6zIndexSivp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl" ], "hasStorage": true, @@ -4057,9 +4294,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC14selectionStyleAA0cd9SelectionF0Ovp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -6046,7 +6283,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?" + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?" } ], "declKind": "Var", @@ -6055,9 +6292,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6072,12 +6309,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6105,12 +6342,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6154,7 +6391,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?" + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?" } ], "declKind": "Var", @@ -6163,9 +6400,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6180,12 +6417,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6213,12 +6450,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6271,9 +6508,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC10isPreparedSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6317,9 +6554,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC9isPlayingSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6363,9 +6600,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC13configurationAA0C13ConfigurationCvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "Final", "HasStorage", + "Custom", "AccessControl" ], "isLet": true, @@ -7388,7095 +7625,1824 @@ }, "ConstValues": [ { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 712, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 801, - "length": 5, - "value": "false" + "offset": 160, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 829, - "length": 6, - "value": "\"true\"" + "offset": 191, + "length": 3, + "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 917, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 3, + "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1079, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1210, - "length": 7, - "value": "\"FALSE\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "IntegerLiteral", - "offset": 4172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 160, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 3, - "value": "\"2\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 160, "length": 3, "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 191, "length": 3, "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 222, "length": 3, "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "FloatLiteral", "offset": 303, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 240, "length": 14, "value": "\"DCUniVideo.HJDanmakuModel\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 192, "length": 3, "value": "100" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 198, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 205, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 382, - "length": 19, - "value": "\"ijkio:cache:ffio:\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 727, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 1, - "value": "\".videoCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 829, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1153, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 1, - "value": "\".videoCacheMap\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1230, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1241, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1258, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 1509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 1544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1736, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1747, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1758, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2286, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2297, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3029, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3360, - "length": 8, - "value": "\"%02hhx\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", "kind": "IntegerLiteral", "offset": 361, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 705, - "length": 14, - "value": "\"video_volume\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 16, - "value": "\"MPVolumeSlider\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1013, - "length": 8, - "value": "\"音量\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1089, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 319, "length": 3, "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 459, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 529, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 657, "length": 4, "value": "30.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 794, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1802, + "offset": 2712, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1841, + "offset": 2751, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1881, + "offset": 2791, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1918, + "offset": 2828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1966, + "offset": 2876, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2001, + "offset": 2911, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2039, + "offset": 2949, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 2994, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2125, + "offset": 3035, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2168, + "offset": 3078, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2209, + "offset": 3119, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2247, + "offset": 3157, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2280, + "offset": 3190, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2363, + "offset": 3273, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "Array", - "offset": 2460, + "offset": 3370, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2709, + "offset": 3619, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 22, - "value": "\"UIRequiresFullScreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 149, + "length": 3, + "value": "155" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 369, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 382, + "length": 4, + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 3, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 394, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 6, - "value": "\"_doc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6166, - "length": 5, - "value": "\"..\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 602, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6205, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 615, "length": 4, - "value": "\".\/\"" + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6240, - "length": 18, - "value": "\"unifile:\/\/cache\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 627, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6289, - "length": 16, - "value": "\"unifile:\/\/usr\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 640, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6337, - "length": 20, - "value": "\"unifile:\/\/sandbox\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7007, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7182, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7211, - "length": 6, - "value": "\"rtsp\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7257, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7304, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7367, - "length": 5, - "value": "\"tcp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7382, - "length": 16, - "value": "\"rtsp_transport\"" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7475, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7486, - "length": 11, - "value": "\"reconnect\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7552, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7565, - "length": 5, - "value": "\"vol\"" + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7650, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7663, - "length": 5, - "value": "\"vol\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7751, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7780, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7807, - "length": 7, - "value": "\".m3u8\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7843, - "length": 7, - "value": "\".M3U8\"" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7855, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7894, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8112, - "length": 3, - "value": "\"1\"" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8125, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 8330, - "length": 1, - "value": "1" + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8341, - "length": 22, - "value": "\"enable-accurate-seek\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8696, - "length": 2, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8815, - "length": 24, - "value": "\"Cookie:\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8838, - "length": 1, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8903, - "length": 9, - "value": "\"headers\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9034, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9074, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9189, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9229, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9240, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9294, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, "length": 11, - "value": "\"useragent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9393, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9516, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9525, - "length": 1, - "value": "\"\r\n\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9629, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9700, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9879, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9890, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9986, - "length": 9, - "value": "\"max-fps\"" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10072, + "offset": 1145, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10083, - "length": 10, - "value": "\"opensles\"" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10276, - "length": 1, - "value": "1" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10287, - "length": 17, - "value": "\"mediacodec-hevc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1367, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10440, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1427, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10451, - "length": 8, - "value": "\"infbuf\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10536, - "length": 2, - "value": "25" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1740, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10548, - "length": 9, - "value": "\"max-fps\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10647, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1915, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10695, - "length": 20, - "value": "\"protocol_whitelist\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1974, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 11028, + "offset": 2034, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11299, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2151, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11427, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11918, - "length": 17, - "value": "\"cache_file_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12035, - "length": 16, - "value": "\"cache_map_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12139, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12231, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12242, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12383, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12396, - "length": 20, - "value": "\"analyzemaxduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12485, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12496, - "length": 17, - "value": "\"analyzeduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12582, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12589, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12601, - "length": 11, - "value": "\"probesize\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12915, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 13531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13578, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 14026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14225, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14301, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14356, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14479, - "length": 12, - "value": "\"user_agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14715, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14765, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14816, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14976, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15448, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15551, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15650, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16143, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16273, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16401, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16525, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17232, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17504, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17990, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 18038, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18467, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18795, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18828, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19171, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19487, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19576, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19788, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20064, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20311, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20865, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20893, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22043, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23198, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23277, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23376, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24607, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25629, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25684, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26062, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26121, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26499, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26617, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26632, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26643, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26667, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27010, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27024, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27080, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27307, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27475, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27620, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28616, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28651, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28691, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28732, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28740, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28779, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28796, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28819, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 29103, - "length": 3, - "value": "1.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 149, - "length": 3, - "value": "155" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 369, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 382, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 394, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 407, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 602, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 615, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 627, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 640, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 925, - "length": 4, - "value": "0.97" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "Array", - "offset": 996, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1238, - "length": 2, - "value": "79" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1271, - "length": 2, - "value": "76" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1318, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1465, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "BooleanLiteral", - "offset": 1503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1826, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1832, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1975, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1982, - "length": 3, - "value": "132" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2019, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2031, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2116, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "StringLiteral", - "offset": 2187, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2368, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2680, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2686, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2770, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2819, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2824, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3205, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3209, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3509, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3601, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3648, - "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3684, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 1170, - "length": 54, - "value": "\"AVSystemController_SystemVolumeDidChangeNotification\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3023, - "length": 55, - "value": "\"AVSystemController_AudioCategoryNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3155, - "length": 13, - "value": "\"Audio\/Video\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3237, - "length": 65, - "value": "\"AVSystemController_AudioVolumeChangeReasonNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3396, - "length": 22, - "value": "\"ExplicitVolumeChange\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3476, - "length": 53, - "value": "\"AVSystemController_AudioVolumeNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 3992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4420, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4686, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 4751, - "length": 9, - "value": "\"waiting\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5179, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5342, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5535, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5710, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 5752, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5796, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5830, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6083, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 6149, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 7451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7580, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8149, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8360, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 8502, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 8948, - "length": 7, - "value": "\"ended\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1427, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1550, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1740, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1915, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1974, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2151, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 4443, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5453, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7945, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7983, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8015, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8816, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9880, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9974, - "length": 2, - "value": "90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 10025, - "length": 3, - "value": "-90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 1200, - "length": 20, - "value": "\"DCUniVideo.UniVideoPlayerConfig\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 1007, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1663, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2630, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 3024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 3560, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 3731, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3901, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3928, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4112, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 4626, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4843, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5038, - "length": 14, - "value": "[(\"show\", true)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 5226, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5784, - "length": 15, - "value": "[(\"show\", false)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5904, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 6121, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6164, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7157, - "length": 5, - "value": "155.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7209, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7259, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7432, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuCell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 167, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 208, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 244, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 924, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 960, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1085, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1479, - "length": 13, - "value": "\"player_stop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1541, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 1595, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1606, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1631, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1901, - "length": 18, - "value": "\"video_ic_muteoff\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1968, - "length": 17, - "value": "\"video_ic_muteon\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2050, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2062, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 2178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2397, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2810, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 14, - "value": "\"slider_thumb\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3103, - "length": 2, - "value": "66" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3108, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 3, - "value": "191" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3141, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3153, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3210, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3216, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3228, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3234, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3245, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3251, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3295, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4060, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4210, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4226, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4312, - "length": 16, - "value": "\"exitfullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4377, - "length": 12, - "value": "\"fullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4430, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4441, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4455, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4467, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4871, - "length": 4, - "value": "21.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5025, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5037, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 5370, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6117, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6156, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6473, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6513, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6582, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6986, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7028, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7091, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7518, - "length": 4, - "value": "42.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7560, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7624, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7946, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7990, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 8603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8643, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8701, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9957, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10013, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10060, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10128, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 475, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 563, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1383, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1560, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1567, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1712, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1864, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 2972, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4980, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "FloatLiteral", - "offset": 4987, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 5410, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5478, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7007, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7117, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1065, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1090, - "length": 21, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1110, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2567, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 2680, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2959, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2965, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2991, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3074, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3100, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3197, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3409, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3480, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3550, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3633, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3705, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3775, - "length": 6, - "value": "\"down\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4594, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4655, - "length": 3, - "value": "600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 5591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 5598, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 419, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 753, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 1474, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2555, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3464, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4354, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4479, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "FloatLiteral", - "offset": 4617, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6278, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 6975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8321, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8359, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8391, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "FloatLiteral", - "offset": 311, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "BooleanLiteral", - "offset": 3106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 303, - "length": 7, - "value": "\"click\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 9, - "value": "\"screenX\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 9, - "value": "\"screenY\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 13, - "value": "\"screenWidth\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 14, - "value": "\"screenHeight\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 604, - "length": 17, - "value": "\"fullscreenclick\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 835, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1483, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 1533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1780, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2008, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2040, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2906, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3286, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3302, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 3410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3424, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3499, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3694, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3864, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4863, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5037, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 5230, - "length": 16, - "value": "\"controlstoggle\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 5885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6277, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7483, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 270, - "length": 8, - "value": "\"弹幕\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 326, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 430, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 3, - "value": "150" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 668, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 680, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 685, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 697, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1270, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1600, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1673, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1734, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1799, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3273, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3347, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3421, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 3584, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3405, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 3578, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3975, - "length": 33, - "value": "\"com.olinone.danmaku.renderQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 33, - "value": "\"com.olinone.danmaku.sourceQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4343, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 5352, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 5611, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5806, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5916, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 6522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6550, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 36, - "value": "\"configuration nil or duration <= 0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 19, - "value": "\"isPrepared is NO!\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6828, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 7109, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7433, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7538, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 8930, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 9542, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuView\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 12624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13043, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13224, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15473, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16068, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16116, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17583, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17804, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 17910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18247, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18683, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 18996, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19200, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 19784, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19992, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 20010, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21501, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21800, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 22808, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22866, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23763, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 23967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 23998, + "offset": 2469, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 24258, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24637, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25278, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25306, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 25510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 25541, + "offset": 2551, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25777, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 147, - "length": 5, - "value": "\"src\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 194, - "length": 13, - "value": "\"initialTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 10, - "value": "\"controls\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 348, - "length": 13, - "value": "\"enableDanmu\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 11, - "value": "\"danmuList\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 10, - "value": "\"danmuBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 501, - "length": 10, - "value": "\"autoplay\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 6, - "value": "\"loop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 588, - "length": 7, - "value": "\"muted\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 637, - "length": 13, - "value": "\"pageGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 690, - "length": 11, - "value": "\"direction\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 14, - "value": "\"showProgress\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 807, - "length": 19, - "value": "\"showFullscreenBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"showPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 13, - "value": "\"showMuteBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 984, - "length": 19, - "value": "\"showCenterPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1055, - "length": 23, - "value": "\"enableProgressGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 11, - "value": "\"objectFit\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1166, - "length": 8, - "value": "\"poster\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1216, - "length": 13, - "value": "\"showLoading\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2646, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2741, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3029, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3584, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3690, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, "length": 4, - "value": "50.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, "length": 4, - "value": "10.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2379, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2630, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 1145, + "offset": 322, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1155, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1605, + "offset": 167, "length": 4, - "value": "15.0" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1663, + "offset": 282, "length": 4, "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 889, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 924, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1258, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 527, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 1595, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1631, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 299, + "offset": 2037, "length": 3, - "value": "4.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 915, + "offset": 2050, "length": 4, - "value": "12.0" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2062, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 1280, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2397, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1580, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 2473, + "length": 9, + "value": "\"0:00:00\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1875, + "offset": 2734, "length": 2, - "value": "20" + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 2810, + "length": 9, + "value": "\"0:00:00\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 3020, + "length": 14, + "value": "\"slider_thumb\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1957, + "offset": 3103, "length": 2, - "value": "20" + "value": "66" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2020, - "length": 1, - "value": "2" + "offset": 3108, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2045, + "offset": 3120, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2124, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3124, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2157, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3135, + "length": 3, + "value": "191" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "2" + "offset": 3141, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "IntegerLiteral", - "offset": 2236, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 3153, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2364, - "length": 2, - "value": "20" + "offset": 3210, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2457, - "length": 2, - "value": "20" + "offset": 3216, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2531, - "length": 1, - "value": "2" + "offset": 3228, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2561, - "length": 1, - "value": "5" + "offset": 3234, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2834, - "length": 2, - "value": "20" + "offset": 3245, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2926, - "length": 2, - "value": "20" + "offset": 3251, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 3003, + "offset": 3263, "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3041, - "length": 5, - "value": "false" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3081, + "offset": 3295, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3286, + "offset": 3928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3325, + "offset": 4060, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3466, - "length": 2, - "value": "45" + "offset": 4210, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4216, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3509, + "offset": 4226, "length": 2, - "value": "45" + "value": "20" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3635, - "length": 1, - "value": "5" + "offset": 4238, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3670, + "offset": 4260, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3706, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4312, + "length": 16, + "value": "\"exitfullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3749, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4377, + "length": 12, + "value": "\"fullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 3828, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4430, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3896, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4441, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3931, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4455, "length": 4, - "value": "true" + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4467, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "BooleanLiteral", - "offset": 3973, - "length": 4, - "value": "true" + "offset": 439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 475, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 420, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 510, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 457, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 563, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2166, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2674, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 2904, + "offset": 2003, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3113, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3234, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3293, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3540, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "0" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 3990, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4301, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 4389, - "length": 6, - "value": "\"13.0\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4426, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4566, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4695, - "length": 1, - "value": "2" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4714, - "length": 1, - "value": "2" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4883, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4895, - "length": 1, - "value": "0" + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 5244, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 5256, - "length": 1, - "value": "0" + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 5757, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 6021, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 6379, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7205, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7329, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7363, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 7728, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7822, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8056, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8110, - "length": 1, - "value": "0" + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8114, - "length": 1, - "value": "0" + "offset": 254, + "length": 4, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8183, - "length": 1, + "offset": 210, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8269, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8751, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8785, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "FloatLiteral", + "offset": 311, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "StringLiteral", - "offset": 9231, + "offset": 270, "length": 8, - "value": "\"detail\"" + "value": "\"弹幕\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9242, - "length": 12, - "value": "\"fullScreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "FloatLiteral", + "offset": 326, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 9256, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9263, - "length": 11, - "value": "\"direction\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9276, - "length": 10, - "value": "\"vertical\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9335, - "length": 18, - "value": "\"fullscreenchange\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 282, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 662, "length": 3, - "value": "0.0" + "value": "150" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 668, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "IntegerLiteral", - "offset": 488, + "offset": 680, "length": 2, - "value": "20" + "value": "53" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "FloatLiteral", - "offset": 660, + "offset": 697, "length": 3, - "value": "0.0" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1074, + "offset": 2346, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 6, - "value": "\"cell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1421, - "length": 4, - "value": "true" + "offset": 2774, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "FloatLiteral", - "offset": 1614, + "offset": 3578, "length": 3, - "value": "0.1" + "value": "0.2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 1628, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1773, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1779, - "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1834, + "offset": 3775, "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 1891, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2035, - "length": 3, - "value": "0.1" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 2113, - "length": 4, - "value": "true" + "offset": 3821, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2235, - "length": 3, - "value": "0.1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3975, + "length": 33, + "value": "\"com.olinone.danmaku.renderQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2241, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 33, + "value": "\"com.olinone.danmaku.sourceQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2280, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "IntegerLiteral", - "offset": 2321, + "offset": 4483, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3594, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuView\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2692, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 5, + "value": "\"src\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "20" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 13, + "value": "\"initialTime\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2896, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 10, + "value": "\"duration\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 10, + "value": "\"controls\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 502, - "length": 25, - "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" + "offset": 348, + "length": 13, + "value": "\"enableDanmu\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3291, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 11, + "value": "\"danmuList\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3762, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 452, + "length": 10, + "value": "\"danmuBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3791, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 10, + "value": "\"autoplay\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 3986, + "offset": 546, "length": 6, - "value": "\"cell\"" + "value": "\"loop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 4102, - "length": 2, - "value": "30" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"muted\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 4413, - "length": 6, - "value": "\"cell\"" + "offset": 637, + "length": 13, + "value": "\"pageGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 401, - "length": 3, - "value": "\"#\"" + "offset": 690, + "length": 11, + "value": "\"direction\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 1472, - "length": 2, - "value": "\"\"" + "offset": 744, + "length": 14, + "value": "\"showProgress\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 1542, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 807, + "length": 19, + "value": "\"showFullscreenBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2092, - "length": 3, - "value": "\"#\"" + "offset": 868, + "length": 13, + "value": "\"showPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2154, - "length": 2, - "value": "\"\"" + "offset": 923, + "length": 13, + "value": "\"showMuteBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2571, - "length": 3, - "value": "\"#\"" + "offset": 984, + "length": 19, + "value": "\"showCenterPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2655, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1055, + "length": 23, + "value": "\"enableProgressGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2673, - "length": 1, - "value": "6" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 11, + "value": "\"objectFit\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2717, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 8, + "value": "\"poster\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2729, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1216, + "length": 13, + "value": "\"showLoading\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2781, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 8, + "value": "\"header\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2908, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 10, + "value": "\"advanced\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 27, + "value": "\"vslideGestureInFullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3015, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 19, + "value": "\"enablePlayGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3027, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 7, + "value": "\"title\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3114, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 11, + "value": "\"httpCache\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1606, + "length": 14, + "value": "\"playStrategy\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1657, + "length": 7, + "value": "\"codec\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3128, - "length": 5, - "value": "255.0" + "offset": 148, + "length": 4, + "value": "50.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3170, - "length": 1, - "value": "8" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "StringLiteral", + "offset": 455, + "length": 15, + "value": "\"backbarbutton\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3175, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 557, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3183, - "length": 5, - "value": "255.0" + "offset": 570, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3225, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 584, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3233, - "length": 5, - "value": "255.0" + "offset": 596, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 922, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "FloatLiteral", - "offset": 3247, + "offset": 299, "length": 3, - "value": "1.0" + "value": "4.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3397, - "length": 12, - "value": "\"DCUniVideo\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "FloatLiteral", + "offset": 915, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "StringLiteral", - "offset": 3419, - "length": 8, - "value": "\"bundle\"" + "offset": 1146, + "length": 6, + "value": "\"play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3501, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "BooleanLiteral", + "offset": 1280, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 1, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "BooleanLiteral", + "offset": 364, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "IntegerLiteral", + "offset": 488, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "FloatLiteral", + "offset": 660, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", "kind": "StringLiteral", - "offset": 3522, - "length": 1, - "value": "\".png\"" + "offset": 502, + "length": 25, + "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" } ] } \ No newline at end of file diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index b3bfd37dff190d515412046b0482384cb7f486d0..f18cce8161c2b2bf1031c5783dfd404ef4a99ba5 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 1676ff3936f36e6525e4012787cd8b2b13cceb84..c31d59fd8db75851bfde790fa113b2e1cab9b26d 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface index b3bfd37dff190d515412046b0482384cb7f486d0..f18cce8161c2b2bf1031c5783dfd404ef4a99ba5 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json index 4bd22e1b8af1d2b5c24d335415fe555244d0eba8..8bedc4f130192f54fb5b6e09e2188b26351b51b8 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -1572,6 +1572,60 @@ "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "videoPlayerWillEnterFullScreen", + "printedName": "videoPlayerWillEnterFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD19WillEnterFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "videoPlayerWillExitFullScreen", + "printedName": "videoPlayerWillExitFullScreen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIInterfaceOrientation", + "printedName": "UIKit.UIInterfaceOrientation", + "usr": "c:@E@UIInterfaceOrientation" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "mangledName": "$s10DCUniVideo03UniB14PlayerProtocolP05videoD18WillExitFullScreenyySo22UIInterfaceOrientationVF", + "moduleName": "DCUniVideo", + "genericSig": "<τ_0_0 where τ_0_0 : DCUniVideo.UniVideoPlayerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "videoPlayerExitFullScreen", @@ -1901,6 +1955,161 @@ "AccessControl" ] }, + { + "kind": "TypeDecl", + "name": "UniMonitoredContentView", + "printedName": "UniMonitoredContentView", + "children": [ + { + "kind": "Function", + "name": "didAddSubview", + "printedName": "didAddSubview(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)didAddSubview:", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC13didAddSubviewyySo6UIViewCF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "didAddSubview:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView(im)layoutSubviews", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC14layoutSubviewsyyF", + "moduleName": "DCUniVideo", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView", + "mangledName": "$s10DCUniVideo23UniMonitoredContentViewC", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { "kind": "TypeDecl", "name": "UniVideoPlayerViewPresent", @@ -2104,7 +2313,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?" + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?" } ], "declKind": "Var", @@ -2129,12 +2338,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2164,12 +2373,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2216,14 +2425,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Var", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvp", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvp", "moduleName": "DCUniVideo", "declAttributes": [ "Final", @@ -2238,14 +2447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvg", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvg", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2265,14 +2474,14 @@ }, { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "UniMonitoredContentView", + "printedName": "DCUniVideo.UniMonitoredContentView", + "usr": "c:@M@DCUniVideo@objc(cs)UniMonitoredContentView" } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvs", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0Cvs", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2292,8 +2501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", - "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0So6UIViewCvM", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC07contentE0AA0c16MonitoredContentE0CvM", "moduleName": "DCUniVideo", "implicit": true, "declAttributes": [ @@ -2323,12 +2532,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.UniVideoPlayerProtocol?", + "printedName": "(any DCUniVideo.UniVideoPlayerProtocol)?", "children": [ { "kind": "TypeNominal", "name": "UniVideoPlayerProtocol", - "printedName": "DCUniVideo.UniVideoPlayerProtocol", + "printedName": "any DCUniVideo.UniVideoPlayerProtocol", "usr": "s:10DCUniVideo03UniB14PlayerProtocolP" } ], @@ -2378,6 +2587,34 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "onVideoComponentReused", + "printedName": "onVideoComponentReused(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UniVideoPlayerConfig", + "printedName": "DCUniVideo.UniVideoPlayerConfig", + "usr": "c:@M@DCUniVideo@objc(cs)UniVideoPlayerConfig" + } + ], + "declKind": "Func", + "usr": "s:10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "mangledName": "$s10DCUniVideo03UniB17PlayerViewPresentC02onB15ComponentReusedyyAA0cbD6ConfigCF", + "moduleName": "DCUniVideo", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "play", @@ -3970,9 +4207,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC6zIndexSivp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl" ], "hasStorage": true, @@ -4057,9 +4294,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuCellC14selectionStyleAA0cd9SelectionF0Ovp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -6046,7 +6283,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?" + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?" } ], "declKind": "Var", @@ -6055,9 +6292,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6072,12 +6309,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6105,12 +6342,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDateSource?", + "printedName": "(any DCUniVideo.HJDanmakuViewDateSource)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDateSource", - "printedName": "DCUniVideo.HJDanmakuViewDateSource", + "printedName": "any DCUniVideo.HJDanmakuViewDateSource", "usr": "s:10DCUniVideo23HJDanmakuViewDateSourceP" } ], @@ -6154,7 +6391,7 @@ { "kind": "TypeNominal", "name": "WeakStorage", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?" + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?" } ], "declKind": "Var", @@ -6163,9 +6400,9 @@ "moduleName": "DCUniVideo", "isOpen": true, "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "ReferenceOwnership" ], @@ -6180,12 +6417,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6213,12 +6450,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "DCUniVideo.HJDanmakuViewDelegate?", + "printedName": "(any DCUniVideo.HJDanmakuViewDelegate)?", "children": [ { "kind": "TypeNominal", "name": "HJDanmakuViewDelegate", - "printedName": "DCUniVideo.HJDanmakuViewDelegate", + "printedName": "any DCUniVideo.HJDanmakuViewDelegate", "usr": "s:10DCUniVideo21HJDanmakuViewDelegateP" } ], @@ -6271,9 +6508,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC10isPreparedSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6317,9 +6554,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC9isPlayingSbvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "HasInitialValue", "HasStorage", + "Custom", "SetterAccess", "AccessControl" ], @@ -6363,9 +6600,9 @@ "mangledName": "$s10DCUniVideo13HJDanmakuViewC13configurationAA0C13ConfigurationCvp", "moduleName": "DCUniVideo", "declAttributes": [ - "Custom", "Final", "HasStorage", + "Custom", "AccessControl" ], "isLet": true, @@ -7388,7095 +7625,1824 @@ }, "ConstValues": [ { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 712, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 801, - "length": 5, - "value": "false" + "offset": 160, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", - "offset": 829, - "length": 6, - "value": "\"true\"" + "offset": 191, + "length": 3, + "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 917, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 3, + "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1079, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "StringLiteral", - "offset": 1210, - "length": 7, - "value": "\"FALSE\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "BooleanLiteral", - "offset": 1293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoPlayerConvert.swift", - "kind": "IntegerLiteral", - "offset": 4172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 160, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 3, - "value": "\"2\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 160, "length": 3, "value": "\"0\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 191, "length": 3, "value": "\"1\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 222, "length": 3, "value": "\"2\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "FloatLiteral", "offset": 303, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuModel.swift", "kind": "StringLiteral", "offset": 240, "length": 14, "value": "\"DCUniVideo.HJDanmakuModel\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 192, "length": 3, "value": "100" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 198, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", "kind": "IntegerLiteral", "offset": 205, "length": 4, "value": "1024" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 382, - "length": 19, - "value": "\"ijkio:cache:ffio:\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 727, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 1, - "value": "\".videoCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 829, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1153, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 1, - "value": "\".videoCacheMap\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1230, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1241, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1258, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 1509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 1544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1736, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1747, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 1758, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2286, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2297, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 2308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "BooleanLiteral", - "offset": 2787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3029, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoCacheUtil.swift", - "kind": "StringLiteral", - "offset": 3360, - "length": 8, - "value": "\"%02hhx\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", "kind": "IntegerLiteral", "offset": 361, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 705, - "length": 14, - "value": "\"video_volume\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 848, - "length": 16, - "value": "\"MPVolumeSlider\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1013, - "length": 8, - "value": "\"音量\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerVolumeView.swift", - "kind": "StringLiteral", - "offset": 1089, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 319, "length": 3, "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 459, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 529, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "FloatLiteral", "offset": 657, "length": 4, "value": "30.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuConfiguration.swift", "kind": "IntegerLiteral", "offset": 794, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1802, + "offset": 2712, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1841, + "offset": 2751, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1881, + "offset": 2791, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1918, + "offset": 2828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 1966, + "offset": 2876, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2001, + "offset": 2911, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2039, + "offset": 2949, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 2994, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2125, + "offset": 3035, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2168, + "offset": 3078, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2209, + "offset": 3119, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2247, + "offset": 3157, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "IntegerLiteral", - "offset": 2280, + "offset": 3190, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "FloatLiteral", - "offset": 2363, + "offset": 3273, "length": 3, "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "Array", - "offset": 2460, + "offset": 3370, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", "kind": "BooleanLiteral", - "offset": 2709, + "offset": 3619, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 22, - "value": "\"UIRequiresFullScreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 149, + "length": 3, + "value": "155" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 369, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 382, + "length": 4, + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 3, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 394, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 6, - "value": "\"_doc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6166, - "length": 5, - "value": "\"..\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 602, + "length": 4, + "value": "0.25" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6205, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 615, "length": 4, - "value": "\".\/\"" + "value": "0.22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6240, - "length": 18, - "value": "\"unifile:\/\/cache\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 627, + "length": 4, + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6289, - "length": 16, - "value": "\"unifile:\/\/usr\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 640, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 6337, - "length": 20, - "value": "\"unifile:\/\/sandbox\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7007, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7182, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7211, - "length": 6, - "value": "\"rtsp\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7257, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7304, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7367, - "length": 5, - "value": "\"tcp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7382, - "length": 16, - "value": "\"rtsp_transport\"" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7475, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7486, - "length": 11, - "value": "\"reconnect\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7552, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7565, - "length": 5, - "value": "\"vol\"" + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 7650, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7663, - "length": 5, - "value": "\"vol\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7751, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7780, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7807, - "length": 7, - "value": "\".m3u8\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7843, - "length": 7, - "value": "\".M3U8\"" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7855, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7894, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8112, - "length": 3, - "value": "\"1\"" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8125, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 8330, - "length": 1, - "value": "1" + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8341, - "length": 22, - "value": "\"enable-accurate-seek\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 285, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8696, - "length": 2, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8815, - "length": 24, - "value": "\"Cookie:\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8838, - "length": 1, - "value": "\"\"" + "offset": 544, + "length": 10, + "value": "\"hardware\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 8903, - "length": 9, - "value": "\"headers\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9034, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9074, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9189, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9229, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9240, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9294, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, "length": 11, - "value": "\"useragent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9393, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9516, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9525, - "length": 1, - "value": "\"\r\n\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9629, + "offset": 1145, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9700, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9879, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9890, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 9975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9986, - "length": 9, - "value": "\"max-fps\"" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10072, + "offset": 1145, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10083, - "length": 10, - "value": "\"opensles\"" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, + "offset": 1156, + "length": 6, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "IntegerLiteral", - "offset": 10276, - "length": 1, - "value": "1" + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10287, - "length": 17, - "value": "\"mediacodec-hevc\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1367, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10440, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "FloatLiteral", + "offset": 1427, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10451, - "length": 8, - "value": "\"infbuf\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10536, - "length": 2, - "value": "25" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1740, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10548, - "length": 9, - "value": "\"max-fps\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10647, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1915, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10695, - "length": 20, - "value": "\"protocol_whitelist\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 1974, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 11028, + "offset": 2034, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11299, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2151, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11427, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11918, - "length": 17, - "value": "\"cache_file_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12035, - "length": 16, - "value": "\"cache_map_path\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12139, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12231, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12242, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12383, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12396, - "length": 20, - "value": "\"analyzemaxduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12485, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12496, - "length": 17, - "value": "\"analyzeduration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12582, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12589, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12601, - "length": 11, - "value": "\"probesize\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12915, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 13531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13578, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 14026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14225, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14301, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14356, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14479, - "length": 12, - "value": "\"user_agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14715, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14765, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14816, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14976, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15448, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15551, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15650, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16143, - "length": 8, - "value": "\"format\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16273, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16401, - "length": 5, - "value": "\"sws\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16525, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17232, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17504, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17990, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 18038, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18467, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18795, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18828, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19171, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19487, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19576, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19788, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20064, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20311, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20865, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20893, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22043, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23198, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23277, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23376, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24607, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 25103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25629, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25684, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26062, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26121, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26499, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26617, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26632, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26643, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26667, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27010, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27024, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 27080, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27307, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27475, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27620, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28616, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28651, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28691, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28732, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28740, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28779, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28796, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28819, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 29103, - "length": 3, - "value": "1.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 149, - "length": 3, - "value": "155" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 369, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 382, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 394, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 407, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 602, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 615, - "length": 4, - "value": "0.22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 627, - "length": 4, - "value": "0.21" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 640, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 925, - "length": 4, - "value": "0.97" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "Array", - "offset": 996, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1238, - "length": 2, - "value": "79" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1271, - "length": 2, - "value": "76" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1318, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1465, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "BooleanLiteral", - "offset": 1503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1826, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1832, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1975, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 1982, - "length": 3, - "value": "132" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2019, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2031, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2116, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "StringLiteral", - "offset": 2187, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2368, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2680, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2686, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2770, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2819, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 2824, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3205, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3209, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "IntegerLiteral", - "offset": 3480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3509, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3601, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3648, - "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", - "kind": "FloatLiteral", - "offset": 3684, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 1170, - "length": 54, - "value": "\"AVSystemController_SystemVolumeDidChangeNotification\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3023, - "length": 55, - "value": "\"AVSystemController_AudioCategoryNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3155, - "length": 13, - "value": "\"Audio\/Video\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3237, - "length": 65, - "value": "\"AVSystemController_AudioVolumeChangeReasonNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3396, - "length": 22, - "value": "\"ExplicitVolumeChange\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 3476, - "length": 53, - "value": "\"AVSystemController_AudioVolumeNotificationParameter\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 3992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4420, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 4686, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 4751, - "length": 9, - "value": "\"waiting\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5179, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5342, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5535, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5710, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 5752, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 5796, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 5830, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6083, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 6149, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 6939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 7451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7580, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 7888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8149, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8360, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "FloatLiteral", - "offset": 8502, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 8876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "IntegerLiteral", - "offset": 8918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "StringLiteral", - "offset": 8948, - "length": 7, - "value": "\"ended\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Notification.swift", - "kind": "BooleanLiteral", - "offset": 9136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 256, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 544, - "length": 10, - "value": "\"hardware\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 575, - "length": 10, - "value": "\"software\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1156, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 1172, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1367, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "FloatLiteral", - "offset": 1427, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1550, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1740, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1915, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 1974, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2151, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 3836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 4443, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "BooleanLiteral", - "offset": 5453, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7945, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 7983, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8015, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 8816, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9880, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 9974, - "length": 2, - "value": "90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "IntegerLiteral", - "offset": 10025, - "length": 3, - "value": "-90" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", - "kind": "StringLiteral", - "offset": 1200, - "length": 20, - "value": "\"DCUniVideo.UniVideoPlayerConfig\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 1007, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 1663, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 2630, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 3024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 3560, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 3731, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3901, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 3928, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4112, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 4583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 4626, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4843, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5038, - "length": 14, - "value": "[(\"show\", true)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 5226, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "Dictionary", - "offset": 5784, - "length": 15, - "value": "[(\"show\", false)]" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 5904, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 6121, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6164, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 6243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "IntegerLiteral", - "offset": 7008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7157, - "length": 5, - "value": "155.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7209, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "FloatLiteral", - "offset": 7259, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7432, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 7835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 8990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuCell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 167, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 208, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 244, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 924, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 960, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1085, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 1258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1479, - "length": 13, - "value": "\"player_stop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1541, - "length": 13, - "value": "\"player_play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 1595, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1606, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 1631, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1901, - "length": 18, - "value": "\"video_ic_muteoff\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 1968, - "length": 17, - "value": "\"video_ic_muteon\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2050, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 2062, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 2178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2397, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 2810, - "length": 9, - "value": "\"0:00:00\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 14, - "value": "\"slider_thumb\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3103, - "length": 2, - "value": "66" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3108, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 3, - "value": "191" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3141, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3153, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3210, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3216, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3228, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3234, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3245, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 3251, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3295, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 3928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4060, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4210, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4226, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4312, - "length": 16, - "value": "\"exitfullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 4377, - "length": 12, - "value": "\"fullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 4430, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4441, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4455, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4467, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4871, - "length": 4, - "value": "21.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5025, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 5037, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "StringLiteral", - "offset": 5370, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6117, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6156, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6473, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6513, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 6582, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 6986, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7028, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7091, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7518, - "length": 4, - "value": "42.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7560, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7624, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 7946, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 7990, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 8603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8643, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 8701, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "IntegerLiteral", - "offset": 9957, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10013, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10060, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", - "kind": "FloatLiteral", - "offset": 10128, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 475, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 563, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1383, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1560, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1567, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1712, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 1857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "StringLiteral", - "offset": 1864, - "length": 25, - "value": "\"subClass implementation\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 2679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 2972, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 3397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 4980, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "FloatLiteral", - "offset": 4987, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "BooleanLiteral", - "offset": 5410, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5478, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 5608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7007, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7117, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 208, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 242, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 10, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 12, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 463, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1065, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1090, - "length": 21, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1110, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2567, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 2680, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2959, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2965, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 2991, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3074, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3100, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3197, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3409, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3480, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3550, - "length": 4, - "value": "\"up\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3633, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 3682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 3705, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "StringLiteral", - "offset": 3775, - "length": 6, - "value": "\"down\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4594, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 4655, - "length": 3, - "value": "600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "FloatLiteral", - "offset": 5591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", - "kind": "IntegerLiteral", - "offset": 5598, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 419, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 753, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 1474, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 1695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 2555, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 3464, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4354, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4479, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "FloatLiteral", - "offset": 4617, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 4868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6278, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "BooleanLiteral", - "offset": 6417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "IntegerLiteral", - "offset": 6975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8321, - "length": 9, - "value": "\"contain\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8359, - "length": 6, - "value": "\"fill\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Config.swift", - "kind": "StringLiteral", - "offset": 8391, - "length": 7, - "value": "\"cover\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 210, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 226, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 241, - "length": 2, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 254, - "length": 4, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "FloatLiteral", - "offset": 311, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "IntegerLiteral", - "offset": 2405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", - "kind": "BooleanLiteral", - "offset": 3106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 303, - "length": 7, - "value": "\"click\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 9, - "value": "\"screenX\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 9, - "value": "\"screenY\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 13, - "value": "\"screenWidth\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 14, - "value": "\"screenHeight\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 604, - "length": 17, - "value": "\"fullscreenclick\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 835, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1483, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 1533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 1780, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2008, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2040, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2906, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3286, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3302, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 3410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3424, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3499, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3694, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 3864, - "length": 4, - "value": "0.00" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 3964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4863, - "length": 4, - "value": "0.01" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "FloatLiteral", - "offset": 4879, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5037, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "StringLiteral", - "offset": 5230, - "length": 16, - "value": "\"controlstoggle\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 5611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 5885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 6277, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7483, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.Protocol.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 270, - "length": 8, - "value": "\"弹幕\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 326, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 430, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 3, - "value": "150" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 668, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 680, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 685, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 697, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1270, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1600, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "IntegerLiteral", - "offset": 1673, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1734, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 1799, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3273, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3347, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "FloatLiteral", - "offset": 3421, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", - "kind": "StringLiteral", - "offset": 3584, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 2034, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3405, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 3578, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 3821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3975, - "length": 33, - "value": "\"com.olinone.danmaku.renderQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 33, - "value": "\"com.olinone.danmaku.sourceQueue\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4343, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 4483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 5352, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 5611, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5806, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 5916, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 6522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6550, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 36, - "value": "\"configuration nil or duration <= 0\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 19, - "value": "\"isPrepared is NO!\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 6828, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 7109, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7433, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 7538, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 8930, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 9542, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 13, - "value": "\"DCUniVideo.HJDanmakuView\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 12624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13043, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13224, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 13997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 14571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15473, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 15789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16068, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16116, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 16515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17583, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 17804, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 17910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18247, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 18683, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 18996, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19200, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 19784, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 19992, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 20010, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 20822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21501, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21800, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 21983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 22547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 22808, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 22866, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23763, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 23944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 23967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 23998, + "offset": 2469, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "FloatLiteral", - "offset": 24258, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24637, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 24934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25278, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25306, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25487, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "BooleanLiteral", - "offset": 25510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "BooleanLiteral", - "offset": 25541, + "offset": 2551, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 25777, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", - "kind": "IntegerLiteral", - "offset": 29630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 147, - "length": 5, - "value": "\"src\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 194, - "length": 13, - "value": "\"initialTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 10, - "value": "\"controls\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 348, - "length": 13, - "value": "\"enableDanmu\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 11, - "value": "\"danmuList\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 10, - "value": "\"danmuBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 501, - "length": 10, - "value": "\"autoplay\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 6, - "value": "\"loop\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 588, - "length": 7, - "value": "\"muted\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 637, - "length": 13, - "value": "\"pageGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 690, - "length": 11, - "value": "\"direction\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 14, - "value": "\"showProgress\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 807, - "length": 19, - "value": "\"showFullscreenBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"showPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 13, - "value": "\"showMuteBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 984, - "length": 19, - "value": "\"showCenterPlayBtn\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1055, - "length": 23, - "value": "\"enableProgressGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 11, - "value": "\"objectFit\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1166, - "length": 8, - "value": "\"poster\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1216, - "length": 13, - "value": "\"showLoading\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2646, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2741, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3029, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3584, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3690, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, "length": 4, - "value": "50.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, "length": 4, - "value": "10.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2379, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "IntegerLiteral", + "offset": 2630, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 1145, + "offset": 322, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1155, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1605, + "offset": 167, "length": 4, - "value": "15.0" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 1663, + "offset": 282, "length": 4, "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 889, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 924, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, "length": 4, - "value": "16.0" + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1258, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 527, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 1595, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1631, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 299, + "offset": 2037, "length": 3, - "value": "4.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 915, + "offset": 2050, "length": 4, - "value": "12.0" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2062, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 1280, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 2397, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 1580, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" + "offset": 2473, + "length": 9, + "value": "\"0:00:00\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1875, + "offset": 2734, "length": 2, - "value": "20" + "value": "12" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 2810, + "length": 9, + "value": "\"0:00:00\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 3020, + "length": 14, + "value": "\"slider_thumb\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 1957, + "offset": 3103, "length": 2, - "value": "20" + "value": "66" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2020, - "length": 1, - "value": "2" + "offset": 3108, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2045, + "offset": 3120, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2124, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3124, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 2157, - "length": 4, - "value": "45.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 3135, + "length": 3, + "value": "191" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2217, - "length": 1, - "value": "2" + "offset": 3141, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "IntegerLiteral", - "offset": 2236, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 3153, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2364, - "length": 2, - "value": "20" + "offset": 3210, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2457, - "length": 2, - "value": "20" + "offset": 3216, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2531, - "length": 1, - "value": "2" + "offset": 3228, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2561, - "length": 1, - "value": "5" + "offset": 3234, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2834, - "length": 2, - "value": "20" + "offset": 3245, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 2926, - "length": 2, - "value": "20" + "offset": 3251, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 3003, + "offset": 3263, "length": 3, - "value": "0.8" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3041, - "length": 5, - "value": "false" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3081, + "offset": 3295, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3286, + "offset": 3928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3325, + "offset": 4060, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3466, - "length": 2, - "value": "45" + "offset": 4210, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4216, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3509, + "offset": 4226, "length": 2, - "value": "45" + "value": "20" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 3635, - "length": 1, - "value": "5" + "offset": 4238, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 3670, + "offset": 4260, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3706, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4312, + "length": 16, + "value": "\"exitfullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3749, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "StringLiteral", + "offset": 4377, + "length": 12, + "value": "\"fullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 3828, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "IntegerLiteral", + "offset": 4430, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3896, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4441, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 3931, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4455, "length": 4, - "value": "true" + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 4467, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "BooleanLiteral", - "offset": 3973, - "length": 4, - "value": "true" + "offset": 439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 475, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 420, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 510, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 457, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 563, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2166, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 2674, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuSource.swift", "kind": "IntegerLiteral", - "offset": 2904, + "offset": 2003, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3113, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3234, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 3293, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3540, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "0" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 3990, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4301, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 4389, - "length": 6, - "value": "\"13.0\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 4426, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 242, "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4566, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4695, - "length": 1, - "value": "2" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4714, - "length": 1, - "value": "2" + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 4883, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 4895, - "length": 1, - "value": "0" + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 5244, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 5256, - "length": 1, - "value": "0" + "offset": 242, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 5757, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", "kind": "IntegerLiteral", - "offset": 6021, - "length": 1, - "value": "0" + "offset": 298, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "FloatLiteral", - "offset": 6379, - "length": 3, - "value": "0.3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7205, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 12, + "value": "6" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7329, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoInfoModel.swift", + "kind": "IntegerLiteral", + "offset": 463, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7363, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 7728, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7822, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 210, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8056, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8110, - "length": 1, - "value": "0" + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8114, - "length": 1, - "value": "0" + "offset": 254, + "length": 4, + "value": "4" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8183, - "length": 1, + "offset": 210, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", "kind": "IntegerLiteral", - "offset": 8269, - "length": 1, - "value": "0" + "offset": 226, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8751, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 2, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 8785, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/UniVideoDirectionGesture.swift", + "kind": "FloatLiteral", + "offset": 311, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "StringLiteral", - "offset": 9231, + "offset": 270, "length": 8, - "value": "\"detail\"" + "value": "\"弹幕\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9242, - "length": 12, - "value": "\"fullScreen\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "FloatLiteral", + "offset": 326, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "BooleanLiteral", - "offset": 9256, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9263, - "length": 11, - "value": "\"direction\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9276, - "length": 10, - "value": "\"vertical\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoViewPresent.FullScreen.swift", - "kind": "StringLiteral", - "offset": 9335, - "length": 18, - "value": "\"fullscreenchange\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 282, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 662, "length": 3, - "value": "0.0" + "value": "150" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 668, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "IntegerLiteral", - "offset": 488, + "offset": 680, "length": 2, - "value": "20" + "value": "53" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "FloatLiteral", - "offset": 660, + "offset": 697, "length": 3, - "value": "0.0" + "value": "1.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1074, + "offset": 2346, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "StringLiteral", - "offset": 1154, - "length": 6, - "value": "\"cell\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoButtons.swift", "kind": "BooleanLiteral", - "offset": 1421, - "length": 4, - "value": "true" + "offset": 2774, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "FloatLiteral", - "offset": 1614, + "offset": 3578, "length": 3, - "value": "0.1" + "value": "0.2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 1628, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1773, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1779, - "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 1834, + "offset": 3775, "length": 5, - "value": "120.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 1891, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2035, - "length": 3, - "value": "0.1" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "BooleanLiteral", - "offset": 2113, - "length": 4, - "value": "true" + "offset": 3821, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2235, - "length": 3, - "value": "0.1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3975, + "length": 33, + "value": "\"com.olinone.danmaku.renderQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2241, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 33, + "value": "\"com.olinone.danmaku.sourceQueue\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2280, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", "kind": "IntegerLiteral", - "offset": 2321, + "offset": 4483, "length": 1, "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuView.swift", + "kind": "StringLiteral", + "offset": 3594, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuView\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 2692, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 5, + "value": "\"src\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "20" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 13, + "value": "\"initialTime\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "BooleanLiteral", - "offset": 2896, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 10, + "value": "\"duration\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 10, + "value": "\"controls\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 502, - "length": 25, - "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" + "offset": 348, + "length": 13, + "value": "\"enableDanmu\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3291, - "length": 5, - "value": "120.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 11, + "value": "\"danmuList\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3762, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 452, + "length": 10, + "value": "\"danmuBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "FloatLiteral", - "offset": 3791, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 10, + "value": "\"autoplay\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 3986, + "offset": 546, "length": 6, - "value": "\"cell\"" + "value": "\"loop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", - "kind": "IntegerLiteral", - "offset": 4102, - "length": 2, - "value": "30" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"muted\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 4413, - "length": 6, - "value": "\"cell\"" + "offset": 637, + "length": 13, + "value": "\"pageGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 401, - "length": 3, - "value": "\"#\"" + "offset": 690, + "length": 11, + "value": "\"direction\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 1472, - "length": 2, - "value": "\"\"" + "offset": 744, + "length": 14, + "value": "\"showProgress\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 1542, - "length": 1, - "value": "0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 807, + "length": 19, + "value": "\"showFullscreenBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2092, - "length": 3, - "value": "\"#\"" + "offset": 868, + "length": 13, + "value": "\"showPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2154, - "length": 2, - "value": "\"\"" + "offset": 923, + "length": 13, + "value": "\"showMuteBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", "kind": "StringLiteral", - "offset": 2571, - "length": 3, - "value": "\"#\"" + "offset": 984, + "length": 19, + "value": "\"showCenterPlayBtn\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2655, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1055, + "length": 23, + "value": "\"enableProgressGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2673, - "length": 1, - "value": "6" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 11, + "value": "\"objectFit\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2717, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 8, + "value": "\"poster\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 2729, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1216, + "length": 13, + "value": "\"showLoading\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2781, - "length": 1, - "value": "3" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 8, + "value": "\"header\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2908, - "length": 1, - "value": "2" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 10, + "value": "\"advanced\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 27, + "value": "\"vslideGestureInFullscreen\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3015, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 19, + "value": "\"enablePlayGesture\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "FloatLiteral", - "offset": 3027, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 7, + "value": "\"title\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3114, - "length": 2, - "value": "16" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 11, + "value": "\"httpCache\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3120, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1606, + "length": 14, + "value": "\"playStrategy\"" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", + "kind": "StringLiteral", + "offset": 1657, + "length": 7, + "value": "\"codec\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3128, - "length": 5, - "value": "255.0" + "offset": 148, + "length": 4, + "value": "50.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3170, - "length": 1, - "value": "8" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "StringLiteral", + "offset": 455, + "length": 15, + "value": "\"backbarbutton\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3175, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 557, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3183, - "length": 5, - "value": "255.0" + "offset": 570, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "IntegerLiteral", - "offset": 3225, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 584, "length": 4, - "value": "0xFF" + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", "kind": "FloatLiteral", - "offset": 3233, - "length": 5, - "value": "255.0" + "offset": 596, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", + "kind": "FloatLiteral", + "offset": 922, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "FloatLiteral", - "offset": 3247, + "offset": 299, "length": 3, - "value": "1.0" + "value": "4.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3397, - "length": 12, - "value": "\"DCUniVideo\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "FloatLiteral", + "offset": 915, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", "kind": "StringLiteral", - "offset": 3419, - "length": 8, - "value": "\"bundle\"" + "offset": 1146, + "length": 6, + "value": "\"play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3501, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "kind": "BooleanLiteral", + "offset": 1280, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 1, - "value": "\"\/\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "BooleanLiteral", + "offset": 364, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Tools\/Util.Extened.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "IntegerLiteral", + "offset": 488, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", + "kind": "FloatLiteral", + "offset": 660, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Manager\/UniVidePlayerDanmuManager.swift", "kind": "StringLiteral", - "offset": 3522, - "length": 1, - "value": "\".png\"" + "offset": 502, + "length": 25, + "value": "\"DCUniVideo.UniVidePlayerDanmuManager\"" } ] } \ No newline at end of file diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 8facc379d847f14d2b7aca467e56b8e7cae79572..ad4e5595447c6f061ab87c786487961016fcc40f 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index cde640f20d8d906aaba852d272fa83c4686924f0..7f1f7798e9ef5fa03c63ba73bf8afc9b466e2a1b 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 8facc379d847f14d2b7aca467e56b8e7cae79572..ad4e5595447c6f061ab87c786487961016fcc40f 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DCUniVideo -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name DCUniVideo import AVFAudio import AVFoundation import CommonCrypto @@ -58,6 +57,8 @@ public protocol UniVideoPlayerProtocol : AnyObject { func getCurrentUA() -> Swift.String func sendEvent(_ name: Swift.String, _ params: [Swift.String : Any]?) func loadImage(_ url: Swift.String, _ complete: @escaping (UIKit.UIImage) -> Swift.Void) + func videoPlayerWillEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) + func videoPlayerWillExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerExitFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func videoPlayerEnterFullScreen(_ orientation: UIKit.UIInterfaceOrientation) func lockScreen() @@ -71,6 +72,11 @@ public protocol UniVideoPlayerProtocol : AnyObject { func workRootPath() -> Swift.String func videoCacheDir() -> Swift.String } +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class UniMonitoredContentView : UIKit.UIView { + @_Concurrency.MainActor(unsafe) @objc override dynamic public func didAddSubview(_ subview: UIKit.UIView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @objc deinit +} final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { public typealias View = DCUniVideo.UniVideoPlayerView final public var view: DCUniVideo.UniVideoPlayerViewPresent.View @@ -79,7 +85,7 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { get set } - final public var contentView: UIKit.UIView { + final public var contentView: DCUniVideo.UniMonitoredContentView { get set } @@ -87,6 +93,9 @@ final public class UniVideoPlayerViewPresent : DCUniVideo.ViewPresent { @objc deinit final public func updateViewFrame(_ rect: CoreFoundation.CGRect) } +extension DCUniVideo.UniVideoPlayerViewPresent { + final public func onVideoComponentReused(_ config: DCUniVideo.UniVideoPlayerConfig) +} extension DCUniVideo.UniVideoPlayerViewPresent { final public func play() final public func pause() diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeDirectory b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeDirectory index d97439114a809a5f2f30b16e289bf44dd8fa6212..7cfc67906cc4e3d9b14e484e58f2cfc92ad08153 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeDirectory and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeDirectory differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeRequirements-1 b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeRequirements-1 index 6c46144aada3fef6afb51d2996c5ccfd2fd4bef5..e5ee6c2adf59938a0d1671d387fad7421ab508f4 100644 Binary files a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeRequirements-1 and b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeResources b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeResources index 8556f659e2ab2b21b6d059efb7b99273f48f84a3..2215d3465e234a2cb3420b2b8be191870084b7de 100644 --- a/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeResources +++ b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64_x86_64-simulator/DCUniVideo.framework/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Headers/DCUniVideo-Swift.h - 8RtESNpNJ/MLh4AISu16ekCnNgM= + 6AI8KDmmckpzHIE9MTA87TBlOEA= Headers/DCUniVideo.h @@ -18,55 +18,55 @@ Info.plist - ZJfU/z0myJ2FJ6v4FI5s1po6+18= + 4STIX+M3zL3GrGrwOIBZ35QNXpQ= Modules/DCUniVideo.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo - LMw61NwrRpA08JKfgcEYaj3bC4s= + /CTSTQuMxlC70vyU7iOX8wGDf+4= Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo - 7RwLqhAfiKvxA+Cxv6/N962PpOg= + 64wiXw8pS4gsJb8AmmNjU/dce+M= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json - nk9o0CXiQ/GZWFtpqNFQSf56Aq4= + 6g7piUV4/cufnba98Op8+kJw65E= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - TYzZQAPhXzOjxQ7cOKZu2E3/gOM= + AT+Uc934hqQ5s7XiudgE4R+Klag= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc - zaMs+qbaViQJV9jdtXLqo29LabM= + skvNhIA0R3GI+di1j0sdu/54Jgo= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface - TYzZQAPhXzOjxQ7cOKZu2E3/gOM= + AT+Uc934hqQ5s7XiudgE4R+Klag= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftmodule - gR2m/jlpxNCVmIfuV+qVvd6FVoE= + 4WOy1OqT/1CovEL8hNH7mPVwr/U= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json - nk9o0CXiQ/GZWFtpqNFQSf56Aq4= + 6g7piUV4/cufnba98Op8+kJw65E= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - P9A/XUTYbV9hqAFkvIsnL90B8HQ= + 9EbVYjfn5tKvGE1pRend6D42C7g= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - tMymyR7BzfUWQ9cTfV/3r+zajeY= + WeMQjnMJwgj3QZJ6JvPtSkLHDfw= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - P9A/XUTYbV9hqAFkvIsnL90B8HQ= + 9EbVYjfn5tKvGE1pRend6D42C7g= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - p+SyNnDNf1lc0DyiX5aiSin5puk= + 868ltQGQ9ZGE5Iyk1H7oWXmN8JY= Modules/module.modulemap @@ -79,11 +79,11 @@ hash - 8RtESNpNJ/MLh4AISu16ekCnNgM= + 6AI8KDmmckpzHIE9MTA87TBlOEA= hash2 - 6rkDl2fzm2saIt4Lj2MYeOP5Z1dDjaCYAEu7PhIdI/k= + N818DwGCZblozLzhJGHxkM9CUzR3/hgBV+b2dliE1bk= Headers/DCUniVideo.h @@ -112,132 +112,132 @@ hash - LMw61NwrRpA08JKfgcEYaj3bC4s= + /CTSTQuMxlC70vyU7iOX8wGDf+4= hash2 - rQ6ecTyNYorIWSPYIIIvMKXzPCj9nGj+LNKMEIJBP5U= + mXFCGPbsKJ1JiOP54zWfFztb2vrPw+3oQonSw3l6RUc= Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo hash - 7RwLqhAfiKvxA+Cxv6/N962PpOg= + 64wiXw8pS4gsJb8AmmNjU/dce+M= hash2 - Un6dHCBddlRbwPe/xkfXUJUkqJfmlwC9uhfZwcpAHos= + BLjUlDgXs4UIoOKdAhIC+N1JYbZpgOOlezMlmxeFbO4= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json hash - nk9o0CXiQ/GZWFtpqNFQSf56Aq4= + 6g7piUV4/cufnba98Op8+kJw65E= hash2 - G6BCmgVzUh+8PT4Vb2Mo2M57OK54006L7d81dNPspfY= + JQ/uRwcNEZAemsl2XxnN+U1LH2g5HWw9hODc1t6xrSk= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash - TYzZQAPhXzOjxQ7cOKZu2E3/gOM= + AT+Uc934hqQ5s7XiudgE4R+Klag= hash2 - fGUfQRyQkDydTP0YQ2ycZuJ+xLOTauxL6nBJJtVHeUo= + OcfDfHnBnZ1Cc8+ED7WInmje9+thSxUDvdHE7HK2UdQ= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash - zaMs+qbaViQJV9jdtXLqo29LabM= + skvNhIA0R3GI+di1j0sdu/54Jgo= hash2 - ltXhZrQmuZPwZ/zatuXP0+KdjKP8anH8ihgjTcDuFzc= + lNWH1MV4Mzre1nP4Za3ZX5YObDq5i/XHbsm1fIREytI= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash - TYzZQAPhXzOjxQ7cOKZu2E3/gOM= + AT+Uc934hqQ5s7XiudgE4R+Klag= hash2 - fGUfQRyQkDydTP0YQ2ycZuJ+xLOTauxL6nBJJtVHeUo= + OcfDfHnBnZ1Cc8+ED7WInmje9+thSxUDvdHE7HK2UdQ= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash - gR2m/jlpxNCVmIfuV+qVvd6FVoE= + 4WOy1OqT/1CovEL8hNH7mPVwr/U= hash2 - kSBWEAVrVxWfOnEsU4ryWR+gx8eY6RmX8ppIpJlBx9A= + z+56Py2JAl94oNNpRG54OpTOYx6MytxbwujY5jTFiwc= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json hash - nk9o0CXiQ/GZWFtpqNFQSf56Aq4= + 6g7piUV4/cufnba98Op8+kJw65E= hash2 - G6BCmgVzUh+8PT4Vb2Mo2M57OK54006L7d81dNPspfY= + JQ/uRwcNEZAemsl2XxnN+U1LH2g5HWw9hODc1t6xrSk= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash - P9A/XUTYbV9hqAFkvIsnL90B8HQ= + 9EbVYjfn5tKvGE1pRend6D42C7g= hash2 - VzdCbPQNtj1hylfhs2PD3X4eBPdh0GAfIBhp+KSR+P4= + ElH2U0ZxMym5pgUUeycsjfZ8NlPNEW7dLNFHVhUIRUk= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash - tMymyR7BzfUWQ9cTfV/3r+zajeY= + WeMQjnMJwgj3QZJ6JvPtSkLHDfw= hash2 - 9dLnwDexyVteRT+z/YK1LMyqtXXzArso9N35QjFp6bU= + nqCcouRnuFnUpuLy2+rb6C6BrrEytmIDxcf70dIRpyU= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash - P9A/XUTYbV9hqAFkvIsnL90B8HQ= + 9EbVYjfn5tKvGE1pRend6D42C7g= hash2 - VzdCbPQNtj1hylfhs2PD3X4eBPdh0GAfIBhp+KSR+P4= + ElH2U0ZxMym5pgUUeycsjfZ8NlPNEW7dLNFHVhUIRUk= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash - p+SyNnDNf1lc0DyiX5aiSin5puk= + 868ltQGQ9ZGE5Iyk1H7oWXmN8JY= hash2 - AYg5nbZM23N1eAD0JL/9x+MWHN0Lplo1fiDhPwHVPtc= + QwlZD6edjFe9YD6Q6lQL7b23TVaPh7+GWMOLiEahBsc= Modules/module.modulemap diff --git a/uni_modules/uni-video/utssdk/app-ios/index.vue b/uni_modules/uni-video/utssdk/app-ios/index.vue index e0fb8360426d9849f20ed8ff8e1ed94f31f659c4..62ac7ffd925512bf39d97ac6981a195a457e374f 100644 --- a/uni_modules/uni-video/utssdk/app-ios/index.vue +++ b/uni_modules/uni-video/utssdk/app-ios/index.vue @@ -1,550 +1,583 @@ - -