├── .gitignore ├── Demo ├── PlayerApp │ ├── PlayerApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Player.xcscheme │ │ │ └── Player_Premium.xcscheme │ ├── PlayerApp.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20-ipad.png │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29-ipad.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x-1.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Common │ │ │ └── Localized │ │ │ │ ├── PlayerLocalized.h │ │ │ │ └── PlayerLocalized.m │ │ ├── Config │ │ │ └── AppConfig.plist │ │ ├── Player-Info.plist │ │ ├── Player.entitlements │ │ ├── PlayerLocalized │ │ │ ├── en.lproj │ │ │ │ └── PlayerLocalized.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── PlayerLocalized.strings │ │ ├── Player_Premium-Info.plist │ │ ├── Player_Premium.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ └── zh-Hans.lproj │ │ │ ├── LaunchScreen.strings │ │ │ └── Main.strings │ └── Podfile ├── PlayerKit │ ├── PlayerKit.podspec │ ├── PlayerKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerKit │ │ ├── App │ │ │ ├── AppCommon │ │ │ │ ├── Catetory │ │ │ │ │ ├── HUDHelper.h │ │ │ │ │ ├── HUDHelper.m │ │ │ │ │ ├── NSData+Common.h │ │ │ │ │ ├── NSData+Common.m │ │ │ │ │ ├── NSDictionary+Common.h │ │ │ │ │ ├── NSDictionary+Common.m │ │ │ │ │ ├── NSObject+CommonBlock.h │ │ │ │ │ ├── NSObject+CommonBlock.m │ │ │ │ │ ├── NSString+Common.h │ │ │ │ │ ├── NSString+Common.m │ │ │ │ │ ├── NSString+UISize.h │ │ │ │ │ ├── NSString+UISize.m │ │ │ │ │ ├── NSTimer+BlcokTimer.h │ │ │ │ │ ├── NSTimer+BlcokTimer.m │ │ │ │ │ ├── UIButton+Additions.h │ │ │ │ │ ├── UIButton+Additions.m │ │ │ │ │ ├── UIButton+Glossy.h │ │ │ │ │ ├── UIButton+Glossy.m │ │ │ │ │ ├── UIColor+MLPFlatColors.h │ │ │ │ │ ├── UIColor+MLPFlatColors.m │ │ │ │ │ ├── UIImage+TPAdditions.h │ │ │ │ │ ├── UIImage+TPAdditions.m │ │ │ │ │ ├── UIView+Additions.h │ │ │ │ │ ├── UIView+Additions.m │ │ │ │ │ ├── UIView+CustomAutoLayout.h │ │ │ │ │ ├── UIView+CustomAutoLayout.m │ │ │ │ │ ├── UIViewController+BackButtonHandler.h │ │ │ │ │ └── UIViewController+BackButtonHandler.m │ │ │ │ ├── ColorMacro.h │ │ │ │ ├── CommonUtils │ │ │ │ │ ├── TCLog.h │ │ │ │ │ ├── TCLog.m │ │ │ │ │ ├── TCUtil.h │ │ │ │ │ └── TCUtil.m │ │ │ │ ├── EnterprisePITU │ │ │ │ │ ├── YTFaceSDK.licence │ │ │ │ │ └── data │ │ │ │ │ │ ├── AECore.metallib │ │ │ │ │ │ ├── FilterEngine.bundle │ │ │ │ │ │ └── FilterResource │ │ │ │ │ │ │ ├── cos │ │ │ │ │ │ │ ├── bitlip.png │ │ │ │ │ │ │ ├── bridge_highlight.png │ │ │ │ │ │ │ ├── bridge_shadow.png │ │ │ │ │ │ │ ├── face_highlight.png │ │ │ │ │ │ │ ├── face_shadow.png │ │ │ │ │ │ │ ├── hair_tmpl0.jpg │ │ │ │ │ │ │ ├── hair_tmpl1.jpg │ │ │ │ │ │ │ ├── hair_tmpl2.jpg │ │ │ │ │ │ │ ├── hairstripe_1.png │ │ │ │ │ │ │ ├── lipsHL.png │ │ │ │ │ │ │ ├── lipsWater.png │ │ │ │ │ │ │ ├── skin.png │ │ │ │ │ │ │ └── wocan.png │ │ │ │ │ │ │ ├── face │ │ │ │ │ │ │ ├── distort_curve_n.raw │ │ │ │ │ │ │ ├── distort_curvex_1h.raw │ │ │ │ │ │ │ ├── distort_curvex_1v.raw │ │ │ │ │ │ │ ├── distort_curvex_3.raw │ │ │ │ │ │ │ ├── enlarge_eye_tmpl_n.bmp │ │ │ │ │ │ │ ├── face_flash_normal.jpg │ │ │ │ │ │ │ ├── face_flash_strong.jpg │ │ │ │ │ │ │ ├── face_mask.jpg │ │ │ │ │ │ │ ├── lut_ruddy.png │ │ │ │ │ │ │ ├── lut_whiteskin.png │ │ │ │ │ │ │ ├── mouse_mask.jpg │ │ │ │ │ │ │ ├── perfectskin.png │ │ │ │ │ │ │ └── single_eye_mask_2.jpg │ │ │ │ │ │ │ ├── facecolor │ │ │ │ │ │ │ ├── facecolor.png │ │ │ │ │ │ │ ├── facewhiten_natural.png │ │ │ │ │ │ │ ├── facewhiten_red.png │ │ │ │ │ │ │ ├── lut_cold.png │ │ │ │ │ │ │ ├── lut_gray.png │ │ │ │ │ │ │ ├── lut_redskin.png │ │ │ │ │ │ │ ├── lut_warm.png │ │ │ │ │ │ │ └── lut_whiteskin.png │ │ │ │ │ │ │ ├── faceoff │ │ │ │ │ │ │ ├── Params_animoji.json │ │ │ │ │ │ │ ├── crazyfacegray.json │ │ │ │ │ │ │ ├── crazyfacegray.png │ │ │ │ │ │ │ ├── crazyfacegray.wmc │ │ │ │ │ │ │ ├── eyeLighten.json │ │ │ │ │ │ │ ├── eyebrowmask.jpg │ │ │ │ │ │ │ ├── eyemask.jpg │ │ │ │ │ │ │ ├── faceMask_skin.png │ │ │ │ │ │ │ ├── facekit_indices.dat │ │ │ │ │ │ │ ├── facekit_map.json │ │ │ │ │ │ │ ├── facekit_uv.dat │ │ │ │ │ │ │ ├── faceoffmask.png │ │ │ │ │ │ │ ├── faceoffnose.json │ │ │ │ │ │ │ ├── faceoffnose.png │ │ │ │ │ │ │ ├── faceswapgray.png │ │ │ │ │ │ │ ├── faceswapgray.wmc │ │ │ │ │ │ │ ├── maskModel.json │ │ │ │ │ │ │ ├── maskModel.png │ │ │ │ │ │ │ ├── noeyegray.json │ │ │ │ │ │ │ ├── noeyegray.png │ │ │ │ │ │ │ ├── noeyegray.wmc │ │ │ │ │ │ │ ├── nomouthgray.json │ │ │ │ │ │ │ ├── nomouthgray.png │ │ │ │ │ │ │ ├── nomouthgray.wmc │ │ │ │ │ │ │ ├── video_wuguanliti │ │ │ │ │ │ │ │ ├── beauty_lips.png │ │ │ │ │ │ │ │ ├── beauty_multiply.png │ │ │ │ │ │ │ │ ├── beauty_normal.png │ │ │ │ │ │ │ │ ├── beauty_softlight.png │ │ │ │ │ │ │ │ ├── dannai_normal.png │ │ │ │ │ │ │ │ ├── hongkong_normal.png │ │ │ │ │ │ │ │ ├── lips_lut.png │ │ │ │ │ │ │ │ ├── lips_mask.png │ │ │ │ │ │ │ │ ├── lips_mask.wmc │ │ │ │ │ │ │ │ ├── lips_origin.png │ │ │ │ │ │ │ │ ├── params.wmc │ │ │ │ │ │ │ │ ├── teeth_lut.png │ │ │ │ │ │ │ │ └── teeth_mask.jpg │ │ │ │ │ │ │ └── wrinklemask.jpg │ │ │ │ │ │ │ └── realtimefaceedit │ │ │ │ │ │ │ ├── basic3.wmc │ │ │ │ │ │ │ ├── dayan.wmc │ │ │ │ │ │ │ ├── duanlian.wmc │ │ │ │ │ │ │ ├── shoubi.wmc │ │ │ │ │ │ │ ├── thinface.json │ │ │ │ │ │ │ ├── vlian.wmc │ │ │ │ │ │ │ ├── xiaba.wmc │ │ │ │ │ │ │ └── zhailian.wmc │ │ │ │ │ │ ├── MSFMLandmarks46_relandmark_models.xbin │ │ │ │ │ │ ├── RPNSegmenter.bundle │ │ │ │ │ │ ├── RPNSegmenter.metallib │ │ │ │ │ │ ├── RPNSegmenter_m5.rapidnetmodel │ │ │ │ │ │ └── RPNSegmenter_m5_638_382_bin.rapidnetproto │ │ │ │ │ │ ├── YTHandDetector.bundle │ │ │ │ │ │ ├── handdetect │ │ │ │ │ │ │ ├── v3.0_1130_add_lift_epoch40.rapidnetmodel_nchw │ │ │ │ │ │ │ └── v3.0_1130_add_lift_epoch40_bin.rapidnetproto_nchw_mod │ │ │ │ │ │ ├── handtrack │ │ │ │ │ │ │ └── add_p_tu_1130_800k.rpdm │ │ │ │ │ │ └── res18_3M │ │ │ │ │ │ │ ├── v3.0_int8_resnet18_3MB_1130.pb.rapidnetmodel_nhwc │ │ │ │ │ │ │ └── v3.0_int8_resnet18_3MB_1130.pb_bin.rapidnetproto_nhwc │ │ │ │ │ │ ├── detector.bundle │ │ │ │ │ │ ├── acn_535_net1.opt.tnnmodel │ │ │ │ │ │ ├── acn_535_net1.opt_bin.tnnproto │ │ │ │ │ │ ├── acn_535_net2.opt.tnnmodel │ │ │ │ │ │ ├── acn_535_net2.opt_bin.tnnproto │ │ │ │ │ │ └── detector_config.ini │ │ │ │ │ │ ├── e1 │ │ │ │ │ │ ├── o1 │ │ │ │ │ │ ├── poseest.bundle │ │ │ │ │ │ ├── meshBasis.bin │ │ │ │ │ │ └── rotBasis.bin │ │ │ │ │ │ ├── u1 │ │ │ │ │ │ ├── ufa.bundle │ │ │ │ │ │ ├── mbv2.11_64_1.05_p1_vis_0718.opt_v1.rapidmodel │ │ │ │ │ │ ├── mbv2.11_64_1.05_p1_vis_0718.opt_v1_bin.rapidproto │ │ │ │ │ │ ├── mbv2.15_picasso_56_1.3_p2_0711.opt_v1.rapidmodel │ │ │ │ │ │ ├── mbv2.15_picasso_56_1.3_p2_0711.opt_v1_bin.rapidproto │ │ │ │ │ │ └── ufa_config.ini │ │ │ │ │ │ └── v1 │ │ │ │ ├── QRScan │ │ │ │ │ ├── TPScanQRController.h │ │ │ │ │ └── TPScanQRController.mm │ │ │ │ ├── SmallButton │ │ │ │ │ ├── SmallButton.h │ │ │ │ │ └── SmallButton.m │ │ │ │ └── TCHttpUtil │ │ │ │ │ ├── TCHttpUtil.h │ │ │ │ │ └── TCHttpUtil.m │ │ │ ├── AppLogMgr.h │ │ │ ├── AppLogMgr.m │ │ │ ├── Main │ │ │ │ ├── MainTableViewCell.h │ │ │ │ ├── MainTableViewCell.m │ │ │ │ ├── MainViewController.h │ │ │ │ └── MainViewController.m │ │ │ ├── Resource │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AVRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── camera_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera_dis.png │ │ │ │ │ │ ├── camera_nol.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera_nol.png │ │ │ │ │ │ ├── mic.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mic.png │ │ │ │ │ │ ├── mic_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mic_dis.png │ │ │ │ │ │ ├── sound.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── sound.png │ │ │ │ │ │ └── sound_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── sound_dis.png │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-50.png │ │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ ├── AppIcon_TRTC.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-60.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ │ └── TRTC_Demo_App_icon.jpg │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── arrow.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── arrow@2x.png │ │ │ │ │ │ ├── avroom.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avroom@2x.png │ │ │ │ │ │ ├── block_normal.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── block_normal@2x.png │ │ │ │ │ │ ├── block_pressed.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── block_pressed@2x.png │ │ │ │ │ │ ├── cut.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cut@2x.png │ │ │ │ │ │ ├── dbg_tool.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 调试.png │ │ │ │ │ │ ├── double_room.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── double_room@2x.png │ │ │ │ │ │ ├── liveplay.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── liveplay@2x.png │ │ │ │ │ │ ├── main_composite.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_composite.png │ │ │ │ │ │ ├── main_room_live.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_live.png │ │ │ │ │ │ ├── main_room_multi.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_multi.png │ │ │ │ │ │ ├── main_room_video.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── main_room_video.png │ │ │ │ │ │ ├── multi-chat.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── multi-chat.png │ │ │ │ │ │ ├── push.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── push@2x.png │ │ │ │ │ │ ├── qa.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── qa@2x.png │ │ │ │ │ │ ├── realtime-player.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── realtime-player.png │ │ │ │ │ │ ├── transparent.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── transparent.png │ │ │ │ │ │ └── vodplay.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── vodplay@2x.png │ │ │ │ │ ├── Play │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Input_box.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Input_box.png │ │ │ │ │ │ ├── QR_code.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── QR_code.png │ │ │ │ │ │ ├── SuperPlayer │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── addp.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── addp@2x.png │ │ │ │ │ │ │ ├── back_full.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── back_full@2x.png │ │ │ │ │ │ │ │ └── back_full@3x.png │ │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ │ ├── player_back_full.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_back_full@2x.png │ │ │ │ │ │ │ │ └── player_back_full@3x.png │ │ │ │ │ │ │ ├── player_bottom_shadow.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── player_bottom_shadow.png │ │ │ │ │ │ │ ├── player_fullscreen.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_fullscreen.png │ │ │ │ │ │ │ │ ├── player_fullscreen@2x.png │ │ │ │ │ │ │ │ └── player_fullscreen@3x.png │ │ │ │ │ │ │ └── player_unlock-nor.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── player_unlock-nor@2x.png │ │ │ │ │ │ │ │ └── player_unlock-nor@3x.png │ │ │ │ │ │ ├── adjust.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── adjust.png │ │ │ │ │ │ ├── black.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── black.png │ │ │ │ │ │ ├── btn_selected.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── btn_selected.png │ │ │ │ │ │ ├── btn_unselected.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── btn_unselected.png │ │ │ │ │ │ ├── cache.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache.png │ │ │ │ │ │ ├── cache2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache2.png │ │ │ │ │ │ ├── cache_time.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cache_time.png │ │ │ │ │ │ ├── close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ ├── fill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── fill.png │ │ │ │ │ │ ├── h264.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── h264.png │ │ │ │ │ │ ├── h265.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── h265.png │ │ │ │ │ │ ├── jisu_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── jisu_on.png │ │ │ │ │ │ ├── jisu_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── jisu_off.png │ │ │ │ │ │ ├── landscape.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── landscape.png │ │ │ │ │ │ ├── loading_image0.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image0.png │ │ │ │ │ │ ├── loading_image1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image1.png │ │ │ │ │ │ ├── loading_image2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image2.png │ │ │ │ │ │ ├── loading_image3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image3.png │ │ │ │ │ │ ├── loading_image4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image4.png │ │ │ │ │ │ ├── loading_image5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image5.png │ │ │ │ │ │ ├── loading_image6.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image6.png │ │ │ │ │ │ ├── loading_image7.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_image7.png │ │ │ │ │ │ ├── log.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── log.png │ │ │ │ │ │ ├── log2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── log2.png │ │ │ │ │ │ ├── play_background.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_background@2x.png │ │ │ │ │ │ │ └── play_background@3x.png │ │ │ │ │ │ ├── play_cache_time.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_cache_time.png │ │ │ │ │ │ │ ├── play_cache_time@2x.png │ │ │ │ │ │ │ └── play_cache_time@3x.png │ │ │ │ │ │ ├── play_fill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_fill.png │ │ │ │ │ │ │ ├── play_fill@2x.png │ │ │ │ │ │ │ └── play_fill@3x.png │ │ │ │ │ │ ├── play_log_show.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_log_show.png │ │ │ │ │ │ │ ├── play_log_show@2x.png │ │ │ │ │ │ │ └── play_log_show@3x.png │ │ │ │ │ │ ├── play_mute.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── playmute.png │ │ │ │ │ │ ├── play_pause.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_pause.png │ │ │ │ │ │ │ ├── play_pause@2x.png │ │ │ │ │ │ │ └── play_pause@3x.png │ │ │ │ │ │ ├── play_portrait.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_portrait.png │ │ │ │ │ │ │ ├── play_portrait@2x.png │ │ │ │ │ │ │ └── play_portrait@3x.png │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ ├── play_sound.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── playsound.png │ │ │ │ │ │ ├── play_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── play_start.png │ │ │ │ │ │ │ ├── play_start@2x.png │ │ │ │ │ │ │ └── play_start@3x.png │ │ │ │ │ │ ├── portrait.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── portrait.png │ │ │ │ │ │ ├── quick.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── quick.png │ │ │ │ │ │ ├── quick2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── quick2.png │ │ │ │ │ │ ├── start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── start.png │ │ │ │ │ │ ├── stop.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ ├── suspend.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── suspend.png │ │ │ │ │ │ └── white.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── white.png │ │ │ │ │ ├── Push │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── HD.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── HD.png │ │ │ │ │ │ ├── PU.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── PU.png │ │ │ │ │ │ ├── SD.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── SD.png │ │ │ │ │ │ ├── beauty_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 美颜-关.png │ │ │ │ │ │ ├── beauty_dis.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── beauty_dis.png │ │ │ │ │ │ ├── camera.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ │ ├── camera@2x.png │ │ │ │ │ │ │ └── camera@3x.png │ │ │ │ │ │ ├── camera2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── camera2.png │ │ │ │ │ │ ├── float.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── float.png │ │ │ │ │ │ ├── float_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 排列-浮动.png │ │ │ │ │ │ ├── gird.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── gird.png │ │ │ │ │ │ ├── gird_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 排列-平铺.png │ │ │ │ │ │ ├── greenb.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── greenb.png │ │ │ │ │ │ ├── greenb2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── greenb2.png │ │ │ │ │ │ ├── help.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── help.png │ │ │ │ │ │ ├── ic_green.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_green.png │ │ │ │ │ │ ├── ic_red.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_red.png │ │ │ │ │ │ ├── log_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── logo-开.png │ │ │ │ │ │ ├── log_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── logo-关.png │ │ │ │ │ │ ├── mlvb_beauty.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_beauty.png │ │ │ │ │ │ ├── mlvb_camera_back.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_camera_back.png │ │ │ │ │ │ ├── mlvb_camera_front.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_camera_front.png │ │ │ │ │ │ ├── music.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── music.png │ │ │ │ │ │ ├── mute_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mute_b.png │ │ │ │ │ │ ├── mute_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 静音-关.png │ │ │ │ │ │ ├── new.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── new.png │ │ │ │ │ │ ├── pause_publish.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── pause_publish.jpg │ │ │ │ │ │ ├── send.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── send.png │ │ │ │ │ │ ├── set.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── set.png │ │ │ │ │ │ ├── set_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 设置-开.png │ │ │ │ │ │ ├── set_b2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 设置-关.png │ │ │ │ │ │ ├── snapshot.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── snapshot.png │ │ │ │ │ │ ├── start2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── start2.png │ │ │ │ │ │ ├── stop2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stop2.png │ │ │ │ │ │ ├── stopwatch.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stopwatch.png │ │ │ │ │ │ ├── stopwatch_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── stopwatch_h.png │ │ │ │ │ │ ├── video_press.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── video_press.png │ │ │ │ │ │ └── watermark.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── watermark.png │ │ │ │ │ ├── RTCRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── help_small.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── help_small@2x.png │ │ │ │ │ │ ├── linkmic_kickout.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_kickout@2x.png │ │ │ │ │ │ ├── linkmic_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_start@2x.png │ │ │ │ │ │ ├── linkmic_stop.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── linkmic_stop@2x.png │ │ │ │ │ │ ├── loading_1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_1.png │ │ │ │ │ │ ├── loading_10.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_10.png │ │ │ │ │ │ ├── loading_11.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_11.png │ │ │ │ │ │ ├── loading_12.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_12.png │ │ │ │ │ │ ├── loading_13.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_13.png │ │ │ │ │ │ ├── loading_14.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_14.png │ │ │ │ │ │ ├── loading_2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_2.png │ │ │ │ │ │ ├── loading_3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_3.png │ │ │ │ │ │ ├── loading_4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_4.png │ │ │ │ │ │ ├── loading_5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_5.png │ │ │ │ │ │ ├── loading_6.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_6.png │ │ │ │ │ │ ├── loading_7.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_7.png │ │ │ │ │ │ ├── loading_8.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_8.png │ │ │ │ │ │ ├── loading_9.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── loading_9.png │ │ │ │ │ │ ├── look_log.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── look_log@2x.png │ │ │ │ │ │ ├── mlvb_comment.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_comment@2x.png │ │ │ │ │ │ ├── mlvb_pk.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_pk.png │ │ │ │ │ │ ├── mlvb_pk_stop_button.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── mlvb_pk_stop_button.png │ │ │ │ │ │ ├── nick_mask.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── nick_mask@2x.png │ │ │ │ │ │ ├── people.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── people@2x.png │ │ │ │ │ │ ├── pk_start.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── pk_start.png │ │ │ │ │ │ │ ├── pk_start@2x.png │ │ │ │ │ │ │ └── pk_start@3x.png │ │ │ │ │ │ ├── release-env.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 正式环境.png │ │ │ │ │ │ ├── test-env.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── 测试环境.png │ │ │ │ │ │ ├── tim-test.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── tim_test.png │ │ │ │ │ │ └── tim-yun.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── tim_formal.png │ │ │ │ │ ├── TRTC │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── VideoClosed.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── VideoClosed@2x.png │ │ │ │ │ │ ├── cdnLogo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── cdnLogo.png │ │ │ │ │ │ ├── handsfree_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── handsfree_off@2x.png │ │ │ │ │ │ ├── handsfree_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── handsfree_on@2x.png │ │ │ │ │ │ ├── members.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── members.png │ │ │ │ │ │ ├── more_b.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── more_b@2x.png │ │ │ │ │ │ ├── muteAudio.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── muteAudio@2x.png │ │ │ │ │ │ ├── muteVideo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── closeVideo.png │ │ │ │ │ │ ├── navback.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── back_full@3x.png │ │ │ │ │ │ ├── scaleFill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── scaleFill@2x.png │ │ │ │ │ │ ├── scaleFit.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── scaleFit@2x.png │ │ │ │ │ │ ├── signal1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal1@2x.png │ │ │ │ │ │ ├── signal2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal2@2x.png │ │ │ │ │ │ ├── signal3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal3@2x.png │ │ │ │ │ │ ├── signal4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal4@2x.png │ │ │ │ │ │ ├── signal5.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── signal5@2x.png │ │ │ │ │ │ ├── unmuteAudio.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── unmuteAudio@2x.png │ │ │ │ │ │ ├── unmuteVideo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── unCloseVideo.png │ │ │ │ │ │ └── view_close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── close@3x.png │ │ │ │ │ ├── TRTCVoiceRoom │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audioRoute_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_disable.png │ │ │ │ │ │ │ ├── voice_changer_disable@2x.png │ │ │ │ │ │ │ └── voice_changer_disable@3x.png │ │ │ │ │ │ ├── audioRoute_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_off.png │ │ │ │ │ │ │ ├── voice_changer_off@2x.png │ │ │ │ │ │ │ └── voice_changer_off@3x.png │ │ │ │ │ │ ├── audioRoute_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_on.png │ │ │ │ │ │ │ ├── voice_changer_on@2x.png │ │ │ │ │ │ │ └── voice_changer_on@3x.png │ │ │ │ │ │ ├── avatar0_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar0_100.png │ │ │ │ │ │ ├── avatar0_100.png │ │ │ │ │ │ ├── avatar1_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar1_100.png │ │ │ │ │ │ ├── avatar1_100.png │ │ │ │ │ │ ├── avatar2_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar2_100.png │ │ │ │ │ │ ├── avatar2_100.png │ │ │ │ │ │ ├── avatar3_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar3_100.png │ │ │ │ │ │ ├── avatar3_100.png │ │ │ │ │ │ ├── avatar4_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar4_100.png │ │ │ │ │ │ ├── avatar4_100.png │ │ │ │ │ │ ├── avatar5_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar5_100.png │ │ │ │ │ │ ├── avatar5_100.png │ │ │ │ │ │ ├── avatar6_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar6_100.png │ │ │ │ │ │ ├── avatar6_100.png │ │ │ │ │ │ ├── avatar7_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar7_100.png │ │ │ │ │ │ ├── avatar7_100.png │ │ │ │ │ │ ├── avatar8_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar8_100.png │ │ │ │ │ │ ├── avatar8_100.png │ │ │ │ │ │ ├── avatar9_100.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── avatar9_100.png │ │ │ │ │ │ ├── avatar9_100.png │ │ │ │ │ │ ├── bgm_pause.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── bgm_pause.png │ │ │ │ │ │ │ └── bgm_pause@3x.png │ │ │ │ │ │ ├── bgm_play.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── bgm_play.png │ │ │ │ │ │ │ └── bgm_play@3x.png │ │ │ │ │ │ ├── mic_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_dissable.png │ │ │ │ │ │ │ ├── mic_dissable@2x.png │ │ │ │ │ │ │ └── mic_dissable@3x.png │ │ │ │ │ │ ├── mic_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_off.png │ │ │ │ │ │ │ ├── mic_off@2x.png │ │ │ │ │ │ │ └── mic_off@3x.png │ │ │ │ │ │ ├── mic_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── mic_on.png │ │ │ │ │ │ │ ├── mic_on@2x.png │ │ │ │ │ │ │ └── mic_on@3x.png │ │ │ │ │ │ ├── more_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more_disable.png │ │ │ │ │ │ │ ├── more_disable@2x.png │ │ │ │ │ │ │ └── more_disable@3x.png │ │ │ │ │ │ ├── more_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ │ ├── more@2x.png │ │ │ │ │ │ │ └── more_off@3x.png │ │ │ │ │ │ ├── more_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── more_on.png │ │ │ │ │ │ │ ├── more_on@2x.png │ │ │ │ │ │ │ └── more_on@3x.png │ │ │ │ │ │ ├── music_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_dissable.png │ │ │ │ │ │ │ ├── music_dissable@2x.png │ │ │ │ │ │ │ └── music_dissable@3x.png │ │ │ │ │ │ ├── music_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_off.png │ │ │ │ │ │ │ ├── music_off@2x.png │ │ │ │ │ │ │ └── music_off@3x.png │ │ │ │ │ │ ├── music_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── music_on.png │ │ │ │ │ │ │ ├── music_on@2x.png │ │ │ │ │ │ │ └── music_on@3x.png │ │ │ │ │ │ ├── plus.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── plus.png │ │ │ │ │ │ │ ├── plus@2x.png │ │ │ │ │ │ │ └── plus@3x.png │ │ │ │ │ │ ├── select_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── select_off.png │ │ │ │ │ │ │ ├── select_off@2x.png │ │ │ │ │ │ │ └── select_off@3x.png │ │ │ │ │ │ ├── voice_changer_disable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_dissable.png │ │ │ │ │ │ │ ├── voice_changer_dissable@2x.png │ │ │ │ │ │ │ └── voice_changer_dissable@3x.png │ │ │ │ │ │ ├── voice_changer_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_off.png │ │ │ │ │ │ │ ├── voice_changer_off@2x.png │ │ │ │ │ │ │ └── voice_changer_off@3x.png │ │ │ │ │ │ ├── voice_changer_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_changer_on.png │ │ │ │ │ │ │ ├── voice_changer_on@2x.png │ │ │ │ │ │ │ └── voice_changer_on@3x.png │ │ │ │ │ │ ├── voice_chatroom_1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_chatroom_1.png │ │ │ │ │ │ │ ├── voice_chatroom_1@2x.png │ │ │ │ │ │ │ └── voice_chatroom_1@3x.png │ │ │ │ │ │ ├── voice_effector_dissable.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_dissable.png │ │ │ │ │ │ │ ├── voice_effector_dissable@2x.png │ │ │ │ │ │ │ └── voice_effector_dissable@3x.png │ │ │ │ │ │ ├── voice_effector_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_off.png │ │ │ │ │ │ │ ├── voice_effector_off@2x.png │ │ │ │ │ │ │ └── voice_effector_off@3x.png │ │ │ │ │ │ ├── voice_effector_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_effector_on.png │ │ │ │ │ │ │ ├── voice_effector_on@2x.png │ │ │ │ │ │ │ └── voice_effector_on@3x.png │ │ │ │ │ │ ├── voice_off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_off.png │ │ │ │ │ │ │ ├── voice_off@2x.png │ │ │ │ │ │ │ └── voice_off@3x.png │ │ │ │ │ │ ├── voice_on.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── voice_on.png │ │ │ │ │ │ │ ├── voice_on@2x.png │ │ │ │ │ │ │ └── voice_on@3x.png │ │ │ │ │ │ └── volume.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── volume.png │ │ │ │ │ │ │ ├── volume@2x.png │ │ │ │ │ │ │ └── volume@3x.png │ │ │ │ │ ├── audio_pause.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_pause.png │ │ │ │ │ │ ├── audio_pause@2x.png │ │ │ │ │ │ └── audio_pause@3x.png │ │ │ │ │ ├── audio_play.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_play.png │ │ │ │ │ │ ├── audio_play@2x.png │ │ │ │ │ │ └── audio_play@3x.png │ │ │ │ │ ├── audio_stop.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audio_stop.png │ │ │ │ │ │ ├── audio_stop@2x.png │ │ │ │ │ │ └── audio_stop@3x.png │ │ │ │ │ ├── back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bgm_back.png │ │ │ │ │ │ ├── bgm_back@2x.png │ │ │ │ │ │ └── bgm_back@3x.png │ │ │ │ │ ├── background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── background.jpg │ │ │ │ │ ├── beautyPanelMenuSelectionBackgroundImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── beautyPanelMenuSelectionBackgroundImage@2x.png │ │ │ │ │ ├── checkbox_nor.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── checkbox_nor.png │ │ │ │ │ │ ├── checkbox_nor@2x.png │ │ │ │ │ │ └── checkbox_nor@3x.png │ │ │ │ │ ├── checkbox_sel.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── checkbox_sel.png │ │ │ │ │ │ ├── checkbox_sel@2x.png │ │ │ │ │ │ └── checkbox_sel@3x.png │ │ │ │ │ ├── copy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── copy@2x.png │ │ │ │ │ ├── exit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── exitRoom.png │ │ │ │ │ │ ├── exitRoom@2x.png │ │ │ │ │ │ └── exitRoom@3x.png │ │ │ │ │ ├── ic_logout.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ic_logout.png │ │ │ │ │ │ ├── ic_logout@2x.png │ │ │ │ │ │ └── ic_logout@3x.png │ │ │ │ │ ├── launchimage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── launchimage@2x.png │ │ │ │ │ │ └── launchimage@3x.png │ │ │ │ │ ├── livepusher_ic_qcode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── livepusher_ic_qcode.png │ │ │ │ │ ├── main_mine_about.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── about.png │ │ │ │ │ │ ├── about@2x.png │ │ │ │ │ │ └── about@3x.png │ │ │ │ │ ├── main_mine_about_back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── black_back.png │ │ │ │ │ │ ├── black_back@2x.png │ │ │ │ │ │ └── black_back@3x.png │ │ │ │ │ ├── main_mine_detail.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── detail.png │ │ │ │ │ │ ├── detail@2x.png │ │ │ │ │ │ └── detail@3x.png │ │ │ │ │ ├── main_mine_disclaimer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Disclaimers.png │ │ │ │ │ │ ├── Disclaimers@2x.png │ │ │ │ │ │ └── Disclaimers@3x.png │ │ │ │ │ ├── main_mine_edit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── edit.png │ │ │ │ │ │ ├── edit@2x.png │ │ │ │ │ │ └── edit@3x.png │ │ │ │ │ ├── main_mine_privacy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── privaty.png │ │ │ │ │ │ ├── privaty@2x.png │ │ │ │ │ │ └── privaty@3x.png │ │ │ │ │ ├── members.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── members@2x.png │ │ │ │ │ ├── navi_log.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── navi_log.png │ │ │ │ │ │ ├── navi_log@2x.png │ │ │ │ │ │ └── navi_log@3x.png │ │ │ │ │ ├── qrcode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── qrcode@2x.png │ │ │ │ │ ├── resign.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── resign.png │ │ │ │ │ ├── scan.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── scan@2x.png │ │ │ │ │ ├── userAgreement.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── userAgreement.png │ │ │ │ │ │ ├── userAgreement@2x.png │ │ │ │ │ │ └── userAgreement@3x.png │ │ │ │ │ ├── 下一个.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 下一个@3x.png │ │ │ │ │ ├── 下一个_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 下一个_pressed@3x.png │ │ │ │ │ ├── 亮度大.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 亮度大@3x.png │ │ │ │ │ ├── 亮度小.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 亮度小@3x.png │ │ │ │ │ ├── 全屏.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 全屏@3x.png │ │ │ │ │ ├── 全屏_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 全屏_pressed@3x.png │ │ │ │ │ ├── 声音.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 声音@3x.png │ │ │ │ │ ├── 声音放大.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 声音放大@3x.png │ │ │ │ │ ├── 弹幕.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 弹幕@3x.png │ │ │ │ │ ├── 弹幕_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 弹幕_pressed@3x.png │ │ │ │ │ ├── 截屏.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 截屏@3x.png │ │ │ │ │ ├── 截屏_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 截屏_pressed@3x.png │ │ │ │ │ ├── 扫码.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 扫码@3x.png │ │ │ │ │ ├── 搜索框.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 搜索框@3x.png │ │ │ │ │ ├── 更多.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 更多@3x.png │ │ │ │ │ ├── 更多_pressed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 更多_pressed@3x.png │ │ │ │ │ ├── 背景.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 背景@3x.png │ │ │ │ │ ├── 返回.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 返回@3x.png │ │ │ │ │ ├── 进度按钮.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 进度按钮@3x.png │ │ │ │ │ └── 进度按钮点击.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 进度按钮点击@3x.png │ │ │ │ ├── English.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ │ ├── FilterResource.bundle │ │ │ │ │ ├── bailan.png │ │ │ │ │ ├── baixi.png │ │ │ │ │ ├── chaotuo.png │ │ │ │ │ ├── chunzhen.png │ │ │ │ │ ├── fennen.png │ │ │ │ │ ├── huaijiu.png │ │ │ │ │ ├── landiao.png │ │ │ │ │ ├── langman.png │ │ │ │ │ ├── normal.png │ │ │ │ │ ├── qingliang.png │ │ │ │ │ ├── qingxin.png │ │ │ │ │ ├── rixi.png │ │ │ │ │ ├── weimei.png │ │ │ │ │ ├── white.png │ │ │ │ │ ├── xiangfen.png │ │ │ │ │ ├── yinghong.png │ │ │ │ │ ├── yuanqi.png │ │ │ │ │ ├── yunshang.png │ │ │ │ │ └── ziran.png │ │ │ │ ├── Localized │ │ │ │ │ ├── AppLocalized.h │ │ │ │ │ ├── AppLocalized.m │ │ │ │ │ ├── AppPortalLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── AppPortalLocalized.strings │ │ │ │ │ ├── LiveLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── LivePlayerLocalized.strings │ │ │ │ │ ├── LoginNetworkLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── LoginNetworkLocalized.strings │ │ │ │ │ ├── PlayerLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── PlayerLocalized.strings │ │ │ │ │ ├── TRTCLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── TRTCDemoLocalized.strings │ │ │ │ │ ├── UGCLocalized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── UGCLocalized.strings │ │ │ │ │ └── V2Localized │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── V2LiveLocalized.strings │ │ │ │ ├── Settings.bundle │ │ │ │ │ ├── Root.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── Root.strings │ │ │ │ ├── TXVodPlayer.bundle │ │ │ │ │ └── tx_vod_seamless_pip_backgroud_video.mp4 │ │ │ │ ├── TengXunYun_logo │ │ │ │ ├── back_full@2x.png │ │ │ │ ├── back_full@3x.png │ │ │ │ ├── bgm_demo.mp3 │ │ │ │ ├── en.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── UserProtocol.html │ │ │ ├── TXAppInfo.h │ │ │ ├── TXAppInfo.m │ │ │ ├── TXAppInstance.h │ │ │ ├── TXAppInstance.m │ │ │ ├── TXConfigManager.h │ │ │ ├── TXConfigManager.m │ │ │ └── config │ │ │ │ └── Player.plist │ │ ├── PlayerAppdelegate.h │ │ ├── PlayerAppdelegate.m │ │ ├── PlayerKit.h │ │ ├── PlayerKitCommonHeaders.h │ │ ├── Register │ │ │ ├── VodPlayerRouter.h │ │ │ └── VodPlayerRouter.m │ │ ├── SuperPlayFeedDemo │ │ │ ├── Controller │ │ │ │ ├── FeedDetailViewController.h │ │ │ │ ├── FeedDetailViewController.m │ │ │ │ ├── FeedPlayViewController.h │ │ │ │ └── FeedPlayViewController.m │ │ │ ├── Model │ │ │ │ ├── FeedDetailModel.h │ │ │ │ ├── FeedDetailModel.m │ │ │ │ ├── FeedHeadModel.h │ │ │ │ ├── FeedHeadModel.m │ │ │ │ ├── FeedVideoModel.h │ │ │ │ └── FeedVideoModel.m │ │ │ ├── Utils │ │ │ │ ├── FeedRequestUtil.h │ │ │ │ ├── FeedRequestUtil.m │ │ │ │ └── FeedVideoPlayMem.h │ │ │ └── Views │ │ │ │ ├── Cell │ │ │ │ ├── FeedDetailViewCell.h │ │ │ │ ├── FeedDetailViewCell.m │ │ │ │ ├── FeedTableViewCell.h │ │ │ │ └── FeedTableViewCell.m │ │ │ │ ├── FeedBaseView │ │ │ │ ├── FeedBaseView.h │ │ │ │ └── FeedBaseView.m │ │ │ │ ├── FeedDetailView.h │ │ │ │ ├── FeedDetailView.m │ │ │ │ ├── FeedDetailView │ │ │ │ ├── FeedDetailHeadView.h │ │ │ │ └── FeedDetailHeadView.m │ │ │ │ ├── FeedHeadView │ │ │ │ ├── FeedHeadView.h │ │ │ │ └── FeedHeadView.m │ │ │ │ ├── SuperFeedPlayView.h │ │ │ │ └── SuperFeedPlayView.m │ │ ├── SuperPlayerDemo │ │ │ ├── Download │ │ │ │ ├── DownloadViewController.h │ │ │ │ └── DownloadViewController.m │ │ │ ├── SuperPlayer │ │ │ │ ├── CFDanmaku │ │ │ │ │ ├── CFDanmaku.h │ │ │ │ │ ├── CFDanmaku.m │ │ │ │ │ ├── CFDanmakuInfo.h │ │ │ │ │ ├── CFDanmakuInfo.m │ │ │ │ │ ├── CFDanmakuView.h │ │ │ │ │ ├── CFDanmakuView.m │ │ │ │ │ └── danmakufile │ │ │ │ ├── CacheView │ │ │ │ │ ├── ResolutionCell.h │ │ │ │ │ ├── ResolutionCell.m │ │ │ │ │ ├── ResolutionModel.h │ │ │ │ │ ├── ResolutionModel.m │ │ │ │ │ ├── VideoCacheCell.h │ │ │ │ │ ├── VideoCacheCell.m │ │ │ │ │ ├── VideoCacheListView │ │ │ │ │ │ ├── VideoCacheListCell.h │ │ │ │ │ │ ├── VideoCacheListCell.m │ │ │ │ │ │ ├── VideoCacheListModel.h │ │ │ │ │ │ ├── VideoCacheListModel.m │ │ │ │ │ │ ├── VideoCacheListView.h │ │ │ │ │ │ └── VideoCacheListView.m │ │ │ │ │ ├── VideoCacheModel.h │ │ │ │ │ ├── VideoCacheModel.m │ │ │ │ │ ├── VideoCacheView.h │ │ │ │ │ ├── VideoCacheView.m │ │ │ │ │ ├── VideoData │ │ │ │ │ │ ├── TXVideoResourceStorage.h │ │ │ │ │ │ └── TXVideoResourceStorage.m │ │ │ │ │ └── VodDownloadCenter │ │ │ │ │ │ ├── DownloadCallback.h │ │ │ │ │ │ ├── DownloadCallback.m │ │ │ │ │ │ ├── TXVodDownloadCenter.h │ │ │ │ │ │ └── TXVodDownloadCenter.m │ │ │ │ ├── ListUI │ │ │ │ │ ├── ListVideoCell.h │ │ │ │ │ └── ListVideoCell.m │ │ │ │ ├── MoviePlayerViewController.h │ │ │ │ ├── MoviePlayerViewController.m │ │ │ │ ├── SuperPlayerGuideView.h │ │ │ │ ├── SuperPlayerGuideView.m │ │ │ │ ├── TXLaunchMoviePlayProtocol.h │ │ │ │ ├── TXMoviePlayInfoResponse.h │ │ │ │ ├── TXMoviePlayInfoResponse.m │ │ │ │ ├── TXMoviePlayerNetApi.h │ │ │ │ ├── TXMoviePlayerNetApi.m │ │ │ │ └── TXMoviePlayerNetDelegate.h │ │ │ └── UGCUpload │ │ │ │ ├── UGCUploadList.h │ │ │ │ └── UGCUploadList.m │ │ ├── TUIShortVideoPlayDemo │ │ │ ├── Controller │ │ │ │ ├── TUIShortVideoPlayViewController.h │ │ │ │ └── TUIShortVideoPlayViewController.m │ │ │ ├── Data │ │ │ │ ├── TUIShortVideoPlayer.plist │ │ │ │ ├── TUIShortVideoPlayerDataManager.h │ │ │ │ └── TUIShortVideoPlayerDataManager.m │ │ │ ├── TUISDK │ │ │ │ ├── TUIPlayerCore │ │ │ │ │ └── TUIPlayerCore.xcframework │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── ios-arm64 │ │ │ │ │ │ └── TUIPlayerCore.framework │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── TUIPlayerAuth.h │ │ │ │ │ │ │ ├── TUIPlayerBitrateItem.h │ │ │ │ │ │ │ ├── TUIPlayerCacheManager.h │ │ │ │ │ │ │ ├── TUIPlayerConfig.h │ │ │ │ │ │ │ ├── TUIPlayerCore-umbrella.h │ │ │ │ │ │ │ ├── TUIPlayerCore.h │ │ │ │ │ │ │ ├── TUIPlayerCorePlayeEventHeader.h │ │ │ │ │ │ │ ├── TUIPlayerLog.h │ │ │ │ │ │ │ ├── TUIPlayerManager.h │ │ │ │ │ │ │ ├── TUIPlayerResumeManager.h │ │ │ │ │ │ │ ├── TUIPlayerStrategyManager.h │ │ │ │ │ │ │ ├── TUIPlayerStrategyModel.h │ │ │ │ │ │ │ ├── TUIPlayerVideoConfig.h │ │ │ │ │ │ │ ├── TUIPlayerVideoModel.h │ │ │ │ │ │ │ ├── TUIPlayerVideoPreloadState.h │ │ │ │ │ │ │ └── TUITXVodPlayerWrapper.h │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ └── TUIPlayerCore │ │ │ │ │ │ └── ios-arm64_x86_64-simulator │ │ │ │ │ │ └── TUIPlayerCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── TUIPlayerAuth.h │ │ │ │ │ │ ├── TUIPlayerBitrateItem.h │ │ │ │ │ │ ├── TUIPlayerCacheManager.h │ │ │ │ │ │ ├── TUIPlayerConfig.h │ │ │ │ │ │ ├── TUIPlayerCore-umbrella.h │ │ │ │ │ │ ├── TUIPlayerCore.h │ │ │ │ │ │ ├── TUIPlayerCorePlayeEventHeader.h │ │ │ │ │ │ ├── TUIPlayerLog.h │ │ │ │ │ │ ├── TUIPlayerManager.h │ │ │ │ │ │ ├── TUIPlayerResumeManager.h │ │ │ │ │ │ ├── TUIPlayerStrategyManager.h │ │ │ │ │ │ ├── TUIPlayerStrategyModel.h │ │ │ │ │ │ ├── TUIPlayerVideoConfig.h │ │ │ │ │ │ ├── TUIPlayerVideoModel.h │ │ │ │ │ │ ├── TUIPlayerVideoPreloadState.h │ │ │ │ │ │ └── TUITXVodPlayerWrapper.h │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ ├── TUIPlayerCore │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ │ ├── CodeResources │ │ │ │ │ │ └── CodeSignature │ │ │ │ └── TUIPlayerShortVideo │ │ │ │ │ ├── TUIPlayerShortVideo.bundle │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── img_video_loading~iphone.png │ │ │ │ │ ├── img_video_loading~iphone@2x.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── pause@2x.png │ │ │ │ │ ├── pause@3x.png │ │ │ │ │ └── shortVideo_NoNet@3x.png │ │ │ │ │ └── TUIPlayerShortVideo.xcframework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ios-arm64 │ │ │ │ │ └── TUIPlayerShortVideo.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── TUIPlayerShortVideo-umbrella.h │ │ │ │ │ │ ├── TUIPlayerShortVideoControl.h │ │ │ │ │ │ ├── TUIPlayerShortVideoCustomControl.h │ │ │ │ │ │ ├── TUIPlayerShortVideoLoadingViewProtocol.h │ │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderControlView.h │ │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderCustomControlView.h │ │ │ │ │ │ ├── TUIPlayerShortVideoSDKVersion.h │ │ │ │ │ │ ├── TUIPlayerShortVideoUIManager.h │ │ │ │ │ │ ├── TUIPlayerViewCommonDefine.h │ │ │ │ │ │ ├── TUIPullUpRefreshControl.h │ │ │ │ │ │ ├── TUIShortVideoBaseView.h │ │ │ │ │ │ ├── TUIShortVideoDataManager.h │ │ │ │ │ │ ├── TUIShortVideoItemCustomCell.h │ │ │ │ │ │ ├── TUIShortVideoItemView.h │ │ │ │ │ │ ├── TUIShortVideoLoadingView.h │ │ │ │ │ │ ├── TUIShortVideoView+SDKVersion.h │ │ │ │ │ │ └── TUIShortVideoView.h │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ └── TUIPlayerShortVideo │ │ │ │ │ └── ios-arm64_x86_64-simulator │ │ │ │ │ └── TUIPlayerShortVideo.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── TUIPlayerShortVideo-umbrella.h │ │ │ │ │ ├── TUIPlayerShortVideoControl.h │ │ │ │ │ ├── TUIPlayerShortVideoCustomControl.h │ │ │ │ │ ├── TUIPlayerShortVideoLoadingViewProtocol.h │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderControlView.h │ │ │ │ │ ├── TUIPlayerShortVideoPlaceholderCustomControlView.h │ │ │ │ │ ├── TUIPlayerShortVideoSDKVersion.h │ │ │ │ │ ├── TUIPlayerShortVideoUIManager.h │ │ │ │ │ ├── TUIPlayerViewCommonDefine.h │ │ │ │ │ ├── TUIPullUpRefreshControl.h │ │ │ │ │ ├── TUIShortVideoBaseView.h │ │ │ │ │ ├── TUIShortVideoDataManager.h │ │ │ │ │ ├── TUIShortVideoItemCustomCell.h │ │ │ │ │ ├── TUIShortVideoItemView.h │ │ │ │ │ ├── TUIShortVideoLoadingView.h │ │ │ │ │ ├── TUIShortVideoView+SDKVersion.h │ │ │ │ │ └── TUIShortVideoView.h │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── TUIPlayerShortVideo │ │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ └── View │ │ │ │ ├── Skins │ │ │ │ └── Default │ │ │ │ │ ├── LineLoadingView │ │ │ │ │ ├── TUISVLineLoadingView.h │ │ │ │ │ └── TUISVLineLoadingView.m │ │ │ │ │ ├── LoadingView │ │ │ │ │ ├── TUIPSDLoadingView.h │ │ │ │ │ └── TUIPSDLoadingView.m │ │ │ │ │ ├── PlayerControl │ │ │ │ │ ├── TUIPlayerShortVideoControlView.h │ │ │ │ │ └── TUIPlayerShortVideoControlView.m │ │ │ │ │ ├── SliderView │ │ │ │ │ ├── TUIShortVideoSliderView.h │ │ │ │ │ └── TUIShortVideoSliderView.m │ │ │ │ │ └── TimeView │ │ │ │ │ ├── TUIShortVideoTimeView.h │ │ │ │ │ └── TUIShortVideoTimeView.m │ │ │ │ ├── TUIShortVideoPlayerViewNavView.h │ │ │ │ └── TUIShortVideoPlayerViewNavView.m │ │ ├── ThirdPart │ │ │ ├── AFNetworking │ │ │ │ ├── AFNetworking │ │ │ │ │ ├── AFCompatibilityMacros.h │ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ │ ├── AFHTTPSessionManager.m │ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ │ │ ├── AFNetworking.h │ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ │ ├── AFSecurityPolicy.m │ │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ │ ├── AFURLRequestSerialization.m │ │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ │ ├── AFURLResponseSerialization.m │ │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ │ └── AFURLSessionManager.m │ │ │ │ └── UIKit+AFNetworking │ │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ │ │ ├── AFImageDownloader.h │ │ │ │ │ ├── AFImageDownloader.m │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ │ ├── UIButton+AFNetworking.m │ │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ │ ├── UIImageView+AFNetworking.m │ │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ │ │ ├── WKWebView+AFNetworking.h │ │ │ │ │ └── WKWebView+AFNetworking.m │ │ │ ├── CWStatusBarNotification │ │ │ │ └── CWStatusBarNotification │ │ │ │ │ ├── CWStatusBarNotification.h │ │ │ │ │ └── CWStatusBarNotification.m │ │ │ ├── MBProgressHUD │ │ │ │ ├── MBProgressHUD.h │ │ │ │ └── MBProgressHUD.m │ │ │ ├── MJExtension │ │ │ │ └── MJExtension │ │ │ │ │ ├── MJExtension.h │ │ │ │ │ ├── MJExtensionConst.h │ │ │ │ │ ├── MJExtensionConst.m │ │ │ │ │ ├── MJFoundation.h │ │ │ │ │ ├── MJFoundation.m │ │ │ │ │ ├── MJProperty.h │ │ │ │ │ ├── MJProperty.m │ │ │ │ │ ├── MJPropertyKey.h │ │ │ │ │ ├── MJPropertyKey.m │ │ │ │ │ ├── MJPropertyType.h │ │ │ │ │ ├── MJPropertyType.m │ │ │ │ │ ├── NSObject+MJClass.h │ │ │ │ │ ├── NSObject+MJClass.m │ │ │ │ │ ├── NSObject+MJCoding.h │ │ │ │ │ ├── NSObject+MJCoding.m │ │ │ │ │ ├── NSObject+MJKeyValue.h │ │ │ │ │ ├── NSObject+MJKeyValue.m │ │ │ │ │ ├── NSObject+MJProperty.h │ │ │ │ │ ├── NSObject+MJProperty.m │ │ │ │ │ ├── NSString+MJExtension.h │ │ │ │ │ └── NSString+MJExtension.m │ │ │ ├── MJRefresh │ │ │ │ └── MJRefresh │ │ │ │ │ ├── Base │ │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ │ ├── MJRefreshHeader.m │ │ │ │ │ ├── MJRefreshTrailer.h │ │ │ │ │ └── MJRefreshTrailer.m │ │ │ │ │ ├── Custom │ │ │ │ │ ├── Footer │ │ │ │ │ │ ├── Auto │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ │ └── Back │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ │ ├── Header │ │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ │ │ └── Trailer │ │ │ │ │ │ ├── MJRefreshNormalTrailer.h │ │ │ │ │ │ ├── MJRefreshNormalTrailer.m │ │ │ │ │ │ ├── MJRefreshStateTrailer.h │ │ │ │ │ │ └── MJRefreshStateTrailer.m │ │ │ │ │ ├── MJRefresh.bundle │ │ │ │ │ ├── arrow@2x.png │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── trail_arrow@2x.png │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── MJRefresh.h │ │ │ │ │ ├── MJRefreshConfig.h │ │ │ │ │ ├── MJRefreshConfig.m │ │ │ │ │ ├── MJRefreshConst.h │ │ │ │ │ ├── MJRefreshConst.m │ │ │ │ │ ├── NSBundle+MJRefresh.h │ │ │ │ │ ├── NSBundle+MJRefresh.m │ │ │ │ │ ├── UICollectionViewLayout+MJRefresh.h │ │ │ │ │ ├── UICollectionViewLayout+MJRefresh.m │ │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ │ ├── UIScrollView+MJExtension.m │ │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ │ │ ├── UIView+MJExtension.h │ │ │ │ │ └── UIView+MJExtension.m │ │ │ ├── SDWebImage │ │ │ │ ├── SDWebImage │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── NSButton+WebCache.h │ │ │ │ │ │ ├── NSButton+WebCache.m │ │ │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ │ │ ├── NSData+ImageContentType.m │ │ │ │ │ │ ├── NSImage+Compatibility.h │ │ │ │ │ │ ├── NSImage+Compatibility.m │ │ │ │ │ │ ├── SDAnimatedImage.h │ │ │ │ │ │ ├── SDAnimatedImage.m │ │ │ │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ │ │ │ ├── SDAnimatedImageRep.h │ │ │ │ │ │ ├── SDAnimatedImageRep.m │ │ │ │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ │ │ │ ├── SDAnimatedImageView.h │ │ │ │ │ │ ├── SDAnimatedImageView.m │ │ │ │ │ │ ├── SDDiskCache.h │ │ │ │ │ │ ├── SDDiskCache.m │ │ │ │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ │ │ │ ├── SDImageAPNGCoder.h │ │ │ │ │ │ ├── SDImageAPNGCoder.m │ │ │ │ │ │ ├── SDImageAWebPCoder.h │ │ │ │ │ │ ├── SDImageAWebPCoder.m │ │ │ │ │ │ ├── SDImageCache.h │ │ │ │ │ │ ├── SDImageCache.m │ │ │ │ │ │ ├── SDImageCacheConfig.h │ │ │ │ │ │ ├── SDImageCacheConfig.m │ │ │ │ │ │ ├── SDImageCacheDefine.h │ │ │ │ │ │ ├── SDImageCacheDefine.m │ │ │ │ │ │ ├── SDImageCachesManager.h │ │ │ │ │ │ ├── SDImageCachesManager.m │ │ │ │ │ │ ├── SDImageCoder.h │ │ │ │ │ │ ├── SDImageCoder.m │ │ │ │ │ │ ├── SDImageCoderHelper.h │ │ │ │ │ │ ├── SDImageCoderHelper.m │ │ │ │ │ │ ├── SDImageCodersManager.h │ │ │ │ │ │ ├── SDImageCodersManager.m │ │ │ │ │ │ ├── SDImageFrame.h │ │ │ │ │ │ ├── SDImageFrame.m │ │ │ │ │ │ ├── SDImageGIFCoder.h │ │ │ │ │ │ ├── SDImageGIFCoder.m │ │ │ │ │ │ ├── SDImageGraphics.h │ │ │ │ │ │ ├── SDImageGraphics.m │ │ │ │ │ │ ├── SDImageHEICCoder.h │ │ │ │ │ │ ├── SDImageHEICCoder.m │ │ │ │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ │ │ │ ├── SDImageIOCoder.h │ │ │ │ │ │ ├── SDImageIOCoder.m │ │ │ │ │ │ ├── SDImageLoader.h │ │ │ │ │ │ ├── SDImageLoader.m │ │ │ │ │ │ ├── SDImageLoadersManager.h │ │ │ │ │ │ ├── SDImageLoadersManager.m │ │ │ │ │ │ ├── SDImageTransformer.h │ │ │ │ │ │ ├── SDImageTransformer.m │ │ │ │ │ │ ├── SDMemoryCache.h │ │ │ │ │ │ ├── SDMemoryCache.m │ │ │ │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ │ │ ├── SDWebImageCompat.m │ │ │ │ │ │ ├── SDWebImageDefine.h │ │ │ │ │ │ ├── SDWebImageDefine.m │ │ │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ │ │ │ ├── SDWebImageError.h │ │ │ │ │ │ ├── SDWebImageError.m │ │ │ │ │ │ ├── SDWebImageIndicator.h │ │ │ │ │ │ ├── SDWebImageIndicator.m │ │ │ │ │ │ ├── SDWebImageManager.h │ │ │ │ │ │ ├── SDWebImageManager.m │ │ │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ │ │ ├── SDWebImageOperation.m │ │ │ │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ │ │ ├── SDWebImagePrefetcher.m │ │ │ │ │ │ ├── SDWebImageTransition.h │ │ │ │ │ │ ├── SDWebImageTransition.m │ │ │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ │ │ ├── UIButton+WebCache.m │ │ │ │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ │ │ │ ├── UIImage+ForceDecode.h │ │ │ │ │ │ ├── UIImage+ForceDecode.m │ │ │ │ │ │ ├── UIImage+GIF.h │ │ │ │ │ │ ├── UIImage+GIF.m │ │ │ │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ │ │ │ ├── UIImage+Metadata.h │ │ │ │ │ │ ├── UIImage+Metadata.m │ │ │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ │ │ ├── UIImage+MultiFormat.m │ │ │ │ │ │ ├── UIImage+Transform.h │ │ │ │ │ │ ├── UIImage+Transform.m │ │ │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ │ │ ├── UIImageView+WebCache.m │ │ │ │ │ │ ├── UIView+WebCache.h │ │ │ │ │ │ ├── UIView+WebCache.m │ │ │ │ │ │ ├── UIView+WebCacheOperation.h │ │ │ │ │ │ └── UIView+WebCacheOperation.m │ │ │ │ │ └── Private │ │ │ │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ │ │ │ ├── SDAssociatedObject.h │ │ │ │ │ │ ├── SDAssociatedObject.m │ │ │ │ │ │ ├── SDAsyncBlockOperation.h │ │ │ │ │ │ ├── SDAsyncBlockOperation.m │ │ │ │ │ │ ├── SDDeviceHelper.h │ │ │ │ │ │ ├── SDDeviceHelper.m │ │ │ │ │ │ ├── SDDisplayLink.h │ │ │ │ │ │ ├── SDDisplayLink.m │ │ │ │ │ │ ├── SDFileAttributeHelper.h │ │ │ │ │ │ ├── SDFileAttributeHelper.m │ │ │ │ │ │ ├── SDImageAssetManager.h │ │ │ │ │ │ ├── SDImageAssetManager.m │ │ │ │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ │ │ │ ├── SDInternalMacros.h │ │ │ │ │ │ ├── SDInternalMacros.m │ │ │ │ │ │ ├── SDWeakProxy.h │ │ │ │ │ │ ├── SDWeakProxy.m │ │ │ │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ │ │ │ ├── SDmetamacros.h │ │ │ │ │ │ ├── UIColor+SDHexString.h │ │ │ │ │ │ └── UIColor+SDHexString.m │ │ │ │ └── WebImage │ │ │ │ │ └── SDWebImage.h │ │ │ └── WMPageController │ │ │ │ └── WMPageController │ │ │ │ ├── WMMenuView │ │ │ │ ├── WMMenuItem.h │ │ │ │ ├── WMMenuItem.m │ │ │ │ ├── WMMenuView.h │ │ │ │ ├── WMMenuView.m │ │ │ │ ├── WMProgressView.h │ │ │ │ ├── WMProgressView.m │ │ │ │ ├── WMScrollView.h │ │ │ │ └── WMScrollView.m │ │ │ │ ├── WMPageController.h │ │ │ │ └── WMPageController.m │ │ ├── UGCShortVideoPlayDemo │ │ │ ├── Controller │ │ │ │ ├── ShortVideoMainViewController.h │ │ │ │ ├── ShortVideoMainViewController.m │ │ │ │ ├── ShortVideoPlayViewController.h │ │ │ │ ├── ShortVideoPlayViewController.m │ │ │ │ ├── TXCollectionLayout.h │ │ │ │ ├── TXCollectionLayout.m │ │ │ │ ├── TXVideoListViewController.h │ │ │ │ └── TXVideoListViewController.m │ │ │ ├── Model │ │ │ │ ├── TXVideoModel.h │ │ │ │ └── TXVideoModel.m │ │ │ ├── ShortVideo.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── back@2x.png │ │ │ │ │ └── back@3x.png │ │ │ │ ├── click.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── click.png │ │ │ │ │ ├── click@2x.png │ │ │ │ │ └── click@3x.png │ │ │ │ ├── img_video_loading.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_video_loading~iphone.png │ │ │ │ │ └── img_video_loading~iphone@2x.png │ │ │ │ ├── leftSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── leftSlide.png │ │ │ │ │ ├── leftSlide@2x.png │ │ │ │ │ └── leftSlide@3x.png │ │ │ │ ├── pause.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── pause@2x.png │ │ │ │ │ └── pause@3x.png │ │ │ │ ├── progressSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── progressSlide.png │ │ │ │ │ ├── progressSlide@2x.png │ │ │ │ │ └── progressSlide@3x.png │ │ │ │ ├── shortVideo_NoNet.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shortVideo_NoNet@3x.png │ │ │ │ └── upSlide.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── upSlide.png │ │ │ │ │ ├── upSlide@2x.png │ │ │ │ │ └── upSlide@3x.png │ │ │ ├── Tools │ │ │ │ ├── Others │ │ │ │ │ └── TXVideoPlayMem.h │ │ │ │ ├── Request │ │ │ │ │ ├── TXVideoRequest.h │ │ │ │ │ └── TXVideoRequest.m │ │ │ │ ├── TXVideoPlayer │ │ │ │ │ ├── TXPlayerCacheManager.h │ │ │ │ │ ├── TXPlayerCacheManager.m │ │ │ │ │ ├── TXVideoPlayer.h │ │ │ │ │ └── TXVideoPlayer.m │ │ │ │ └── Utils │ │ │ │ │ ├── TXVideoUtils.h │ │ │ │ │ └── TXVideoUtils.m │ │ │ ├── View │ │ │ │ ├── Category │ │ │ │ │ ├── UIScrollView+GestureConflict.h │ │ │ │ │ ├── UIScrollView+GestureConflict.m │ │ │ │ │ ├── UITableView+indexPath.h │ │ │ │ │ └── UITableView+indexPath.m │ │ │ │ ├── Cell │ │ │ │ │ ├── TXTableViewCell.h │ │ │ │ │ ├── TXTableViewCell.m │ │ │ │ │ ├── TXVideoCell.h │ │ │ │ │ └── TXVideoCell.m │ │ │ │ ├── SuperShortVideoView.h │ │ │ │ ├── SuperShortVideoView.m │ │ │ │ ├── TXBaseView │ │ │ │ │ ├── TXVideoBaseView.h │ │ │ │ │ └── TXVideoBaseView.m │ │ │ │ ├── TXLineLoadingView │ │ │ │ │ ├── TXLineLoadingView.h │ │ │ │ │ └── TXLineLoadingView.m │ │ │ │ ├── TXLoadingView │ │ │ │ │ ├── TXLoadingView.h │ │ │ │ │ └── TXLoadingView.m │ │ │ │ ├── TXShortVideoGuideView │ │ │ │ │ ├── TXLeftSlideGuideView.h │ │ │ │ │ ├── TXLeftSlideGuideView.m │ │ │ │ │ ├── TXPauseGuideView.h │ │ │ │ │ ├── TXPauseGuideView.m │ │ │ │ │ ├── TXProgressSlideGuideView.h │ │ │ │ │ ├── TXProgressSlideGuideView.m │ │ │ │ │ ├── TXUpSlideGuideView.h │ │ │ │ │ └── TXUpSlideGuideView.m │ │ │ │ ├── TXSliderView │ │ │ │ │ ├── TXSliderView.h │ │ │ │ │ └── TXSliderView.m │ │ │ │ └── TXTimeView │ │ │ │ │ ├── TXTimeView.h │ │ │ │ │ └── TXTimeView.m │ │ │ └── ViewModel │ │ │ │ ├── TXVideoViewModel.h │ │ │ │ └── TXVideoViewModel.m │ │ ├── Util │ │ │ ├── UIImage+bundle.h │ │ │ └── UIImage+bundle.m │ │ └── VodPlayerDemo │ │ │ ├── BitratesView │ │ │ ├── TXBitrateView.h │ │ │ └── TXBitrateView.m │ │ │ ├── ConfigViewController │ │ │ ├── TXConfigViewController.h │ │ │ ├── TXConfigViewController.m │ │ │ ├── Tools │ │ │ │ ├── TXConfigCheckBox.h │ │ │ │ └── TXConfigCheckBox.m │ │ │ └── View │ │ │ │ ├── TXConfigBlockButton.h │ │ │ │ ├── TXConfigBlockButton.m │ │ │ │ ├── TXConfigCellText.h │ │ │ │ ├── TXConfigCellText.m │ │ │ │ ├── TXConfigTableMenu.h │ │ │ │ ├── TXConfigTableMenu.m │ │ │ │ ├── TXConfigText.h │ │ │ │ └── TXConfigText.m │ │ │ ├── PlayVodViewController.h │ │ │ ├── PlayVodViewController.m │ │ │ ├── VideoBitrate.h │ │ │ └── VideoBitrate.m │ └── XcodeConfig │ │ ├── LiteAVConfig.Debug.xcconfig │ │ └── LiteAVConfig.Release.xcconfig └── SuperPlayerKit │ ├── Resource │ ├── PrivacyInfo.xcprivacy │ └── SuperPlayer.xcassets │ │ ├── Contents.json │ │ ├── arrow.imageset │ │ ├── Contents.json │ │ └── arrow@3x.png │ │ ├── back_full.imageset │ │ ├── Contents.json │ │ ├── back_full@2x.png │ │ └── back_full@3x.png │ │ ├── bottom_shadow.imageset │ │ ├── Contents.json │ │ └── bottom_shadow.png │ │ ├── brightness.imageset │ │ ├── Contents.json │ │ └── brightness@2x.png │ │ ├── cacheView_noData.imageset │ │ ├── Contents.json │ │ └── cacheView_noData@2x.png │ │ ├── capture.imageset │ │ ├── Contents.json │ │ └── capture@3x.png │ │ ├── capture_pressed.imageset │ │ ├── Contents.json │ │ └── capture_pressed@3x.png │ │ ├── close.imageset │ │ ├── Contents.json │ │ └── close@3x.png │ │ ├── copywright_bg.imageset │ │ ├── Contents.json │ │ ├── copywright_bg@2x.png │ │ └── copywright_bg@3x.png │ │ ├── cw_img_bg.imageset │ │ ├── Contents.json │ │ ├── cw_img_bg@2x.png │ │ └── cw_img_bg@3x.png │ │ ├── danmu.imageset │ │ ├── Contents.json │ │ └── danmu@3x.png │ │ ├── danmu_pressed.imageset │ │ ├── Contents.json │ │ └── danmu_pressed@3x.png │ │ ├── defaultCoverImage.imageset │ │ ├── Contents.json │ │ └── defaultCoverImage.png │ │ ├── download.imageset │ │ ├── Contents.json │ │ ├── download@2x.png │ │ └── download@3x.png │ │ ├── fast_backward.imageset │ │ ├── Contents.json │ │ ├── fast_backward@2x.png │ │ └── fast_backward@3x.png │ │ ├── fast_forward.imageset │ │ ├── Contents.json │ │ ├── fast_forward@2x.png │ │ └── fast_forward@3x.png │ │ ├── fullscreen.imageset │ │ ├── Contents.json │ │ └── fullscreen@3x.png │ │ ├── fullscreen_press.imageset │ │ ├── Contents.json │ │ └── fullscreen_press@3x.png │ │ ├── iknown.imageset │ │ ├── Contents.json │ │ └── iknown@3x.png │ │ ├── left_g.imageset │ │ ├── Contents.json │ │ └── left_g@3x.png │ │ ├── light_max.imageset │ │ ├── Contents.json │ │ └── light_max@3x.png │ │ ├── light_min.imageset │ │ ├── Contents.json │ │ └── light_min@3x.png │ │ ├── lock-nor.imageset │ │ ├── Contents.json │ │ ├── lock-nor@2x.png │ │ └── lock-nor@3x.png │ │ ├── middle_g.imageset │ │ ├── Contents.json │ │ └── middle_g@3x.png │ │ ├── more.imageset │ │ ├── Contents.json │ │ └── more@3x.png │ │ ├── more_pressed.imageset │ │ ├── Contents.json │ │ └── more_pressed@3x.png │ │ ├── not_download.imageset │ │ ├── Contents.json │ │ ├── not_download@2x.png │ │ └── not_download@3x.png │ │ ├── offline_download.imageset │ │ ├── Contents.json │ │ └── offline_download@2x.png │ │ ├── pause.imageset │ │ ├── Contents.json │ │ └── pause@3x.png │ │ ├── pause_pressed.imageset │ │ ├── Contents.json │ │ └── pause_pressed@3x.png │ │ ├── pip_play_icon.imageset │ │ ├── Contents.json │ │ └── pip_play_icon.png │ │ ├── play.imageset │ │ ├── Contents.json │ │ └── play@3x.png │ │ ├── play_btn.imageset │ │ ├── Contents.json │ │ └── play_btn@2x.png │ │ ├── play_next.imageset │ │ ├── Contents.json │ │ └── play_next.png │ │ ├── play_pressed.imageset │ │ ├── Contents.json │ │ └── play_pressed@3x.png │ │ ├── play_setting.imageset │ │ ├── Contents.json │ │ ├── play_setting.png │ │ ├── play_setting@2x.png │ │ └── play_setting@3x.png │ │ ├── playbackward.imageset │ │ ├── Contents.json │ │ └── playbackward.png │ │ ├── playbackward_bg.imageset │ │ ├── Contents.json │ │ └── playbackward_bg.png │ │ ├── playforward.imageset │ │ ├── Contents.json │ │ └── playforward.png │ │ ├── playforward_bg.imageset │ │ ├── Contents.json │ │ └── playforward_bg.png │ │ ├── qg_online_bg.imageset │ │ ├── Contents.json │ │ └── qg_online_bg@2x.png │ │ ├── repeat_video.imageset │ │ ├── Contents.json │ │ ├── repeat_video.png │ │ ├── repeat_video@2x.png │ │ └── repeat_video@3x.png │ │ ├── right_g.imageset │ │ ├── Contents.json │ │ └── right_g@3x.png │ │ ├── shrinkscreen.imageset │ │ ├── Contents.json │ │ ├── shrinkscreen.png │ │ ├── shrinkscreen@2x.png │ │ └── shrinkscreen@3x.png │ │ ├── slider.imageset │ │ ├── Contents.json │ │ ├── slider.png │ │ ├── slider@2x.png │ │ └── slider@3x.png │ │ ├── slider_thumb.imageset │ │ ├── Contents.json │ │ └── slider_thumb@3x.png │ │ ├── slider_thumb_pressed.imageset │ │ ├── Contents.json │ │ └── slider_thumb_pressed@3x.png │ │ ├── sound_max.imageset │ │ ├── Contents.json │ │ └── sound_max@3x.png │ │ ├── sound_min.imageset │ │ ├── Contents.json │ │ └── sound_min@3x.png │ │ ├── subtitles.imageset │ │ ├── Contents.json │ │ └── subtitles.png │ │ ├── superplayer_dropdown.imageset │ │ ├── Contents.json │ │ └── superplayer_dropdown.png │ │ ├── top_shadow.imageset │ │ ├── Contents.json │ │ └── top_shadow.png │ │ ├── track.imageset │ │ ├── Contents.json │ │ └── track.png │ │ ├── unlock-nor.imageset │ │ ├── Contents.json │ │ ├── unlock-nor@2x.png │ │ └── unlock-nor@3x.png │ │ ├── videoCache_choose.imageset │ │ ├── Contents.json │ │ └── videoCache_choose@2x.png │ │ ├── videoCache_down.imageset │ │ ├── Contents.json │ │ └── videoCache_down@2x.png │ │ ├── videoCache_fail.imageset │ │ ├── Contents.json │ │ └── videoCache_fail@2x.png │ │ ├── videoCache_success.imageset │ │ ├── Contents.json │ │ └── videoCache_success@2x.png │ │ ├── videoCache_up.imageset │ │ ├── Contents.json │ │ └── videoCache_up@2x.png │ │ ├── wb_back.imageset │ │ ├── Contents.json │ │ └── wb_back@3x.png │ │ ├── wb_fullscreen.imageset │ │ ├── Contents.json │ │ └── wb_fullscreen@3x.png │ │ ├── wb_fullscreen_back.imageset │ │ ├── Contents.json │ │ └── wb_fullscreen_back@3x.png │ │ ├── wb_more.imageset │ │ ├── Contents.json │ │ └── wb_more@3x.png │ │ ├── wb_pause.imageset │ │ ├── Contents.json │ │ └── wb_pause@3x.png │ │ ├── wb_play.imageset │ │ ├── Contents.json │ │ └── wb_play@3x.png │ │ ├── wb_thumb.imageset │ │ ├── Contents.json │ │ └── wb_thumb@3x.png │ │ ├── wb_volume_off.imageset │ │ ├── Contents.json │ │ └── wb_volume_off@3x.png │ │ └── wb_volume_on.imageset │ │ ├── Contents.json │ │ └── wb_volume_on@3x.png │ ├── SuperPlayer.podspec │ ├── SuperPlayerKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── SuperPlayerKit.xcscheme │ ├── SuperPlayerKit │ ├── Category │ │ ├── NSString+URL.h │ │ ├── NSString+URL.m │ │ ├── UIInterface+TXRotation.h │ │ ├── UIInterface+TXRotation.m │ │ ├── UINavigationController+SuperPlayerRotation.h │ │ ├── UINavigationController+SuperPlayerRotation.m │ │ ├── UIView+MMLayout.h │ │ └── UIView+MMLayout.m │ ├── Localized │ │ ├── SuperPlayerLocalized.h │ │ └── SuperPlayerLocalized.m │ ├── Model │ │ ├── AdaptiveStream.h │ │ ├── AdaptiveStream.m │ │ ├── DynamicWaterModel.h │ │ ├── DynamicWaterModel.m │ │ ├── SPPlayCGIParseResult.h │ │ ├── SPPlayCGIParseResult.m │ │ ├── SPSubStreamInfo.h │ │ ├── SPSubStreamInfo.m │ │ ├── SPVideoFrameDescription.h │ │ ├── SPVideoFrameDescription.m │ │ ├── SuperPlayerSprite.h │ │ ├── SuperPlayerSprite.m │ │ ├── SuperPlayerSubtitles.h │ │ ├── SuperPlayerSubtitles.m │ │ ├── SuperPlayerUrl.h │ │ ├── SuperPlayerUrl.m │ │ ├── TXVipWatchModel.h │ │ └── TXVipWatchModel.m │ ├── Skins │ │ ├── SPDefaultControlView.h │ │ ├── SPDefaultControlView.m │ │ ├── SPWeiboControlView.h │ │ └── SPWeiboControlView.m │ ├── SmallWindow │ │ ├── SuperPlayerPIPManager.h │ │ ├── SuperPlayerPIPManager.m │ │ ├── SuperPlayerSmallWindow.h │ │ ├── SuperPlayerSmallWindow.m │ │ ├── SuperPlayerSmallWindowManager.h │ │ ├── SuperPlayerSmallWindowManager.m │ │ ├── SuperPlayerSmallWindowViewController.h │ │ └── SuperPlayerSmallWindowViewController.m │ ├── SuperPlayer.h │ ├── SuperPlayerControlView.h │ ├── SuperPlayerControlView.m │ ├── SuperPlayerControlViewDelegate.h │ ├── SuperPlayerHelpers.h │ ├── SuperPlayerLocalized │ │ ├── en.lproj │ │ │ └── SuperPlayerLocalized.strings │ │ └── zh-Hans.lproj │ │ │ └── SuperPlayerLocalized.strings │ ├── SuperPlayerModel.h │ ├── SuperPlayerModel.m │ ├── SuperPlayerModelInternal.h │ ├── SuperPlayerView.h │ ├── SuperPlayerView.m │ ├── SuperPlayerViewConfig.h │ ├── SuperPlayerViewConfig.m │ ├── Utils │ │ ├── DataReport.h │ │ ├── DataReport.m │ │ ├── J2Obj.h │ │ ├── J2Obj.m │ │ ├── NetWatcher.h │ │ ├── NetWatcher.m │ │ ├── StrUtils.h │ │ ├── StrUtils.m │ │ ├── SuperPlayerReachability.h │ │ ├── SuperPlayerReachability.m │ │ ├── TXBitrateItemHelper.h │ │ ├── TXBitrateItemHelper.m │ │ ├── TXCUrl.h │ │ ├── TXCUrl.m │ │ ├── UILabel+Size.h │ │ ├── UILabel+Size.m │ │ ├── UIView+Fade.h │ │ └── UIView+Fade.m │ └── Views │ │ ├── DynamicWaterMarkView │ │ ├── DynamicWatermarkView.h │ │ └── DynamicWatermarkView.m │ │ ├── MMMaterialDesignSpinner.h │ │ ├── MMMaterialDesignSpinner.m │ │ ├── PlayerSlider.h │ │ ├── PlayerSlider.m │ │ ├── SuperPlayerFastView.h │ │ ├── SuperPlayerFastView.m │ │ ├── SuperPlayerSettingsView.h │ │ ├── SuperPlayerSettingsView.m │ │ ├── SuperPlayerSubtitlesView │ │ ├── SubtitlesSettingView │ │ │ ├── SuperPlayerSubParamView.h │ │ │ ├── SuperPlayerSubParamView.m │ │ │ ├── SuperPlayerSubSettingView.h │ │ │ ├── SuperPlayerSubSettingView.m │ │ │ ├── SuperPlayerTableMenu.h │ │ │ └── SuperPlayerTableMenu.m │ │ ├── SuperPlayerSubtitlesView.h │ │ └── SuperPlayerSubtitlesView.m │ │ ├── SuperPlayerTrackView │ │ ├── SuperPlayerTrackView.h │ │ └── SuperPlayerTrackView.m │ │ ├── SuperPlayerView+Private.h │ │ └── VipView │ │ ├── TXVipTipView.h │ │ ├── TXVipTipView.m │ │ ├── TXVipWatchView.h │ │ └── TXVipWatchView.m │ └── XcodeConfig │ ├── LiteAVConfig.Debug.xcconfig │ └── LiteAVConfig.Release.xcconfig ├── LiteAVConfig.xcconfig ├── Player-API-Example-iOS ├── PlayerApiDemo │ ├── PlayerApiDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PlayerApiDemo │ │ ├── AppModule │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Config │ │ │ │ ├── TXApiConfigManager.h │ │ │ │ └── TXApiConfigManager.m │ │ │ ├── Controller │ │ │ │ ├── MainViewController.h │ │ │ │ └── MainViewController.m │ │ │ ├── Localized │ │ │ │ ├── TXAppLocalized.h │ │ │ │ ├── TXAppLocalized.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── TXHomeModuleLocalize.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── TXHomeModuleLocalize.strings │ │ │ ├── Macro │ │ │ │ └── TXAppModuleMacro.h │ │ │ ├── Model │ │ │ │ ├── TXAppHomeModel.h │ │ │ │ ├── TXAppHomeModel.m │ │ │ │ ├── TXHomeCellModel.h │ │ │ │ └── TXHomeCellModel.m │ │ │ └── View │ │ │ │ ├── TXHomeTableViewCell.h │ │ │ │ └── TXHomeTableViewCell.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── FunctionModule │ │ │ ├── PreDownloadAndPreloadingModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXPreDownloadAndPreloadingViewController.h │ │ │ │ │ └── TXPreDownloadAndPreloadingViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXPreDownloadAndPreloadingLocalized.h │ │ │ │ │ ├── TXPreDownloadAndPreloadingLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXPreDownloadAndPreloadingLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXPreDownloadAndPreloadingLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXPreDownloadAndPreloadingColor.h │ │ │ │ │ ├── TXPreDownloadAndPreloadingLayout.h │ │ │ │ │ └── TXPreDownloadAndPreloadingResource.h │ │ │ ├── SetSpeciResolutionModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXSetSpeciResolutionViewController.h │ │ │ │ │ └── TXSetSpeciResolutionViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXSetSpeciResolutionLocalized.h │ │ │ │ │ ├── TXSetSpeciResolutionLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXSetSpeciResolutionLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXSetSpeciResolutionLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXSetSpeciResolutionColor.h │ │ │ │ │ ├── TXSetSpeciResolutionLayout.h │ │ │ │ │ └── TXSetSpeciResolutionResource.h │ │ │ ├── SetStartTimeModule │ │ │ │ ├── Controller │ │ │ │ │ ├── TXSetStartTimeViewController.h │ │ │ │ │ └── TXSetStartTimeViewController.m │ │ │ │ ├── Localized │ │ │ │ │ ├── TXSetStartTimeLocalized.h │ │ │ │ │ ├── TXSetStartTimeLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXSetStartTimeLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXSetStartTimeLocalize.strings │ │ │ │ └── Macro │ │ │ │ │ ├── TXSetStartTimeColor.h │ │ │ │ │ ├── TXSetStartTimeLayout.h │ │ │ │ │ └── TXSetStartTimeResource.h │ │ │ ├── TXBasePlayerModule │ │ │ │ ├── ConfigViewController │ │ │ │ │ ├── TXConfigViewController.h │ │ │ │ │ ├── TXConfigViewController.m │ │ │ │ │ ├── Tools │ │ │ │ │ │ ├── TXConfigCheckBox.h │ │ │ │ │ │ └── TXConfigCheckBox.m │ │ │ │ │ └── View │ │ │ │ │ │ ├── TXConfigBlockButton.h │ │ │ │ │ │ ├── TXConfigBlockButton.m │ │ │ │ │ │ ├── TXConfigCellText.h │ │ │ │ │ │ ├── TXConfigCellText.m │ │ │ │ │ │ ├── TXConfigTableMenu.h │ │ │ │ │ │ ├── TXConfigTableMenu.m │ │ │ │ │ │ ├── TXConfigText.h │ │ │ │ │ │ └── TXConfigText.m │ │ │ │ ├── Controller │ │ │ │ │ ├── TXBasePlayerViewController.h │ │ │ │ │ └── TXBasePlayerViewController.m │ │ │ │ ├── Macro │ │ │ │ │ └── TXBasePlayerMacro.h │ │ │ │ ├── Resource │ │ │ │ │ └── TXBasePlayer.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Input_box.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Input_box.png │ │ │ │ │ │ ├── QR_code.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── QR_code.png │ │ │ │ │ │ ├── adjust.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── adjust.png │ │ │ │ │ │ ├── background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── background.jpg │ │ │ │ │ │ ├── btn_selected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_selected.png │ │ │ │ │ │ ├── btn_unselected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_unselected.png │ │ │ │ │ │ ├── cache.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cache.png │ │ │ │ │ │ ├── cacheSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cacheSelected.png │ │ │ │ │ │ ├── fill.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fill.png │ │ │ │ │ │ ├── fullscreen.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fullscreen@3x.png │ │ │ │ │ │ ├── help_small.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── help_small@2x.png │ │ │ │ │ │ ├── landscape.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── landscape.png │ │ │ │ │ │ ├── loading_image0.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image0.png │ │ │ │ │ │ ├── loading_image1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image1.png │ │ │ │ │ │ ├── loading_image2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image2.png │ │ │ │ │ │ ├── loading_image3.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image3.png │ │ │ │ │ │ ├── loading_image4.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image4.png │ │ │ │ │ │ ├── loading_image5.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image5.png │ │ │ │ │ │ ├── loading_image6.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image6.png │ │ │ │ │ │ ├── loading_image7.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading_image7.png │ │ │ │ │ │ ├── log.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── log.png │ │ │ │ │ │ ├── logSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logSelected.png │ │ │ │ │ │ ├── play_mute.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── playmute.png │ │ │ │ │ │ ├── play_setting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── play_setting.png │ │ │ │ │ │ ├── play_setting@2x.png │ │ │ │ │ │ └── play_setting@3x.png │ │ │ │ │ │ ├── play_sound.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── playsound.png │ │ │ │ │ │ ├── portrait.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── portrait.png │ │ │ │ │ │ ├── quick.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── quick.png │ │ │ │ │ │ ├── quickSelected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── quickSelected.png │ │ │ │ │ │ ├── shrinkscreen.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shrinkscreen.png │ │ │ │ │ │ ├── shrinkscreen@2x.png │ │ │ │ │ │ └── shrinkscreen@3x.png │ │ │ │ │ │ ├── start.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── start.png │ │ │ │ │ │ ├── stop.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── close@2x.png │ │ │ │ │ │ └── suspend.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── suspend.png │ │ │ │ ├── TXBasePlayerLocalized │ │ │ │ │ ├── TXBasePlayerLocalized.h │ │ │ │ │ ├── TXBasePlayerLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXBasePlayerLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXBasePlayerLocalize.strings │ │ │ │ ├── TXScanQRController │ │ │ │ │ ├── TXScanQRController.h │ │ │ │ │ └── TXScanQRController.m │ │ │ │ └── Views │ │ │ │ │ ├── BitratesView │ │ │ │ │ ├── TXBitrateView.h │ │ │ │ │ ├── TXBitrateView.m │ │ │ │ │ ├── TXVideoBitrate.h │ │ │ │ │ └── TXVideoBitrate.m │ │ │ │ │ ├── BottomView │ │ │ │ │ ├── TXBasePlayerBottomView.h │ │ │ │ │ ├── TXBasePlayerBottomView.m │ │ │ │ │ ├── TXBottomToolView.h │ │ │ │ │ └── TXBottomToolView.m │ │ │ │ │ ├── Category │ │ │ │ │ ├── UIImage+TXExtension.h │ │ │ │ │ ├── UIImage+TXExtension.m │ │ │ │ │ ├── UIView+TXAdditions.h │ │ │ │ │ └── UIView+TXAdditions.m │ │ │ │ │ ├── LogView │ │ │ │ │ ├── TXBasePlayerLogView.h │ │ │ │ │ └── TXBasePlayerLogView.m │ │ │ │ │ └── TopView │ │ │ │ │ ├── TXBasePlayerTopView.h │ │ │ │ │ └── TXBasePlayerTopView.m │ │ │ ├── TXControlPanelViewController │ │ │ │ ├── Controller │ │ │ │ │ ├── TXControlPanelViewController.h │ │ │ │ │ └── TXControlPanelViewController.m │ │ │ │ ├── Macro │ │ │ │ │ └── TXControlPanelMacro.h │ │ │ │ └── Resource │ │ │ │ │ ├── Localized │ │ │ │ │ ├── TXControlPanelLocalized.h │ │ │ │ │ ├── TXControlPanelLocalized.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── TXControlPanelLocalize.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── TXControlPanelLocalize.strings │ │ │ │ │ └── TXControlPanelResource │ │ │ │ │ └── TengXunYun_logo │ │ │ └── TXVideoDownloadModule │ │ │ │ ├── Controller │ │ │ │ ├── TXVideoDownloadViewController.h │ │ │ │ └── TXVideoDownloadViewController.m │ │ │ │ ├── Localized │ │ │ │ ├── TXVideoDownloadLocalized.h │ │ │ │ ├── TXVideoDownloadLocalized.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── TXVideoDownloadLocalize.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── TXVideoDownloadLocalize.strings │ │ │ │ └── Macro │ │ │ │ └── TXVideoDownloadMacro.h │ │ ├── Info.plist │ │ ├── Resource │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-50.png │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ ├── icon-57.png │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-72.png │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow@2x.png │ │ │ │ ├── back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back@2x.png │ │ │ │ │ └── back@3x.png │ │ │ │ └── transparent.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transparent.png │ │ │ └── Player.plist │ │ ├── SceneModule │ │ │ └── ShortVideoModule │ │ │ │ ├── ShortVideoPlayViewController.h │ │ │ │ └── ShortVideoPlayViewController.m │ │ ├── main.m │ │ └── zh-Hans.lproj │ │ │ └── Main.strings │ └── Podfile └── ReadMe.md ├── README-EN.md ├── README.md ├── SDK ├── README-EN.md └── README.md └── Swift-Call-OC-Example ├── Podfile ├── SwiftCallOC.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SwiftCallOC ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift ├── SwiftCallOC-Bridging-Header.h └── ViewController.swift ├── SwiftCallOCTests └── SwiftCallOCTests.swift └── SwiftCallOCUITests ├── SwiftCallOCUITests.swift └── SwiftCallOCUITestsLaunchTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcodeproj/xcshareddata/xcschemes/Player.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcodeproj/xcshareddata/xcschemes/Player.xcscheme -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcodeproj/xcshareddata/xcschemes/Player_Premium.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcodeproj/xcshareddata/xcschemes/Player_Premium.xcscheme -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/AppDelegate.h -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/AppDelegate.m -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Common/Localized/PlayerLocalized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Common/Localized/PlayerLocalized.h -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Common/Localized/PlayerLocalized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Common/Localized/PlayerLocalized.m -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Config/AppConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Config/AppConfig.plist -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Player-Info.plist -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Player.entitlements -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/PlayerLocalized/en.lproj/PlayerLocalized.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/PlayerLocalized/en.lproj/PlayerLocalized.strings -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/PlayerLocalized/zh-Hans.lproj/PlayerLocalized.strings: -------------------------------------------------------------------------------- 1 | // Copyright © 2023 Tencent. All rights reserved. 2 | 3 | 4 | "Player.MianTitle" = "视频云工具包"; 5 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player_Premium-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Player_Premium-Info.plist -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/Player_Premium.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/Player_Premium.entitlements -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/ViewController.h -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/ViewController.m -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/PlayerApp/main.m -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/PlayerApp/PlayerApp/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/PlayerApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerApp/Podfile -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit.podspec -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/HUDHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/HUDHelper.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/HUDHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/HUDHelper.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSData+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSData+Common.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSData+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSData+Common.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSDictionary+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSDictionary+Common.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSDictionary+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSDictionary+Common.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSObject+CommonBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSObject+CommonBlock.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSObject+CommonBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSObject+CommonBlock.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+Common.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+Common.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+UISize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+UISize.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+UISize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSString+UISize.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSTimer+BlcokTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSTimer+BlcokTimer.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSTimer+BlcokTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/NSTimer+BlcokTimer.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Additions.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Additions.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Glossy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Glossy.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Glossy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIButton+Glossy.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIColor+MLPFlatColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIColor+MLPFlatColors.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIColor+MLPFlatColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIColor+MLPFlatColors.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIImage+TPAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIImage+TPAdditions.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIImage+TPAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIImage+TPAdditions.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+Additions.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+Additions.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+CustomAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+CustomAutoLayout.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+CustomAutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIView+CustomAutoLayout.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIViewController+BackButtonHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIViewController+BackButtonHandler.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIViewController+BackButtonHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/Catetory/UIViewController+BackButtonHandler.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/ColorMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/ColorMacro.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCLog.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCLog.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCUtil.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/CommonUtils/TCUtil.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/YTFaceSDK.licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/YTFaceSDK.licence -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/AECore.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/AECore.metallib -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/e1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/o1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/o1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/rotBasis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/poseest.bundle/rotBasis.bin -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/u1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/u1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/ufa.bundle/ufa_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/ufa.bundle/ufa_config.ini -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/EnterprisePITU/data/v1 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/QRScan/TPScanQRController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/QRScan/TPScanQRController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/QRScan/TPScanQRController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/QRScan/TPScanQRController.mm -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/SmallButton/SmallButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/SmallButton/SmallButton.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/SmallButton/SmallButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/SmallButton/SmallButton.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/TCHttpUtil/TCHttpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/TCHttpUtil/TCHttpUtil.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppCommon/TCHttpUtil/TCHttpUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppCommon/TCHttpUtil/TCHttpUtil.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppLogMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppLogMgr.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/AppLogMgr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/AppLogMgr.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Main/MainTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Main/MainTableViewCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Main/MainTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Main/MainTableViewCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Main/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Main/MainViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Main/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Main/MainViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic.imageset/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/mic.imageset/mic.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound.imageset/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AVRoom/sound.imageset/sound.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/arrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/arrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/cut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/cut.imageset/cut@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/dbg_tool.imageset/调试.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/dbg_tool.imageset/调试.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/push@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/push.imageset/push@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/qa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Main/qa.imageset/qa@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/SuperPlayer/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/adjust.imageset/adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/adjust.imageset/adjust.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/black.imageset/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/black.imageset/black.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache.imageset/cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache.imageset/cache.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache2.imageset/cache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/cache2.imageset/cache2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/close.imageset/close@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/fill.imageset/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/fill.imageset/fill.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h264.imageset/h264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h264.imageset/h264.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h265.imageset/h265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/h265.imageset/h265.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log.imageset/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log.imageset/log.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log2.imageset/log2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/log2.imageset/log2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick.imageset/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/quick.imageset/quick.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/start.imageset/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/start.imageset/start.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/white.imageset/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Play/white.imageset/white.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/HD.imageset/HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/HD.imageset/HD.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/PU.imageset/PU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/PU.imageset/PU.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/SD.imageset/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/SD.imageset/SD.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float.imageset/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/float.imageset/float.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird.imageset/gird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/gird.imageset/gird.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/help.imageset/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/help.imageset/help.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/music.imageset/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/music.imageset/music.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/new.imageset/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/new.imageset/new.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/send.imageset/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/send.imageset/send.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set.imageset/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set.imageset/set.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b.imageset/设置-开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b.imageset/设置-开.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b2.imageset/设置-关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/set_b2.imageset/设置-关.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stop2.imageset/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/Push/stop2.imageset/stop2.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/RTCRoom/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTC/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar0_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar1_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar2_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar3_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar4_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar5_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar6_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar7_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar8_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/TRTCVoiceRoom/avatar9_100.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/back.imageset/bgm_back@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/copy.imageset/copy@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/exit.imageset/exitRoom@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/qrcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/qrcode.imageset/qrcode@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/resign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/resign.imageset/resign.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/scan.imageset/scan@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/下一个@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/下一个.imageset/下一个@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/亮度大@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度大.imageset/亮度大@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/亮度小@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/亮度小.imageset/亮度小@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/全屏@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/全屏.imageset/全屏@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/声音@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音.imageset/声音@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/声音放大@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/声音放大.imageset/声音放大@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/弹幕@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/弹幕.imageset/弹幕@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/截屏@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/截屏.imageset/截屏@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/扫码@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/扫码.imageset/扫码@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/搜索框@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/搜索框.imageset/搜索框@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/更多@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/更多.imageset/更多@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/背景@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/背景.imageset/背景@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/返回@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/返回.imageset/返回@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/进度按钮@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮.imageset/进度按钮@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/进度按钮点击@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Assets.xcassets/进度按钮点击.imageset/进度按钮点击@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/English.lproj/UserProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/English.lproj/UserProtocol.html -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/bailan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/bailan.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/baixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/baixi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chaotuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chaotuo.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chunzhen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/chunzhen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/fennen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/fennen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/huaijiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/huaijiu.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/landiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/landiao.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/langman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/langman.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/normal.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingliang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingliang.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/qingxin.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/rixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/rixi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/weimei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/weimei.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/white.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/xiangfen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/xiangfen.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yinghong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yinghong.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yuanqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yuanqi.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yunshang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/yunshang.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/ziran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/FilterResource.bundle/ziran.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Localized/AppLocalized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Localized/AppLocalized.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Localized/AppLocalized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Localized/AppLocalized.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/TengXunYun_logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/TengXunYun_logo -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/back_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/back_full@2x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/back_full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/back_full@3x.png -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/bgm_demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/bgm_demo.mp3 -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/en.lproj/UserProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/en.lproj/UserProtocol.html -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/Resource/zh-Hans.lproj/UserProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/Resource/zh-Hans.lproj/UserProtocol.html -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXAppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXAppInfo.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXAppInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXAppInfo.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXAppInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXAppInstance.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXAppInstance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXAppInstance.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXConfigManager.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/TXConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/TXConfigManager.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/App/config/Player.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/App/config/Player.plist -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/PlayerAppdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/PlayerAppdelegate.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/PlayerAppdelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/PlayerAppdelegate.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/PlayerKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/PlayerKit.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/PlayerKitCommonHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/PlayerKitCommonHeaders.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/Register/VodPlayerRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/Register/VodPlayerRouter.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/Register/VodPlayerRouter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/Register/VodPlayerRouter.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedDetailViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedDetailViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedPlayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedPlayViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedPlayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Controller/FeedPlayViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedDetailModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedDetailModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedDetailModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedDetailModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedHeadModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedHeadModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedHeadModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedHeadModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedVideoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedVideoModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedVideoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Model/FeedVideoModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedRequestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedRequestUtil.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedRequestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedRequestUtil.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedVideoPlayMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Utils/FeedVideoPlayMem.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedDetailViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedDetailViewCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedDetailViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedDetailViewCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedTableViewCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/Cell/FeedTableViewCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedBaseView/FeedBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedBaseView/FeedBaseView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedBaseView/FeedBaseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedBaseView/FeedBaseView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedDetailView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedDetailView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedHeadView/FeedHeadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedHeadView/FeedHeadView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedHeadView/FeedHeadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/FeedHeadView/FeedHeadView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/SuperFeedPlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/SuperFeedPlayView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/SuperFeedPlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayFeedDemo/Views/SuperFeedPlayView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/Download/DownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/Download/DownloadViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/Download/DownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/Download/DownloadViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmaku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmaku.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmaku.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmaku.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuInfo.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuInfo.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/CFDanmakuView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/danmakufile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CFDanmaku/danmakufile -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/ResolutionModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/CacheView/VideoCacheView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/ListUI/ListVideoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/ListUI/ListVideoCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/ListUI/ListVideoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/ListUI/ListVideoCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/MoviePlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/MoviePlayerViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/MoviePlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/MoviePlayerViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/SuperPlayerGuideView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/SuperPlayerGuideView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/SuperPlayerGuideView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/SuperPlayerGuideView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXLaunchMoviePlayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXLaunchMoviePlayProtocol.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayInfoResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayInfoResponse.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayInfoResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayInfoResponse.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetApi.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetApi.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/SuperPlayer/TXMoviePlayerNetDelegate.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/UGCUpload/UGCUploadList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/UGCUpload/UGCUploadList.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/SuperPlayerDemo/UGCUpload/UGCUploadList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/SuperPlayerDemo/UGCUpload/UGCUploadList.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/TUIShortVideoPlayDemo/Data/TUIShortVideoPlayer.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/TUIShortVideoPlayDemo/Data/TUIShortVideoPlayer.plist -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/TUIShortVideoPlayDemo/TUISDK/TUIPlayerCore/TUIPlayerCore.xcframework/ios-arm64_x86_64-simulator/TUIPlayerCore.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/TUIShortVideoPlayDemo/TUISDK/TUIPlayerShortVideo/TUIPlayerShortVideo.xcframework/ios-arm64_x86_64-simulator/TUIPlayerShortVideo.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtensionConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJExtensionConst.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJFoundation.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJProperty.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyKey.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/MJPropertyType.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJClass.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJCoding.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJKeyValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJKeyValue.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSObject+MJProperty.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSString+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJExtension/MJExtension/NSString+MJExtension.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshTrailer.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshTrailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/Base/MJRefreshTrailer.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConfig.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConfig.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/NSButton+WebCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDImageTransformer.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageCompat.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageDefine.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageManager.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/SDWebImageOperation.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIButton+WebCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Metadata.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIImage+Transform.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDeviceHelper.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDDisplayLink.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDInternalMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDInternalMacros.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/ThirdPart/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Controller/TXCollectionLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Controller/TXCollectionLayout.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Controller/TXCollectionLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Controller/TXCollectionLayout.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Model/TXVideoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Model/TXVideoModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Model/TXVideoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Model/TXVideoModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ShortVideo.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Others/TXVideoPlayMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Others/TXVideoPlayMem.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Request/TXVideoRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Request/TXVideoRequest.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Request/TXVideoRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Request/TXVideoRequest.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/TXVideoPlayer/TXVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/TXVideoPlayer/TXVideoPlayer.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/TXVideoPlayer/TXVideoPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/TXVideoPlayer/TXVideoPlayer.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Utils/TXVideoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Utils/TXVideoUtils.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Utils/TXVideoUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/Tools/Utils/TXVideoUtils.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXTableViewCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXTableViewCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXVideoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXVideoCell.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXVideoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/Cell/TXVideoCell.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/SuperShortVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/SuperShortVideoView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/SuperShortVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/SuperShortVideoView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXBaseView/TXVideoBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXBaseView/TXVideoBaseView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXBaseView/TXVideoBaseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXBaseView/TXVideoBaseView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXLoadingView/TXLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXLoadingView/TXLoadingView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXLoadingView/TXLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXLoadingView/TXLoadingView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXSliderView/TXSliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXSliderView/TXSliderView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXSliderView/TXSliderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXSliderView/TXSliderView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXTimeView/TXTimeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXTimeView/TXTimeView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXTimeView/TXTimeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/View/TXTimeView/TXTimeView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ViewModel/TXVideoViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ViewModel/TXVideoViewModel.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ViewModel/TXVideoViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/UGCShortVideoPlayDemo/ViewModel/TXVideoViewModel.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/Util/UIImage+bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/Util/UIImage+bundle.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/Util/UIImage+bundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/Util/UIImage+bundle.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/BitratesView/TXBitrateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/BitratesView/TXBitrateView.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/BitratesView/TXBitrateView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/BitratesView/TXBitrateView.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigCellText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigCellText.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigCellText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigCellText.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigText.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/ConfigViewController/View/TXConfigText.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/PlayVodViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/PlayVodViewController.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/PlayVodViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/PlayVodViewController.m -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/VideoBitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/VideoBitrate.h -------------------------------------------------------------------------------- /Demo/PlayerKit/PlayerKit/VodPlayerDemo/VideoBitrate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/PlayerKit/VodPlayerDemo/VideoBitrate.m -------------------------------------------------------------------------------- /Demo/PlayerKit/XcodeConfig/LiteAVConfig.Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/XcodeConfig/LiteAVConfig.Debug.xcconfig -------------------------------------------------------------------------------- /Demo/PlayerKit/XcodeConfig/LiteAVConfig.Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/PlayerKit/XcodeConfig/LiteAVConfig.Release.xcconfig -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/arrow.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/back_full.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/brightness.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/brightness.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/capture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/capture.imageset/capture@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/cw_img_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/danmu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/danmu.imageset/danmu@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/download.imageset/download@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/fullscreen.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/iknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/iknown.imageset/iknown@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/left_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/left_g.imageset/left_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_max.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_max.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_min.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/light_min.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/lock-nor.imageset/lock-nor@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/middle_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/middle_g.imageset/middle_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/more.imageset/more@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/pause.imageset/pause@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play.imageset/play@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/play_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_btn.imageset/play_btn@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/play_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/play_next.imageset/play_next.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/right_g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/right_g.imageset/right_g@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@2x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/slider.imageset/slider@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_max.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_max.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_min.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/sound_min.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/subtitles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/subtitles.imageset/subtitles.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/top_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/top_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/track.imageset/track.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/unlock-nor.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/wb_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_back.imageset/wb_back@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/wb_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_more.imageset/wb_more@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/wb_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_pause.imageset/wb_pause@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/wb_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_play.imageset/wb_play@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/wb_thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/Resource/SuperPlayer.xcassets/wb_thumb.imageset/wb_thumb@3x.png -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayer.podspec -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/NSString+URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/NSString+URL.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/NSString+URL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/NSString+URL.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/UIInterface+TXRotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/UIInterface+TXRotation.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/UIInterface+TXRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/UIInterface+TXRotation.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/UIView+MMLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/UIView+MMLayout.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Category/UIView+MMLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Category/UIView+MMLayout.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Localized/SuperPlayerLocalized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Localized/SuperPlayerLocalized.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Localized/SuperPlayerLocalized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Localized/SuperPlayerLocalized.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/AdaptiveStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/AdaptiveStream.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/AdaptiveStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/AdaptiveStream.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/DynamicWaterModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/DynamicWaterModel.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/DynamicWaterModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/DynamicWaterModel.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPPlayCGIParseResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPPlayCGIParseResult.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPPlayCGIParseResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPPlayCGIParseResult.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPSubStreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPSubStreamInfo.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPSubStreamInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPSubStreamInfo.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPVideoFrameDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPVideoFrameDescription.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SPVideoFrameDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SPVideoFrameDescription.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSprite.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSprite.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSubtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSubtitles.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSubtitles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerSubtitles.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerUrl.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerUrl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/SuperPlayerUrl.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/TXVipWatchModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/TXVipWatchModel.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Model/TXVipWatchModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Model/TXVipWatchModel.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPDefaultControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPDefaultControlView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPDefaultControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPDefaultControlView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPWeiboControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPWeiboControlView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPWeiboControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Skins/SPWeiboControlView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerPIPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerPIPManager.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerPIPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerPIPManager.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindow.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindow.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindowManager.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindowManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SmallWindow/SuperPlayerSmallWindowManager.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayer.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerControlViewDelegate.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerHelpers.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModel.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModel.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModelInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerModelInternal.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerViewConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerViewConfig.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerViewConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/SuperPlayerViewConfig.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/DataReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/DataReport.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/DataReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/DataReport.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/J2Obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/J2Obj.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/J2Obj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/J2Obj.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/NetWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/NetWatcher.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/NetWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/NetWatcher.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/StrUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/StrUtils.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/StrUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/StrUtils.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/SuperPlayerReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/SuperPlayerReachability.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/SuperPlayerReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/SuperPlayerReachability.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXBitrateItemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXBitrateItemHelper.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXBitrateItemHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXBitrateItemHelper.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXCUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXCUrl.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXCUrl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/TXCUrl.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/UILabel+Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/UILabel+Size.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/UILabel+Size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/UILabel+Size.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/UIView+Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/UIView+Fade.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Utils/UIView+Fade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Utils/UIView+Fade.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/MMMaterialDesignSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/MMMaterialDesignSpinner.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/MMMaterialDesignSpinner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/MMMaterialDesignSpinner.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/PlayerSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/PlayerSlider.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/PlayerSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/PlayerSlider.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerFastView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerFastView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerFastView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerFastView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerSettingsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerSettingsView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerSettingsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerSettingsView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerView+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/SuperPlayerView+Private.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipTipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipTipView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipTipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipTipView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipWatchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipWatchView.h -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipWatchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/SuperPlayerKit/Views/VipView/TXVipWatchView.m -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/XcodeConfig/LiteAVConfig.Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/XcodeConfig/LiteAVConfig.Debug.xcconfig -------------------------------------------------------------------------------- /Demo/SuperPlayerKit/XcodeConfig/LiteAVConfig.Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Demo/SuperPlayerKit/XcodeConfig/LiteAVConfig.Release.xcconfig -------------------------------------------------------------------------------- /LiteAVConfig.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/LiteAVConfig.xcconfig -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/AppDelegate.h -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/AppDelegate.m -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/Model/TXAppHomeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/Model/TXAppHomeModel.h -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/Model/TXAppHomeModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/AppModule/Model/TXAppHomeModel.m -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Info.plist -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Player.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/Resource/Player.plist -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/main.m -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/PlayerApiDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Player-API-Example-iOS/PlayerApiDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/PlayerApiDemo/Podfile -------------------------------------------------------------------------------- /Player-API-Example-iOS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Player-API-Example-iOS/ReadMe.md -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/README.md -------------------------------------------------------------------------------- /SDK/README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/SDK/README-EN.md -------------------------------------------------------------------------------- /SDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/SDK/README.md -------------------------------------------------------------------------------- /Swift-Call-OC-Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/Podfile -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/AppDelegate.swift -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/Info.plist -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/SceneDelegate.swift -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/SwiftCallOC-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/SwiftCallOC-Bridging-Header.h -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOC/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOC/ViewController.swift -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOCTests/SwiftCallOCTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOCTests/SwiftCallOCTests.swift -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOCUITests/SwiftCallOCUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOCUITests/SwiftCallOCUITests.swift -------------------------------------------------------------------------------- /Swift-Call-OC-Example/SwiftCallOCUITests/SwiftCallOCUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteAVSDK/Player_iOS/HEAD/Swift-Call-OC-Example/SwiftCallOCUITests/SwiftCallOCUITestsLaunchTests.swift --------------------------------------------------------------------------------