├── .gitignore ├── README.md ├── VideoLayer.swift ├── VideoView.swift ├── VideoWindow.swift ├── bridging-header.h └── main.m /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | build/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/README.md -------------------------------------------------------------------------------- /VideoLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/VideoLayer.swift -------------------------------------------------------------------------------- /VideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/VideoView.swift -------------------------------------------------------------------------------- /VideoWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/VideoWindow.swift -------------------------------------------------------------------------------- /bridging-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/bridging-header.h -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akemi/libmpv-objc-swift/HEAD/main.m --------------------------------------------------------------------------------