├── .gitignore ├── COPYING ├── Configure.sh ├── DynamicMobileVLCKit ├── DynamicMobileVLCKit.h └── Info.plist ├── Examples_OSX ├── BasicPlayerWithPlaylist │ ├── BasicPlayerWithPlaylist.xcodeproj │ │ └── project.pbxproj │ ├── Controller.h │ ├── Controller.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── main.m │ └── test_Prefix.pch ├── FlashVideoDownloader │ ├── Controller.h │ ├── Controller.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── FlashVideoDownloader.xcodeproj │ │ └── project.pbxproj │ ├── FlashVideoDownloader_Prefix.pch │ ├── GradientBackgroundView.h │ ├── GradientBackgroundView.m │ ├── Info.plist │ └── main.m └── iPodConverter │ ├── Controller.h │ ├── Controller.m │ ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── GradientBackgroundView.h │ ├── GradientBackgroundView.m │ ├── Info.plist │ ├── MovieReceiver.h │ ├── MovieReceiver.m │ ├── iPodConverter.xcodeproj │ └── project.pbxproj │ ├── iPodConverter_Prefix.pch │ └── main.m ├── Examples_iOS ├── DropIn-Player │ ├── Dropin-Player.xcodeproj │ │ └── project.pbxproj │ ├── Dropin-Player │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Dropin-Player-Info.plist │ │ ├── Dropin-Player-Prefix.pch │ │ ├── VDLAppDelegate.h │ │ ├── VDLAppDelegate.m │ │ ├── VDLPlaybackViewController.h │ │ ├── VDLPlaybackViewController.m │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── VDLPlaybackViewController.xib │ │ └── main.m │ ├── VDLMainViewController.h │ ├── VDLMainViewController.m │ └── VDLMainViewController.xib └── SimplePlayback │ ├── SimplePlayback.xcodeproj │ └── project.pbxproj │ └── SimplePlayback │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── SimplePlayback-Info.plist │ ├── SimplePlayback-Prefix.pch │ ├── VDLAppDelegate.h │ ├── VDLAppDelegate.m │ ├── VDLViewController.h │ ├── VDLViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── VDLViewController.xib │ └── main.m ├── Headers ├── Internal │ ├── VLCEventManager.h │ ├── VLCLibVLCBridging.h │ └── VLCVideoCommon.h └── Public │ ├── MobileVLCKit.h │ ├── VLCAudio.h │ ├── VLCExtension.h │ ├── VLCExtensionsManager.h │ ├── VLCKit.h │ ├── VLCLibrary.h │ ├── VLCMedia.h │ ├── VLCMediaDiscoverer.h │ ├── VLCMediaLibrary.h │ ├── VLCMediaList.h │ ├── VLCMediaListPlayer.h │ ├── VLCMediaPlayer.h │ ├── VLCMediaThumbnailer.h │ ├── VLCPlaylistDataSource.h │ ├── VLCServicesDiscoverer.h │ ├── VLCStreamOutput.h │ ├── VLCStreamSession.h │ ├── VLCTime.h │ ├── VLCVideoLayer.h │ └── VLCVideoView.h ├── Makefile ├── MobileVLCKit-dynamic └── Info.plist ├── MobileVLCKit.podspec ├── MobileVLCKit.xcodeproj └── project.pbxproj ├── MobileVLCKit └── patches │ ├── 0001-arm_neon-added-function-macro-to-handle-the-undersco.patch │ ├── 0002-arm_neon-use-a-macro-to-fix-compilation-for-iOS.patch │ ├── 0003-deinterlace-merge-use-a-macro-to-fix-compilation-for.patch │ ├── 0004-libass-fix-text-rendering-on-iOS-by-providing-a-font.patch │ ├── 0005-freetype-added-a-fake-font-lookup-mechanism-for-iOS-.patch │ ├── 0006-libvlc-add-preliminary-code-path-to-modify-quartztex.patch │ ├── 0007-contrib-gcrypt-simplify-compilation-by-disabling-doc.patch │ ├── 0008-lib-media-player-inherit-deinterlace-variable-to-ach.patch │ ├── 0009-arm_neon-work-around-libtool-issue.patch │ ├── 0010-libvlc-media-re-parse-if-flags-changed.patch │ └── 0011-disable-neon-volume-plugin.patch ├── MobileVLCKit_Prefix.pch ├── NEWS ├── Packaging ├── create-dmg.sh ├── dmg_setup.scpt └── mobile_dmg_setup.scpt ├── Pre-Compile.sh ├── Resources ├── Info.plist └── version.plist ├── Sources ├── VLCAudio.m ├── VLCEventManager.m ├── VLCExtension.m ├── VLCExtensionsManager.m ├── VLCLibrary.m ├── VLCMedia.m ├── VLCMediaDiscoverer.m ├── VLCMediaLibrary.m ├── VLCMediaList.m ├── VLCMediaListPlayer.m ├── VLCMediaPlayer.m ├── VLCMediaThumbnailer.m ├── VLCPlaylistDataSource.m ├── VLCServicesDiscoverer.m ├── VLCStreamOutput.m ├── VLCStreamSession.m ├── VLCTime.m ├── VLCVideoCommon.m ├── VLCVideoLayer.m └── VLCVideoView.m ├── StaticLibVLC └── StaticLibVLC.m ├── VLCKit-Info.plist ├── VLCKit.xcodeproj └── project.pbxproj └── VLC_Prefix.pch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/COPYING -------------------------------------------------------------------------------- /Configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Configure.sh -------------------------------------------------------------------------------- /DynamicMobileVLCKit/DynamicMobileVLCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/DynamicMobileVLCKit/DynamicMobileVLCKit.h -------------------------------------------------------------------------------- /DynamicMobileVLCKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/DynamicMobileVLCKit/Info.plist -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/BasicPlayerWithPlaylist.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/BasicPlayerWithPlaylist.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/Controller.h -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/Controller.m -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/Info.plist -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/main.m -------------------------------------------------------------------------------- /Examples_OSX/BasicPlayerWithPlaylist/test_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/BasicPlayerWithPlaylist/test_Prefix.pch -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/Controller.h -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/Controller.m -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/FlashVideoDownloader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/FlashVideoDownloader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/FlashVideoDownloader_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/FlashVideoDownloader_Prefix.pch -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/GradientBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/GradientBackgroundView.h -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/GradientBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/GradientBackgroundView.m -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/Info.plist -------------------------------------------------------------------------------- /Examples_OSX/FlashVideoDownloader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/FlashVideoDownloader/main.m -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/Controller.h -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/Controller.m -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/GradientBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/GradientBackgroundView.h -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/GradientBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/GradientBackgroundView.m -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/Info.plist -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/MovieReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/MovieReceiver.h -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/MovieReceiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/MovieReceiver.m -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/iPodConverter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/iPodConverter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/iPodConverter_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/iPodConverter_Prefix.pch -------------------------------------------------------------------------------- /Examples_OSX/iPodConverter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_OSX/iPodConverter/main.m -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/Default.png -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/Default@2x.png -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/Dropin-Player-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/Dropin-Player-Info.plist -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/Dropin-Player-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/Dropin-Player-Prefix.pch -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/VDLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/VDLAppDelegate.h -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/VDLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/VDLAppDelegate.m -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/VDLPlaybackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/VDLPlaybackViewController.h -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/VDLPlaybackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/VDLPlaybackViewController.m -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/en.lproj/VDLPlaybackViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/en.lproj/VDLPlaybackViewController.xib -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/Dropin-Player/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/Dropin-Player/main.m -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/VDLMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/VDLMainViewController.h -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/VDLMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/VDLMainViewController.m -------------------------------------------------------------------------------- /Examples_iOS/DropIn-Player/VDLMainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/DropIn-Player/VDLMainViewController.xib -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/Default.png -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/Default@2x.png -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/SimplePlayback-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/SimplePlayback-Info.plist -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/SimplePlayback-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/SimplePlayback-Prefix.pch -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/VDLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/VDLAppDelegate.h -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/VDLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/VDLAppDelegate.m -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/VDLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/VDLViewController.h -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/VDLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/VDLViewController.m -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/en.lproj/VDLViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/en.lproj/VDLViewController.xib -------------------------------------------------------------------------------- /Examples_iOS/SimplePlayback/SimplePlayback/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Examples_iOS/SimplePlayback/SimplePlayback/main.m -------------------------------------------------------------------------------- /Headers/Internal/VLCEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Internal/VLCEventManager.h -------------------------------------------------------------------------------- /Headers/Internal/VLCLibVLCBridging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Internal/VLCLibVLCBridging.h -------------------------------------------------------------------------------- /Headers/Internal/VLCVideoCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Internal/VLCVideoCommon.h -------------------------------------------------------------------------------- /Headers/Public/MobileVLCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/MobileVLCKit.h -------------------------------------------------------------------------------- /Headers/Public/VLCAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCAudio.h -------------------------------------------------------------------------------- /Headers/Public/VLCExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCExtension.h -------------------------------------------------------------------------------- /Headers/Public/VLCExtensionsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCExtensionsManager.h -------------------------------------------------------------------------------- /Headers/Public/VLCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCKit.h -------------------------------------------------------------------------------- /Headers/Public/VLCLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCLibrary.h -------------------------------------------------------------------------------- /Headers/Public/VLCMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMedia.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaDiscoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaDiscoverer.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaLibrary.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaList.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaListPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaListPlayer.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaPlayer.h -------------------------------------------------------------------------------- /Headers/Public/VLCMediaThumbnailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCMediaThumbnailer.h -------------------------------------------------------------------------------- /Headers/Public/VLCPlaylistDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCPlaylistDataSource.h -------------------------------------------------------------------------------- /Headers/Public/VLCServicesDiscoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCServicesDiscoverer.h -------------------------------------------------------------------------------- /Headers/Public/VLCStreamOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCStreamOutput.h -------------------------------------------------------------------------------- /Headers/Public/VLCStreamSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCStreamSession.h -------------------------------------------------------------------------------- /Headers/Public/VLCTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCTime.h -------------------------------------------------------------------------------- /Headers/Public/VLCVideoLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCVideoLayer.h -------------------------------------------------------------------------------- /Headers/Public/VLCVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Headers/Public/VLCVideoView.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Makefile -------------------------------------------------------------------------------- /MobileVLCKit-dynamic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit-dynamic/Info.plist -------------------------------------------------------------------------------- /MobileVLCKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit.podspec -------------------------------------------------------------------------------- /MobileVLCKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MobileVLCKit/patches/0001-arm_neon-added-function-macro-to-handle-the-undersco.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0001-arm_neon-added-function-macro-to-handle-the-undersco.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0002-arm_neon-use-a-macro-to-fix-compilation-for-iOS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0002-arm_neon-use-a-macro-to-fix-compilation-for-iOS.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0003-deinterlace-merge-use-a-macro-to-fix-compilation-for.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0003-deinterlace-merge-use-a-macro-to-fix-compilation-for.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0004-libass-fix-text-rendering-on-iOS-by-providing-a-font.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0004-libass-fix-text-rendering-on-iOS-by-providing-a-font.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0005-freetype-added-a-fake-font-lookup-mechanism-for-iOS-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0005-freetype-added-a-fake-font-lookup-mechanism-for-iOS-.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0006-libvlc-add-preliminary-code-path-to-modify-quartztex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0006-libvlc-add-preliminary-code-path-to-modify-quartztex.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0007-contrib-gcrypt-simplify-compilation-by-disabling-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0007-contrib-gcrypt-simplify-compilation-by-disabling-doc.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0008-lib-media-player-inherit-deinterlace-variable-to-ach.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0008-lib-media-player-inherit-deinterlace-variable-to-ach.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0009-arm_neon-work-around-libtool-issue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0009-arm_neon-work-around-libtool-issue.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0010-libvlc-media-re-parse-if-flags-changed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0010-libvlc-media-re-parse-if-flags-changed.patch -------------------------------------------------------------------------------- /MobileVLCKit/patches/0011-disable-neon-volume-plugin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit/patches/0011-disable-neon-volume-plugin.patch -------------------------------------------------------------------------------- /MobileVLCKit_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/MobileVLCKit_Prefix.pch -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/NEWS -------------------------------------------------------------------------------- /Packaging/create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Packaging/create-dmg.sh -------------------------------------------------------------------------------- /Packaging/dmg_setup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Packaging/dmg_setup.scpt -------------------------------------------------------------------------------- /Packaging/mobile_dmg_setup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Packaging/mobile_dmg_setup.scpt -------------------------------------------------------------------------------- /Pre-Compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Pre-Compile.sh -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Resources/version.plist -------------------------------------------------------------------------------- /Sources/VLCAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCAudio.m -------------------------------------------------------------------------------- /Sources/VLCEventManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCEventManager.m -------------------------------------------------------------------------------- /Sources/VLCExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCExtension.m -------------------------------------------------------------------------------- /Sources/VLCExtensionsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCExtensionsManager.m -------------------------------------------------------------------------------- /Sources/VLCLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCLibrary.m -------------------------------------------------------------------------------- /Sources/VLCMedia.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMedia.m -------------------------------------------------------------------------------- /Sources/VLCMediaDiscoverer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaDiscoverer.m -------------------------------------------------------------------------------- /Sources/VLCMediaLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaLibrary.m -------------------------------------------------------------------------------- /Sources/VLCMediaList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaList.m -------------------------------------------------------------------------------- /Sources/VLCMediaListPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaListPlayer.m -------------------------------------------------------------------------------- /Sources/VLCMediaPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaPlayer.m -------------------------------------------------------------------------------- /Sources/VLCMediaThumbnailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCMediaThumbnailer.m -------------------------------------------------------------------------------- /Sources/VLCPlaylistDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCPlaylistDataSource.m -------------------------------------------------------------------------------- /Sources/VLCServicesDiscoverer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCServicesDiscoverer.m -------------------------------------------------------------------------------- /Sources/VLCStreamOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCStreamOutput.m -------------------------------------------------------------------------------- /Sources/VLCStreamSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCStreamSession.m -------------------------------------------------------------------------------- /Sources/VLCTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCTime.m -------------------------------------------------------------------------------- /Sources/VLCVideoCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCVideoCommon.m -------------------------------------------------------------------------------- /Sources/VLCVideoLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCVideoLayer.m -------------------------------------------------------------------------------- /Sources/VLCVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/Sources/VLCVideoView.m -------------------------------------------------------------------------------- /StaticLibVLC/StaticLibVLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/StaticLibVLC/StaticLibVLC.m -------------------------------------------------------------------------------- /VLCKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/VLCKit-Info.plist -------------------------------------------------------------------------------- /VLCKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/VLCKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VLC_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strukturag/VLCKit/HEAD/VLC_Prefix.pch --------------------------------------------------------------------------------