├── .gitignore ├── README.md ├── VBPlayerDemo ├── VBPlayerDemo.xcodeproj │ └── project.pbxproj ├── VBPlayerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── PlayerView.h │ ├── PlayerView.m │ ├── VBDisplayLayer.h │ ├── VBPlayer.a │ ├── VBPlayer.h │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── VBPlayerDemoTests │ ├── Info.plist │ └── VBPlayerDemoTests.m └── license /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/README.md -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/AppDelegate.h -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/AppDelegate.m -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/Info.plist -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/PlayerView.h -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/PlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/PlayerView.m -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/VBDisplayLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/VBDisplayLayer.h -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/VBPlayer.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/VBPlayer.a -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/VBPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/VBPlayer.h -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/ViewController.h -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/ViewController.m -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemo/main.m -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemoTests/Info.plist -------------------------------------------------------------------------------- /VBPlayerDemo/VBPlayerDemoTests/VBPlayerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/VBPlayerDemo/VBPlayerDemoTests/VBPlayerDemoTests.m -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viblast/ios-player-sdk/HEAD/license --------------------------------------------------------------------------------