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 993c6b7077a56f7cffe06075899b49a023adf877..37f01529d8659116dd0fd2ce61fd083ae45f4c26 100644 --- a/uni_modules/uni-video/utssdk/app-android/index.vue +++ b/uni_modules/uni-video/utssdk/app-android/index.vue @@ -18,16 +18,24 @@ import FrameLayout from 'android.widget.FrameLayout'; 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'; import MediaPlayer from "android.media.MediaPlayer"; import Bitmap from 'android.graphics.Bitmap'; import Handler from 'android.os.Handler'; import Looper from 'android.os.Looper'; + import DisplayMetrics from 'android.util.DisplayMetrics'; + import Context from 'android.content.Context'; 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'; @@ -37,11 +45,19 @@ name: "video", data() { return { - rootView: null as FrameLayout | null, playerView: null as IjkPlayerView | null, currentPos: 0, currentFrame: null as Bitmap | null, - handler: new Handler(Looper.getMainLooper()) + handler: new Handler(Looper.getMainLooper()), + isEnded: false, + isFirstLayoutFinished: false, + isFullScreenChanged: false, + screenWidth: 0, + screenHeight: 0, + layoutWidth: 0, + layoutHeight: 0, + videoBox: null as FrameLayout | null, + copyPath: '' }; }, emits: ["play", "pause", "ended", "timeupdate", "fullscreenchange", "waiting", "error", "progress", "fullscreenclick", "controlstoggle"], @@ -204,13 +220,13 @@ }, "initialTime": { handler(value : number) { - if (value > 0) this.playerView?.seekTo(value as Int * 1000); + if (value > 0) this.playerView?.seekTo(value.toInt() * 1000); }, immediate: false }, "duration": { handler(value : number) { - if (value > 0) this.playerView?.setDuration(value as Int * 1000); + if (value > 0) this.playerView?.setDuration(value.toInt() * 1000); }, immediate: false }, @@ -246,7 +262,7 @@ }, "direction": { handler(value : number) { - this.playerView?.setDirection(value as Int); + this.playerView?.setDirection(value.toInt()); }, immediate: false }, @@ -379,40 +395,73 @@ immediate: false } }, - NVLoad() : FrameLayout { - this.rootView = new FrameLayout(this.$androidContext!); - this.playerView = new IjkPlayerView(this.$androidContext); - this.rootView?.addView(this.playerView, new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); - return this.rootView!; + NVLoad() : IjkPlayerView { + return new IjkPlayerView(this.$androidContext!); }, NVLoaded() { + this.playerView = this.$el; this.playerView?.init(); - this.playerView?.setPlayerRootView(this.$el); - this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this, this.playerView!)); - this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this, this.playerView!)); + this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this)); + this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this)); this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this)); this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this)); - this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this, this.playerView!)); + 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) { + this.isFirstLayoutFinished = true; + this.playerView?.setPlayerRootView(this.$el!.getParent() as ViewGroup); + this.layoutWidth = this.getLayoutWidth(); + this.layoutHeight = this.getLayoutHeight(); + const metrics = new DisplayMetrics(); + (this.$androidContext!.getSystemService(Context.WINDOW_SERVICE) as WindowManager).getDefaultDisplay().getRealMetrics(metrics); + this.screenWidth = metrics.widthPixels; + this.screenHeight = metrics.heightPixels; + // 调整子组件视图层级 + this.videoBox = this.playerView?.findViewWithTag("fl_video_box"); + (this.playerView as IjkPlayerView).removeView(this.videoBox); + (this.playerView as IjkPlayerView).addView(this.videoBox, 0); + } + 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()); + } + } }, NVUnloaded() { // 资源回收 if (this.$el != null) { // 如果组件绑定了视图则需要在组件销毁时释放视图相关资源 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?.getChildAt(0) as IjkPlayerView; + this.playerView = this.$el; this.playerView?.reset(); this.resetListener(); if (this.currentPos > 0) { this.runDelayed(() => { this.playerView?.hidePoster(); this.playerView?.showLastFrame(this.currentFrame); - this.playerView?.seekTo(this.currentPos as Int); + this.playerView?.seekTo(this.currentPos.toInt()); }, 100); } }, - expose: ['play', 'pause', 'seek', 'requestFullScreen', 'exitFullScreen', 'stop', 'hide', 'show', 'close', 'sendDanmu', 'playbackRate', 'currentPos', 'currentFrame'], + expose: ['play', 'pause', 'seek', 'requestFullScreen', 'exitFullScreen', 'stop', 'hide', 'show', 'close', 'sendDanmu', 'playbackRate', 'currentPos', 'currentFrame', 'isEnded', 'isFirstLayoutFinished', 'isFullScreenChanged', 'videoBox'], methods: { /** * 播放视频 @@ -435,7 +484,7 @@ * @param pos 跳转到的位置,单位:秒(s) */ seek: function (pos : number) { - this.playerView?.seekTo((pos as Int) * 1000); + this.playerView?.seekTo(pos.toInt() * 1000); }, /** * 切换到全屏 @@ -443,11 +492,11 @@ */ requestFullScreen: function (options : RequestFullScreenOptions | null) { this.runOnMain(function () { - let direction = -90; + let direction = -1; if (options != null) { - direction = options.direction as Int; + direction = options.direction ?? -1; } - this.playerView?.fullScreen(direction as Int); + this.playerView?.fullScreen(direction.toInt()); }); }, /** @@ -502,6 +551,10 @@ */ sendDanmu: function (danmu : Danmu) { this.runOnMain(function () { + if (!this.enableDanmu) { + console.error('sendDanmu is disabled, set enable-danmu true first!'); + return; + } const data = new JSONObject(); data.put('text', danmu.text); data.put('color', danmu.color); @@ -522,8 +575,8 @@ */ reload: function (autoplay : boolean) { this.runOnMain(function () { - this.playerView?.setDuration(this.duration as Int * 1000); - this.playerView?.seekTo(this.initialTime as Int * 1000); + this.playerView?.setDuration(this.duration.toInt() * 1000); + this.playerView?.seekTo(this.initialTime.toInt() * 1000); this.playerView?.setMutePlayer(this.playerView?.isMutePlayer() == true); this.playerView?.clearDanma(); this.playerView?.enableDanmaku(this.enableDanmu); @@ -538,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; } }, /** @@ -560,11 +627,13 @@ * 重置监听,复用时调用 */ resetListener: function () { - this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this, this.playerView!)); - this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this, this.playerView!)); + this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this)); + this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this)); this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this)); this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this)); - this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this, this.playerView!)); + this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this)); + this.playerView?.setOnHierarchyChangeListener(new OnHierarchyChangeListenerImpl(this)); + this.playerView?.setOnKeyListener(new OnKeyListenerImpl(this)); } } } @@ -584,13 +653,13 @@ class OnPlayerChangedListenerImpl implements OnPlayerChangedListener { - private comp : UTSContainer; + private comp : UTSContainer; private playerView : IjkPlayerView; - constructor(comp : UTSContainer, playerView : IjkPlayerView) { + constructor(comp : UTSContainer) { super(); this.comp = comp; - this.playerView = playerView; + this.playerView = comp.$el!; } override onChanged(type : String, msg : String) : void { @@ -599,12 +668,13 @@ this.comp.$emit("timeupdate", new UniVideoTimeUpdateEventImpl(JSON.parse(msg)!)); break; case "fullscreenchange": + (this.comp as VideoComponent).isFullScreenChanged = true; const detail = JSON.parse(msg)!; if (detail.fullScreen) { // 进入全屏时取消监听,避免触发暂停逻辑 this.playerView.setOnTextureRenderViewListener(null); } else { // 退出全屏时重新监听 setTimeout(() => { - this.playerView.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this.comp, this.playerView)); + this.playerView.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this.comp)); }, 100); } this.comp.$emit("fullscreenchange", new UniVideoFullScreenChangeEventImpl(detail)); @@ -613,57 +683,53 @@ 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))); break; } - // if (type == "fullscreenchange") { - // if (playerView?.isFullscreen() == true) { - // let container = rootView?.getChildAt(1); - // if (container == null) return; - // setTimeout(() => { - // rootView?.removeView(container); - // playerView?.addView(container); - // container?.bringToFront(); - // }, 100); - // } else { - // let container = playerView?.getChildAt(1); - // if (container == null) return; - // setTimeout(() => { - // playerView?.removeView(container); - // rootView?.addView(container); - // container?.bringToFront(); - // }, 100); - // } - // } } } class OnInfoListenerImpl implements OnInfoListener { - private comp : UTSContainer; + private comp : UTSContainer; private playerView : IjkPlayerView; - constructor(comp : UTSContainer, playerView : IjkPlayerView) { + constructor(comp : UTSContainer) { super(); this.comp = comp; - this.playerView = playerView; + this.playerView = comp.$el!; } override onInfo(iMediaPlayer : IMediaPlayer | null, status : Int, extra : Int) : boolean { switch (status) { case MediaPlayerParams.STATE_COMPLETED: this.comp.$emit("ended", new UniEvent("ended")); + (this.comp as VideoComponent).isEnded = true; if ((this.comp as VideoComponent).loop) { - let initialTime = (this.comp as VideoComponent).initialTime as Int; - if (initialTime > 0) this.playerView.seekTo(initialTime * 1000); + let initialTime = (this.comp as VideoComponent).initialTime; + if (initialTime > 0) this.playerView.seekTo(initialTime.toInt() * 1000); this.playerView.start(); + (this.comp as VideoComponent).isEnded = false; } break; case MediaPlayerParams.STATE_PLAYING: this.comp.$emit("play", new UniEvent("play")); + setTimeout(() => { + if ((this.comp as VideoComponent).isEnded) { + let initialTime = (this.comp as VideoComponent).initialTime; + if (initialTime > 0) this.playerView.seekTo(initialTime.toInt() * 1000); + (this.comp as VideoComponent).isEnded = false; + } + }, 100); break; case MediaPlayerParams.STATE_PAUSED: this.comp.$emit("pause", new UniEvent("pause")); @@ -682,9 +748,9 @@ class OnBufferingUpdateListenerImpl implements OnBufferingUpdateListener { - private comp : UTSContainer; + private comp : UTSContainer; - constructor(comp : UTSContainer) { + constructor(comp : UTSContainer) { super(); this.comp = comp; } @@ -699,9 +765,9 @@ class OnErrorListenerImpl implements OnErrorListener { - private comp : UTSContainer; + private comp : UTSContainer; - constructor(comp : UTSContainer) { + constructor(comp : UTSContainer) { super(); this.comp = comp; } @@ -718,13 +784,13 @@ class OnTextureRenderViewListenerImpl implements OnTextureRenderViewListener { - private comp : UTSContainer; + private comp : UTSContainer; private playerView : IjkPlayerView; - constructor(comp : UTSContainer, playerView : IjkPlayerView) { + constructor(comp : UTSContainer) { super(); this.comp = comp; - this.playerView = playerView; + this.playerView = comp.$el!; } override onDetachedFromWindow() : void { @@ -732,9 +798,58 @@ 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); + } + } + } + + class OnHierarchyChangeListenerImpl implements OnHierarchyChangeListener { + + private comp : UTSContainer; + private playerView : IjkPlayerView; + + constructor(comp : UTSContainer) { + super(); + this.comp = comp; + this.playerView = comp.$el!; + } + + override onChildViewAdded(parent : View, child : View) : void { + // 处理子组件动态添加的情况 + if ((this.comp as VideoComponent).isFirstLayoutFinished) { + if (this.playerView.indexOfChild((this.comp as VideoComponent).videoBox) != 0) { + this.playerView.removeView((this.comp as VideoComponent).videoBox); + this.playerView.addView((this.comp as VideoComponent).videoBox, 0); + } + } + } + + override onChildViewRemoved(parent : View, child : View) : void { + + } + } + + 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 76a49c4172b8d114a184a27334a12efa2f65d14a..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/ios-arm64/DCUniVideo.framework/DCUniVideo b/uni_modules/uni-video/utssdk/app-ios/frameworks/DCUniVideo.xcframework/ios-arm64/DCUniVideo.framework/DCUniVideo index 7a3d9d76bde795f484c8fb8d61aef3e4311c92d2..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 aea7dd7425124e6beb72fb9e3a904263062d7f2f..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 51ed5ef1dfa87866a9f20a30640a0a3a2815ee5e..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,7074 +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\/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", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "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": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "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": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "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": 6089, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, "length": 3, - "value": "\"\/\"" + "value": "1.0" }, { - "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": 602, + "length": 4, + "value": "0.25" }, { - "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": 615, + "length": 4, + "value": "0.22" }, { - "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": 627, "length": 4, - "value": "\".\/\"" + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6761, - "length": 5, - "value": "false" + "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": 6859, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7034, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7109, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7156, - "length": 6, - "value": "\"rtsp\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7219, - "length": 5, - "value": "\"tcp\"" + "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", - "kind": "StringLiteral", - "offset": 7234, - "length": 16, - "value": "\"rtsp_transport\"" + "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": 7327, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7338, - "length": 11, - "value": "\"reconnect\"" + "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": "IntegerLiteral", - "offset": 7404, - "length": 3, - "value": "512" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7417, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "\"vol\"" + "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": 7502, - "length": 3, - "value": "256" + "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": 7515, - "length": 5, - "value": "\"vol\"" + "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": 7603, - "length": 6, - "value": "\"http\"" + "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": 7632, - "length": 7, - "value": "\"https\"" + "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": 7659, - "length": 7, - "value": "\".m3u8\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7671, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\".M3U8\"" + "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": "BooleanLiteral", - "offset": 7707, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7746, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7964, - "length": 3, - "value": "\"1\"" + "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": 7977, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "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": 8182, + "offset": 1145, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 22, - "value": "\"enable-accurate-seek\"" + "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": 8548, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8667, - "length": 24, - "value": "\"Cookie:\"" + "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": "StringLiteral", - "offset": 8690, - "length": 1, - "value": "\"\"" + "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": 8755, - "length": 9, - "value": "\"headers\"" + "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": 8886, - "length": 1, - "value": "0" + "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": 8926, - "length": 2, - "value": "\"\"" + "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": 9041, - "length": 3, - "value": "\"-\"" + "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": 9052, - "length": 2, - "value": "\"\"" + "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", - "kind": "StringLiteral", - "offset": 9081, - "length": 3, - "value": "\"_\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2034, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9092, - "length": 2, - "value": "\"\"" + "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": 9146, - "length": 11, - "value": "\"useragent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9245, - "length": 12, - "value": "\"user-agent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2551, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9361, - "length": 21, - "value": "\"\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9368, - "length": 1, - "value": "\":\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9377, - "length": 1, - "value": "\"\r\n\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9481, - "length": 1, - "value": "0" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9552, - "length": 9, - "value": "\"headers\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9731, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9742, - "length": 8, - "value": "\"infbuf\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 9838, - "length": 9, - "value": "\"max-fps\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9935, - "length": 10, - "value": "\"opensles\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10022, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10033, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10139, - "length": 17, - "value": "\"mediacodec-hevc\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10292, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10303, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10388, - "length": 2, - "value": "25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 9, - "value": "\"max-fps\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10499, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 10547, - "length": 20, - "value": "\"protocol_whitelist\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "BooleanLiteral", - "offset": 10880, + "offset": 1148, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11151, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11162, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11268, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11279, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11770, - "length": 17, - "value": "\"cache_file_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 16, - "value": "\"cache_map_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 11980, + "offset": 2379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11991, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 12083, + "offset": 2630, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12094, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12235, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12248, - "length": 20, - "value": "\"analyzemaxduration\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 12337, + "offset": 322, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 12348, - "length": 17, - "value": "\"analyzeduration\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12434, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 167, "length": 4, - "value": "1024" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12441, - "length": 2, - "value": "10" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12453, - "length": 11, - "value": "\"probesize\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12767, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 13383, + "offset": 889, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13430, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14077, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14153, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14208, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14331, - "length": 12, - "value": "\"user_agent\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14617, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, "length": 5, - "value": "\"key\"" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14668, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14828, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15195, - "length": 8, - "value": "\"format\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15300, - "length": 7, - "value": "\"codec\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15403, - "length": 5, - "value": "\"sws\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15502, - "length": 8, - "value": "\"player\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15995, - "length": 8, - "value": "\"format\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16125, - "length": 7, - "value": "\"codec\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16253, - "length": 5, - "value": "\"sws\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16377, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17084, - "length": 1, - "value": "2" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 17356, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17842, - "length": 9, - "value": "\"0:00:00\"" + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 17890, + "offset": 2037, "length": 3, - "value": "0.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17930, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2050, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18011, - "length": 5, - "value": "false" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 18040, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18319, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18478, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18647, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19023, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19339, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19428, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19640, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19844, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20163, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20717, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20745, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21625, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23050, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23129, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23228, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24459, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24876, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24955, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25389, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25481, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25536, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25674, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25914, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25973, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26382, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26469, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26484, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26495, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26519, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26862, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26876, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26932, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27159, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28468, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28511, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 28543, + "offset": 2397, "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28584, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28592, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28597, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28615, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28631, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28648, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28671, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 28955, - "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", - "kind": "BooleanLiteral", - "offset": 23998, - "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", - "kind": "BooleanLiteral", - "offset": 25541, - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, - "length": 4, - "value": "50.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "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", - "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1605, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1663, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" - }, - { - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 299, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 915, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 1280, - "length": 4, - "value": "true" + "value": "12" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "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 e8cdd257d08b225a1232962d9db422bf78dbdd36..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 741e0a0243006e703f58ed2b4baead04cc67a012..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 0b6564ea7f20eee81ab98095a31c4635aad61a9f..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 51ed5ef1dfa87866a9f20a30640a0a3a2815ee5e..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,7074 +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\/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", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "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": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "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": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "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": 6089, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, "length": 3, - "value": "\"\/\"" + "value": "1.0" }, { - "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": 602, + "length": 4, + "value": "0.25" }, { - "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": 615, + "length": 4, + "value": "0.22" }, { - "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": 627, "length": 4, - "value": "\".\/\"" + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6761, - "length": 5, - "value": "false" + "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": 6859, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7034, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7109, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7156, - "length": 6, - "value": "\"rtsp\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7219, - "length": 5, - "value": "\"tcp\"" + "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", - "kind": "StringLiteral", - "offset": 7234, - "length": 16, - "value": "\"rtsp_transport\"" + "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": 7327, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7338, - "length": 11, - "value": "\"reconnect\"" + "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": "IntegerLiteral", - "offset": 7404, - "length": 3, - "value": "512" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7417, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "\"vol\"" + "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": 7502, - "length": 3, - "value": "256" + "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": 7515, - "length": 5, - "value": "\"vol\"" + "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": 7603, - "length": 6, - "value": "\"http\"" + "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": 7632, - "length": 7, - "value": "\"https\"" + "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": 7659, - "length": 7, - "value": "\".m3u8\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7671, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\".M3U8\"" + "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": "BooleanLiteral", - "offset": 7707, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7746, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7964, - "length": 3, - "value": "\"1\"" + "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": 7977, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "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": 8182, + "offset": 1145, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 22, - "value": "\"enable-accurate-seek\"" + "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": 8548, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8667, - "length": 24, - "value": "\"Cookie:\"" + "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": "StringLiteral", - "offset": 8690, - "length": 1, - "value": "\"\"" + "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": 8755, - "length": 9, - "value": "\"headers\"" + "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": 8886, - "length": 1, - "value": "0" + "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": 8926, - "length": 2, - "value": "\"\"" + "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": 9041, - "length": 3, - "value": "\"-\"" + "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": 9052, - "length": 2, - "value": "\"\"" + "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", - "kind": "StringLiteral", - "offset": 9081, - "length": 3, - "value": "\"_\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2034, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9092, - "length": 2, - "value": "\"\"" + "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": 9146, - "length": 11, - "value": "\"useragent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9245, - "length": 12, - "value": "\"user-agent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2551, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9361, - "length": 21, - "value": "\"\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9368, - "length": 1, - "value": "\":\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9377, - "length": 1, - "value": "\"\r\n\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9481, - "length": 1, - "value": "0" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9552, - "length": 9, - "value": "\"headers\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9731, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9742, - "length": 8, - "value": "\"infbuf\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 9838, - "length": 9, - "value": "\"max-fps\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9935, - "length": 10, - "value": "\"opensles\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10022, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10033, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10139, - "length": 17, - "value": "\"mediacodec-hevc\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10292, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10303, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10388, - "length": 2, - "value": "25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 9, - "value": "\"max-fps\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10499, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 10547, - "length": 20, - "value": "\"protocol_whitelist\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "BooleanLiteral", - "offset": 10880, + "offset": 1148, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11151, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11162, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11268, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11279, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11770, - "length": 17, - "value": "\"cache_file_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 16, - "value": "\"cache_map_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 11980, + "offset": 2379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11991, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 12083, + "offset": 2630, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12094, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12235, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12248, - "length": 20, - "value": "\"analyzemaxduration\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 12337, + "offset": 322, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 12348, - "length": 17, - "value": "\"analyzeduration\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12434, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 167, "length": 4, - "value": "1024" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12441, - "length": 2, - "value": "10" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12453, - "length": 11, - "value": "\"probesize\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12767, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 13383, + "offset": 889, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13430, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14077, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14153, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14208, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14331, - "length": 12, - "value": "\"user_agent\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14617, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, "length": 5, - "value": "\"key\"" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14668, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14828, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15195, - "length": 8, - "value": "\"format\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15300, - "length": 7, - "value": "\"codec\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15403, - "length": 5, - "value": "\"sws\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15502, - "length": 8, - "value": "\"player\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15995, - "length": 8, - "value": "\"format\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16125, - "length": 7, - "value": "\"codec\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16253, - "length": 5, - "value": "\"sws\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16377, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17084, - "length": 1, - "value": "2" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 17356, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17842, - "length": 9, - "value": "\"0:00:00\"" + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 17890, + "offset": 2037, "length": 3, - "value": "0.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17930, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2050, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18011, - "length": 5, - "value": "false" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 18040, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18319, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18478, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18647, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19023, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19339, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19428, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19640, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19844, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20163, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20717, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20745, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21625, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23050, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23129, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23228, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24459, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24876, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24955, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25389, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25481, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25536, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25674, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25914, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25973, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26382, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26469, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26484, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26495, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26519, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26862, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26876, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26932, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27159, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28468, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28511, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 28543, + "offset": 2397, "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28584, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28592, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28597, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28615, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28631, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28648, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28671, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 28955, - "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", - "kind": "BooleanLiteral", - "offset": 23998, - "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", - "kind": "BooleanLiteral", - "offset": 25541, - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, - "length": 4, - "value": "50.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "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", - "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1605, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1663, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" - }, - { - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 299, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 915, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 1280, - "length": 4, - "value": "true" + "value": "12" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "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 51ed5ef1dfa87866a9f20a30640a0a3a2815ee5e..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,7074 +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\/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", - "kind": "BooleanLiteral", - "offset": 5029, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "IntegerLiteral", + "offset": 326, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 5073, - "length": 1, - "value": "0" + "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": "BooleanLiteral", - "offset": 5243, - "length": 5, - "value": "false" + "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": "IntegerLiteral", - "offset": 5501, - "length": 1, - "value": "0" + "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": 6089, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 407, "length": 3, - "value": "\"\/\"" + "value": "1.0" }, { - "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": 602, + "length": 4, + "value": "0.25" }, { - "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": 615, + "length": 4, + "value": "0.22" }, { - "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": 627, "length": 4, - "value": "\".\/\"" + "value": "0.21" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 6761, - "length": 5, - "value": "false" + "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": 6859, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "FloatLiteral", + "offset": 925, + "length": 4, + "value": "0.97" + }, + { + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/SlidingTipsView.swift", + "kind": "Array", + "offset": 996, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7034, - "length": 6, - "value": "\"rtmp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 6, - "value": "\"rtsp\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7109, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 256, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7156, - "length": 6, - "value": "\"rtsp\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7219, - "length": 5, - "value": "\"tcp\"" + "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", - "kind": "StringLiteral", - "offset": 7234, - "length": 16, - "value": "\"rtsp_transport\"" + "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": 7327, - "length": 1, + "offset": 270, + "length": 5, "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7338, - "length": 11, - "value": "\"reconnect\"" + "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": "IntegerLiteral", - "offset": 7404, - "length": 3, - "value": "512" + "offset": 256, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7417, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 270, "length": 5, - "value": "\"vol\"" + "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": 7502, - "length": 3, - "value": "256" + "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": 7515, - "length": 5, - "value": "\"vol\"" + "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": 7603, - "length": 6, - "value": "\"http\"" + "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": 7632, - "length": 7, - "value": "\"https\"" + "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": 7659, - "length": 7, - "value": "\".m3u8\"" + "offset": 575, + "length": 10, + "value": "\"software\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7671, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\".M3U8\"" + "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": "BooleanLiteral", - "offset": 7707, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 7746, - "length": 4, - "value": "true" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1145, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 7964, - "length": 3, - "value": "\"1\"" + "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": 7977, - "length": 17, - "value": "\"dns_cache_clear\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "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": 8182, + "offset": 1145, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 22, - "value": "\"enable-accurate-seek\"" + "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": 8548, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 8667, - "length": 24, - "value": "\"Cookie:\"" + "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": "StringLiteral", - "offset": 8690, - "length": 1, - "value": "\"\"" + "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": 8755, - "length": 9, - "value": "\"headers\"" + "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": 8886, - "length": 1, - "value": "0" + "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": 8926, - "length": 2, - "value": "\"\"" + "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": 9041, - "length": 3, - "value": "\"-\"" + "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": 9052, - "length": 2, - "value": "\"\"" + "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", - "kind": "StringLiteral", - "offset": 9081, - "length": 3, - "value": "\"_\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2034, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9092, - "length": 2, - "value": "\"\"" + "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": 9146, - "length": 11, - "value": "\"useragent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9245, - "length": 12, - "value": "\"user-agent\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", + "kind": "BooleanLiteral", + "offset": 2551, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9361, - "length": 21, - "value": "\"\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9368, - "length": 1, - "value": "\":\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9377, - "length": 1, - "value": "\"\r\n\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9481, - "length": 1, - "value": "0" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9552, - "length": 9, - "value": "\"headers\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9731, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9742, - "length": 8, - "value": "\"infbuf\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "1" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConfig.swift", "kind": "StringLiteral", - "offset": 9838, - "length": 9, - "value": "\"max-fps\"" + "offset": 1200, + "length": 20, + "value": "\"DCUniVideo.UniVideoPlayerConfig\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "1" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 517, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 9935, - "length": 10, - "value": "\"opensles\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 775, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10022, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10033, - "length": 18, - "value": "\"mediacodec-mpeg4\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10139, - "length": 17, - "value": "\"mediacodec-hevc\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10292, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10303, - "length": 8, - "value": "\"infbuf\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 10388, - "length": 2, - "value": "25" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 9, - "value": "\"max-fps\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 10499, - "length": 38, - "value": "\"file,crypto,http,https,tls,tcp,ijkio\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "StringLiteral", - "offset": 10547, - "length": 20, - "value": "\"protocol_whitelist\"" + "offset": 1007, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "BooleanLiteral", - "offset": 10880, + "offset": 1148, "length": 5, "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11151, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11162, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 11268, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11279, - "length": 14, - "value": "\"videotoolbox\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11770, - "length": 17, - "value": "\"cache_file_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1478, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 16, - "value": "\"cache_map_path\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", + "kind": "BooleanLiteral", + "offset": 1663, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 11980, + "offset": 2379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 11991, - "length": 15, - "value": "\"auto_save_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerView.swift", "kind": "IntegerLiteral", - "offset": 12083, + "offset": 2630, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12094, - "length": 17, - "value": "\"parse_cache_map\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12235, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12248, - "length": 20, - "value": "\"analyzemaxduration\"" + "value": "2" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "IntegerLiteral", - "offset": 12337, + "offset": 322, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/HJDanmaku\/HJDanmakuCell.swift", "kind": "StringLiteral", - "offset": 12348, - "length": 17, - "value": "\"analyzeduration\"" + "offset": 269, + "length": 13, + "value": "\"DCUniVideo.HJDanmakuCell\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12434, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 167, "length": 4, - "value": "1024" + "value": "16.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 12441, - "length": 2, - "value": "10" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 208, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12453, - "length": 11, - "value": "\"probesize\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 12767, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 13383, + "offset": 889, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13430, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 13878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14077, - "length": 16, - "value": "\"_formatOptions\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14153, - "length": 12, - "value": "\"user-agent\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14208, - "length": 11, - "value": "\"ijkplayer\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14331, - "length": 12, - "value": "\"user_agent\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 960, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14617, + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1085, "length": 5, - "value": "\"key\"" + "value": "false" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 14668, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "Array", - "offset": 14828, - "length": 36, - "value": "[\"format\", \"codec\", \"sws\", \"player\"]" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15195, - "length": 8, - "value": "\"format\"" + "offset": 1479, + "length": 13, + "value": "\"player_stop\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 15300, - "length": 7, - "value": "\"codec\"" + "offset": 1541, + "length": 13, + "value": "\"player_play\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15403, - "length": 5, - "value": "\"sws\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15502, - "length": 8, - "value": "\"player\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1606, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 15995, - "length": 8, - "value": "\"format\"" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 1619, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 16125, - "length": 7, - "value": "\"codec\"" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16253, - "length": 5, - "value": "\"sws\"" + "offset": 1901, + "length": 18, + "value": "\"video_ic_muteoff\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "StringLiteral", - "offset": 16377, - "length": 8, - "value": "\"player\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 17084, - "length": 1, - "value": "2" + "offset": 1968, + "length": 17, + "value": "\"video_ic_muteon\"" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 17356, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 17842, - "length": 9, - "value": "\"0:00:00\"" + "offset": 2026, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "FloatLiteral", - "offset": 17890, + "offset": 2037, "length": 3, - "value": "0.0" + "value": "8.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 17930, - "length": 5, - "value": "false" + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", + "kind": "FloatLiteral", + "offset": 2050, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18011, - "length": 5, - "value": "false" + "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\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "BooleanLiteral", - "offset": 18040, + "offset": 2178, "length": 4, "value": "true" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18319, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18478, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 18647, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18680, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 18883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19023, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19339, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 19428, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 19640, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19844, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 19916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 20163, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 20481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20717, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 20745, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 21625, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 21895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 22136, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23050, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23129, - "length": 7, - "value": "\"color\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 23228, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 24459, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24876, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 24955, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25389, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25481, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 25536, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25674, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25914, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 25973, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 26382, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26469, - "length": 12, - "value": "\"timeupdate\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26484, - "length": 8, - "value": "\"detail\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26495, - "length": 13, - "value": "\"currentTime\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 26519, - "length": 10, - "value": "\"duration\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26862, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26876, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 26932, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27159, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "BooleanLiteral", - "offset": 27558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28468, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28511, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", + "filePath": "\/Users\/seaman\/Desktop\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBottomBar.swift", "kind": "IntegerLiteral", - "offset": 28543, + "offset": 2397, "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "IntegerLiteral", - "offset": 28580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28584, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28592, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28597, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28615, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28631, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28648, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "StringLiteral", - "offset": 28671, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Present\/UniVideoPlayerViewPresent.swift", - "kind": "FloatLiteral", - "offset": 28955, - "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", - "kind": "BooleanLiteral", - "offset": 23998, - "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", - "kind": "BooleanLiteral", - "offset": 25541, - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"header\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 10, - "value": "\"advanced\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1381, - "length": 27, - "value": "\"vslideGestureInFullscreen\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 19, - "value": "\"enablePlayGesture\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1503, - "length": 7, - "value": "\"title\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1551, - "length": 11, - "value": "\"httpCache\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1606, - "length": 14, - "value": "\"playStrategy\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/Model\/UniVideoPlayerConsts.swift", - "kind": "StringLiteral", - "offset": 1657, - "length": 7, - "value": "\"codec\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 148, - "length": 4, - "value": "50.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "StringLiteral", - "offset": 455, - "length": 15, - "value": "\"backbarbutton\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 557, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 570, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 584, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 596, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 922, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1145, - "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", - "kind": "StringLiteral", - "offset": 1296, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1605, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1619, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1663, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 1713, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 1786, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "FloatLiteral", - "offset": 2091, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerTopBar.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 398, - "length": 20, - "value": "\"control_brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 451, - "length": 8, - "value": "\"亮度\"" - }, - { - "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\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 801, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1269, - "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerBrightnessView.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 12, - "value": "\"brightness\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 299, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "FloatLiteral", - "offset": 915, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 6, - "value": "\"play\"" - }, - { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", - "kind": "BooleanLiteral", - "offset": 1280, - "length": 4, - "value": "true" + "value": "12" }, { - "filePath": "\/Users\/dcloud\/srv\/ext\/SDKiOS\/ExtApiDependency\/DCUniVideo\/DCUniVideo\/View\/UniVideoPlayerOverlayView.swift", + "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 4c7099c1b40d101d626a41a6e43cfddde560d65a..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 91dfbe7a9e1182600eac819aa73f916bb6eea277..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 9b13d3c2c70634d35dc1d77767a32c25a1510420..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 - s671NwsGj4sqwNrv8yjseGHsFcU= + /CTSTQuMxlC70vyU7iOX8wGDf+4= Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo - SUkzPTBsGZ+8sMIVYanMcbgblsU= + 64wiXw8pS4gsJb8AmmNjU/dce+M= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json - klLCR7hwfRK0Dm3cIvcvaWCZZzE= + 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 - uNk62C0qfgyY2a5kPKZHrtvlbAs= + 4WOy1OqT/1CovEL8hNH7mPVwr/U= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json - klLCR7hwfRK0Dm3cIvcvaWCZZzE= + 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 - JdVrKMyf2fPGYDbJBwiyyQNsIiY= + 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 - s671NwsGj4sqwNrv8yjseGHsFcU= + /CTSTQuMxlC70vyU7iOX8wGDf+4= hash2 - iYsFUpWDkvI+jUMAWo2bdH6GyvLJ76JtyNBqbS1fj6Q= + mXFCGPbsKJ1JiOP54zWfFztb2vrPw+3oQonSw3l6RUc= Modules/DCUniVideo.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo hash - SUkzPTBsGZ+8sMIVYanMcbgblsU= + 64wiXw8pS4gsJb8AmmNjU/dce+M= hash2 - X+L51/3PeNndOSrG4xg5uOC9hCFTffd2mVN3oVUewlc= + BLjUlDgXs4UIoOKdAhIC+N1JYbZpgOOlezMlmxeFbO4= Modules/DCUniVideo.swiftmodule/arm64-apple-ios-simulator.abi.json hash - klLCR7hwfRK0Dm3cIvcvaWCZZzE= + 6g7piUV4/cufnba98Op8+kJw65E= hash2 - o4h4Z+83LVZW9r+zBFizfGQO2tO0WDOtdTR6hoN8Gvg= + 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 - uNk62C0qfgyY2a5kPKZHrtvlbAs= + 4WOy1OqT/1CovEL8hNH7mPVwr/U= hash2 - KE6t/makmOA22CRGdqzqC4Jem2fk3gLT41lif5+0lo4= + z+56Py2JAl94oNNpRG54OpTOYx6MytxbwujY5jTFiwc= Modules/DCUniVideo.swiftmodule/x86_64-apple-ios-simulator.abi.json hash - klLCR7hwfRK0Dm3cIvcvaWCZZzE= + 6g7piUV4/cufnba98Op8+kJw65E= hash2 - o4h4Z+83LVZW9r+zBFizfGQO2tO0WDOtdTR6hoN8Gvg= + 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 - JdVrKMyf2fPGYDbJBwiyyQNsIiY= + 868ltQGQ9ZGE5Iyk1H7oWXmN8JY= hash2 - njIhZGKM17t0aLth3QCZel6b3QZzNXrf7k7ApwGl+Wo= + 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 f6f056f1aa01c002b2b9fe97900d33449bd95ea3..62ac7ffd925512bf39d97ac6981a195a457e374f 100644 --- a/uni_modules/uni-video/utssdk/app-ios/index.vue +++ b/uni_modules/uni-video/utssdk/app-ios/index.vue @@ -1,546 +1,583 @@ - - diff --git a/uni_modules/uni-video/utssdk/interface.uts b/uni_modules/uni-video/utssdk/interface.uts index a1b8732957f628c691fa2db4a607905a0309dfc8..d51d91e77ae222e2b81b1cdd43771c61e8de68b8 100644 --- a/uni_modules/uni-video/utssdk/interface.uts +++ b/uni_modules/uni-video/utssdk/interface.uts @@ -58,7 +58,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -81,7 +86,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -105,7 +115,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -128,7 +143,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -152,7 +172,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -176,7 +201,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -200,7 +230,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -224,7 +259,12 @@ export interface VideoContext { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", @@ -239,7 +279,6 @@ export interface VideoContext { export interface Uni { /** * 创建并返回 video 上下文 videoContext 对象 - * @description 创建并返回 video 上下文 videoContext 对象 * @uniPlatform { * "app": { * "android": { @@ -251,17 +290,66 @@ export interface Uni { * "osVer": "12.0", * "uniVer": "√", * "unixVer": "4.11" - * } + * }, + * "harmony": { + * "osVer": "3.0", + * "uniVer": "4.23", + * "unixVer": "x" + * } * }, * "web": { * "uniVer": "√", * "unixVer": "4.0" - * } + * }, + * "mp": { + * "weixin": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "alipay": { + * "hostVer": "1.10.0", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "baidu": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "toutiao": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "lark": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "qq": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "kuaishou": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * }, + * "jd": { + * "hostVer": "√", + * "uniVer": "√", + * "unixVer": "x" + * } + * } * } * @uniVueVersion 2,3 * @return {VideoContext} video组件上下文对象 * - * @tutorial http://uniapp.dcloud.io/api/media/video-context?id=createVideoContext + * @tutorial-uni-app https://uniapp.dcloud.net.cn/api/media/video-context.html#createvideocontext + * @tutorial-uni-app-x https://doc.dcloud.net.cn/uni-app-x/api/create-video-context.html#createvideocontext + * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/create-video-context.html#createvideocontext * */ createVideoContext : CreateVideoContext @@ -269,12 +357,41 @@ export interface Uni { /** * 通用事件 + * 临时方案,规避组件Event接口无法直接继承UniEvent的问题 */ interface UniVideoEvent { + /** + * 是否冒泡 + */ + bubbles : boolean + /** + * 是否可以取消 + */ + cancelable : boolean + /** + * 事件类型 + */ type : string - target : Element | null - currentTarget : Element | null + /** + * 触发事件的组件 + */ + target ?: UniElement | null + /** + * 当前组件 + */ + currentTarget ?: UniElement | null + /** + * 事件发生时的时间戳 + */ timeStamp : Long + /** + * 阻止当前事件的进一步传播 + */ + stopPropagation() : void + /** + * 阻止当前事件的默认行为 + */ + preventDefault() : void } /** @@ -402,4 +519,4 @@ export type VideoProgressEventDetail = UniVideoProgressEventDetail export type VideoFullScreenClickEvent = UniVideoFullScreenClickEvent export type VideoFullScreenClickEventDetail = UniVideoFullScreenClickEventDetail export type VideoControlsToggleEvent = UniVideoControlsToggleEvent -export type VideoControlsToggleEventDetail = UniVideoControlsToggleEventDetail \ No newline at end of file +export type VideoControlsToggleEventDetail = UniVideoControlsToggleEventDetail