├── .gitignore ├── FFmpeg Decode.jpg ├── FFmpegExamples ├── avio_reading │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── avio_reading.c │ │ ├── avio_reading.h │ │ └── main.m ├── decode_audio │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ └── main.m ├── decode_video │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ └── main.m ├── demuxing_decoding │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ └── main.m ├── encode_audio │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ └── main.m ├── encode_video │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ └── encode_video.h │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── extract_mvs │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ └── extract_mvs.h │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── http_multiclient │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ ├── extract_mvs.h │ │ ├── http_multiclient.c │ │ ├── http_multiclient.h │ │ ├── hw_decode.c │ │ └── hw_decode.h │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── hw_decode │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ ├── extract_mvs.h │ │ ├── hw_decode.c │ │ └── hw_decode.h │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── metadata │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ ├── extract_mvs.h │ │ ├── http_multiclient.c │ │ ├── http_multiclient.h │ │ ├── hw_decode.c │ │ ├── hw_decode.h │ │ ├── metadata.c │ │ └── metadata.h │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── muxing │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ ├── extract_mvs.h │ │ ├── http_multiclient.c │ │ ├── http_multiclient.h │ │ ├── hw_decode.c │ │ ├── hw_decode.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── muxing.c │ │ └── muxing.h │ │ ├── Images │ │ ├── muxing01.png │ │ └── muxing02.jpg │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── scaling_video │ ├── KSMediaPlayer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── saeipi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── KSMediaPlayer.xcscheme │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FFmpeg │ │ ├── decode_audio.c │ │ ├── decode_audio.h │ │ ├── decode_video.c │ │ ├── decode_video.h │ │ ├── demuxing_decoding.c │ │ ├── demuxing_decoding.h │ │ ├── encode_audio.c │ │ ├── encode_audio.h │ │ ├── encode_video.c │ │ ├── encode_video.h │ │ ├── extract_mvs.c │ │ ├── extract_mvs.h │ │ ├── http_multiclient.c │ │ ├── http_multiclient.h │ │ ├── hw_decode.c │ │ ├── hw_decode.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── muxing.c │ │ ├── muxing.h │ │ ├── scaling_video.c │ │ └── scaling_video.h │ │ ├── Images │ │ ├── muxing01.png │ │ └── muxing02.jpg │ │ ├── Info.plist │ │ ├── KSMediaPlayer.entitlements │ │ ├── Tutorial │ │ ├── tutorial01.c │ │ ├── tutorial01.h │ │ ├── tutorial02.c │ │ └── tutorial02.h │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── tutorial01 │ ├── KSMediaPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KSMediaPlayer.xcscheme │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── KSMediaPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── FFmpeg │ ├── decode_audio.c │ ├── decode_audio.h │ ├── decode_video.c │ ├── decode_video.h │ ├── demuxing_decoding.c │ ├── demuxing_decoding.h │ ├── encode_audio.c │ ├── encode_audio.h │ ├── encode_video.c │ ├── encode_video.h │ ├── extract_mvs.c │ ├── extract_mvs.h │ ├── http_multiclient.c │ ├── http_multiclient.h │ ├── hw_decode.c │ ├── hw_decode.h │ ├── metadata.c │ ├── metadata.h │ ├── muxing.c │ ├── muxing.h │ ├── scaling_video.c │ └── scaling_video.h │ ├── Images │ ├── muxing01.png │ └── muxing02.jpg │ ├── Info.plist │ ├── KSMediaPlayer.entitlements │ ├── Tutorial │ └── tutorial01Test │ │ ├── tutorial001.c │ │ ├── tutorial001.h │ │ ├── tutorial01.c │ │ ├── tutorial01.h │ │ ├── tutorial02.c │ │ └── tutorial02.h │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── KSAudioResample ├── KSAudioResample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSAudioResample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSAudioResample-Bridging-Header.h │ ├── KSAudioResample.c │ ├── KSAudioResample.entitlements │ ├── KSAudioResample.h │ └── ViewController.swift ├── KSEncodeAAC ├── KSEncodeAAC.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSEncodeAAC │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSEncodeAAC-Bridging-Header.h │ ├── KSEncodeAAC.c │ ├── KSEncodeAAC.entitlements │ ├── KSEncodeAAC.h │ └── ViewController.swift ├── KSEncodeVideo ├── KSEncodeVideo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSEncodeVideo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSEncodeVideo-Bridging-Header.h │ ├── KSEncodeVideo.entitlements │ ├── ViewController.swift │ ├── ks_encode_video.c │ └── ks_encode_video.h ├── KSMediaPlayer ├── KSMediaPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSMediaPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSMediaPlayer.entitlements │ ├── ViewController.h │ ├── ViewController.m │ ├── ks_media_player.c │ ├── ks_media_player.h │ └── main.m ├── KSMediaPlayerBack ├── KSMediaPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSMediaPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSMediaPlayer.entitlements │ ├── ViewController.h │ ├── ViewController.m │ ├── ks_media_player.c │ ├── ks_media_player.h │ └── main.m ├── KSPlayer ├── KSPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSPlayer │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Resources │ └── Shader │ │ ├── XDXPreviewNV12Shader.fsh │ │ ├── XDXPreviewNV12Shader.vsh │ │ ├── XDXPreviewRGBShader.fsh │ │ └── XDXPreviewRGBShader.vsh │ ├── Scripts │ ├── Classes │ │ ├── AudioPlayer │ │ │ └── Controller │ │ │ │ ├── KSAudioPlayerController.h │ │ │ │ └── KSAudioPlayerController.mm │ │ ├── Base │ │ │ └── Controller │ │ │ │ ├── KSBaseController.h │ │ │ │ └── KSBaseController.m │ │ ├── Main │ │ │ ├── AppDelegate │ │ │ │ ├── AppDelegate.h │ │ │ │ └── AppDelegate.m │ │ │ ├── Controller │ │ │ │ ├── ViewController.h │ │ │ │ └── ViewController.m │ │ │ └── View │ │ │ │ ├── KSMainCell.h │ │ │ │ └── KSMainCell.m │ │ ├── MediaPlayer │ │ │ └── Controller │ │ │ │ ├── KSMediaPlayerController.h │ │ │ │ └── KSMediaPlayerController.mm │ │ └── VideoPlayer │ │ │ └── Controller │ │ │ ├── KSVideoPlayerController.h │ │ │ └── KSVideoPlayerController.m │ ├── Custom │ │ ├── FFmpeg │ │ │ ├── Audio │ │ │ │ ├── AudioPlayer │ │ │ │ │ ├── XDXAudioQueuePlayer.h │ │ │ │ │ ├── XDXAudioQueuePlayer.mm │ │ │ │ │ ├── XDXQueueProcess.h │ │ │ │ │ └── XDXQueueProcess.mm │ │ │ │ └── Decoder │ │ │ │ │ ├── XDXAduioDecoder.h │ │ │ │ │ ├── XDXAduioDecoder.m │ │ │ │ │ ├── XDXFFmpegAudioDecoder.h │ │ │ │ │ └── XDXFFmpegAudioDecoder.mm │ │ │ ├── Parse │ │ │ │ ├── XDXAVParseHandler.h │ │ │ │ └── XDXAVParseHandler.mm │ │ │ ├── Render │ │ │ │ ├── XDXPreviewView.h │ │ │ │ └── XDXPreviewView.mm │ │ │ └── Video │ │ │ │ └── Decoder │ │ │ │ ├── XDXFFmpegVideoDecoder.h │ │ │ │ ├── XDXFFmpegVideoDecoder.mm │ │ │ │ ├── XDXSortFrameHandler.h │ │ │ │ ├── XDXSortFrameHandler.m │ │ │ │ ├── XDXVideoDecoder.h │ │ │ │ └── XDXVideoDecoder.mm │ │ └── Utils │ │ │ └── 3rd │ │ │ ├── XDXSingleton.h │ │ │ └── log4cplus.h │ └── Library │ │ ├── FFmpeg-iOS │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── ac3_parser.h │ │ │ │ ├── adts_parser.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ └── version.h │ │ │ ├── libavformat │ │ │ │ ├── avformat.h │ │ │ │ ├── avio.h │ │ │ │ └── version.h │ │ │ ├── libavutil │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_ctr.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bprint.h │ │ │ │ ├── bswap.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast5.h │ │ │ │ ├── channel_layout.h │ │ │ │ ├── common.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── des.h │ │ │ │ ├── dict.h │ │ │ │ ├── display.h │ │ │ │ ├── downmix_info.h │ │ │ │ ├── encryption_info.h │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ ├── hwcontext_drm.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── rc4.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.h │ │ │ │ ├── spherical.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── tea.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── tx.h │ │ │ │ ├── version.h │ │ │ │ └── xtea.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ └── lib │ │ │ ├── libavcodec.a │ │ │ ├── libavdevice.a │ │ │ ├── libavfilter.a │ │ │ ├── libavformat.a │ │ │ ├── libavutil.a │ │ │ ├── libswresample.a │ │ │ └── libswscale.a │ │ ├── G711 │ │ ├── g711.c │ │ └── g711.h │ │ └── fat-x264 │ │ ├── include │ │ ├── x264.h │ │ └── x264_config.h │ │ └── lib │ │ └── libx264.a │ └── main.m ├── KSPlayerC++ ├── KSPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Scripts │ └── KSPlayer │ │ ├── KSProtocol.h │ │ ├── Process │ │ ├── KSAudioPlay.cpp │ │ ├── KSAudioPlay.h │ │ ├── KSDecode.cpp │ │ ├── KSDecode.h │ │ ├── KSDemux.cpp │ │ ├── KSDemux.h │ │ ├── KSResample.cpp │ │ └── KSResample.h │ │ ├── Threads │ │ ├── KSAudioThread.cpp │ │ ├── KSAudioThread.h │ │ ├── KSDemuxThread.cpp │ │ ├── KSDemuxThread.h │ │ ├── KSMediaThread.cpp │ │ ├── KSMediaThread.h │ │ ├── KSThread.cpp │ │ ├── KSThread.h │ │ ├── KSVideoThread.cpp │ │ └── KSVideoThread.h │ │ └── Widgets │ │ ├── KSPlayerView.h │ │ └── KSPlayerView.m │ ├── ViewController.h │ ├── ViewController.mm │ └── main.m ├── KSVideoPlayer ├── KSVideoPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KSVideoPlayer.xcscheme │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSVideoPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSVideoPlayer.entitlements │ ├── ViewController.h │ ├── ViewController.m │ ├── ks_video_player.c │ ├── ks_video_player.h │ └── main.m ├── LICENSE ├── PlayerNote ├── pcm_player.c ├── player2.c ├── player3.c ├── player4.c ├── player5.c ├── player6.c └── yuv_player.c ├── README.md ├── SixMediaPlayer ├── KSMediaPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KSMediaPlayer.xcscheme │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSMediaPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSMediaPlayer.entitlements │ ├── ViewController.h │ ├── ViewController.m │ ├── ks_media_player.c │ ├── ks_media_player.h │ └── main.m ├── TutorialPlayer ├── KSMediaPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── saeipi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KSMediaPlayer.xcscheme │ └── xcuserdata │ │ └── saeipi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── KSMediaPlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── KSMediaPlayer.entitlements │ ├── Tutorial.md │ ├── ViewController.h │ ├── ViewController.m │ ├── ks_media_player.c │ ├── ks_media_player.h │ └── main.m ├── XPlayer ├── IVideoCall.h ├── XAudioPlay.cpp ├── XAudioPlay.h ├── XAudioThread.cpp ├── XAudioThread.h ├── XDecode.cpp ├── XDecode.h ├── XDecodeThread.cpp ├── XDecodeThread.h ├── XDemux.cpp ├── XDemux.h ├── XDemuxThread.cpp ├── XDemuxThread.h ├── XPlay2.cpp ├── XPlay2.h ├── XPlay2.pri ├── XPlay2.pro ├── XPlay2.pro.user ├── XPlay2.qrc ├── XPlay2.sln ├── XPlay2.ui ├── XPlay2.vcxproj ├── XPlay2.vcxproj.filters ├── XPlay2.vcxproj.user ├── XResample.cpp ├── XResample.h ├── XSlider.cpp ├── XSlider.h ├── XVideoThread.cpp ├── XVideoThread.h ├── XVideoWidget.cpp ├── XVideoWidget.h └── main.cpp ├── examples ├── Makefile ├── README ├── avio_dir_cmd.c ├── avio_reading.c ├── decode_audio.c ├── decode_video.c ├── demuxing_decoding.c ├── encode_audio.c ├── encode_video.c ├── extract_mvs.c ├── filter_audio.c ├── filtering_audio.c ├── filtering_video.c ├── http_multiclient.c ├── hw_decode.c ├── metadata.c ├── muxing.c ├── qsvdec.c ├── remuxing.c ├── resampling_audio.c ├── scaling_video.c ├── transcode_aac.c ├── transcoding.c ├── vaapi_encode.c ├── vaapi_transcode.c └── 音视频同步 │ ├── FFmpeg-Tutorial-CN-master.zip │ ├── FFmpeg-Tutorial-CN-master │ ├── .gitignore │ ├── FFmpeg Tutorial.pdf │ ├── FFmpeg Tutorial.tex │ ├── README.md │ ├── chapter │ │ ├── tutorial00.tex │ │ ├── tutorial01.tex │ │ ├── tutorial02.tex │ │ ├── tutorial03.tex │ │ ├── tutorial04.tex │ │ ├── tutorial05.tex │ │ ├── tutorial06.tex │ │ ├── tutorial07.tex │ │ ├── tutorial08.tex │ │ └── tutorial09.tex │ └── figure │ │ └── FFmpegnewlogo.png │ ├── ffmpegsource.tar.gz │ ├── ffmpegsource │ ├── tutorial01.c │ ├── tutorial02.c │ ├── tutorial03.c │ ├── tutorial04.c │ ├── tutorial05.c │ ├── tutorial06.c │ └── tutorial07.c │ ├── ffmpegtutorial.tar.gz │ └── ffmpegtutorial │ ├── data.txt │ ├── end.txt │ ├── ffmpeg.txt │ ├── functions.txt │ ├── tutorial01.c │ ├── tutorial01.txt │ ├── tutorial02.c │ ├── tutorial02.txt │ ├── tutorial03.c │ ├── tutorial03.txt │ ├── tutorial04.c │ ├── tutorial04.txt │ ├── tutorial05.c │ ├── tutorial05.txt │ ├── tutorial06.c │ ├── tutorial06.txt │ ├── tutorial07.c │ ├── tutorial07.txt │ └── weightedmean.txt └── ffmpeg库配置.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /FFmpeg Decode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpeg Decode.jpg -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/avio_reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/avio_reading.c -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/avio_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/avio_reading.h -------------------------------------------------------------------------------- /FFmpegExamples/avio_reading/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/avio_reading/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_audio/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_audio/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/decode_video/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/decode_video/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/demuxing_decoding/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/demuxing_decoding/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_audio/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_audio/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/encode_video/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/encode_video/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/extract_mvs/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/extract_mvs/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/http_multiclient.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/http_multiclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/http_multiclient.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/http_multiclient/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/http_multiclient/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/hw_decode/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/hw_decode/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/http_multiclient.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/http_multiclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/http_multiclient.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/metadata.c -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/FFmpeg/metadata.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/metadata/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/metadata/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/http_multiclient.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/http_multiclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/http_multiclient.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/metadata.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/metadata.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/muxing.c -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/muxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/FFmpeg/muxing.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Images/muxing01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Images/muxing01.png -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Images/muxing02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Images/muxing02.jpg -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/muxing/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/muxing/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/http_multiclient.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/http_multiclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/http_multiclient.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/metadata.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/metadata.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/muxing.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/muxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/muxing.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/scaling_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/scaling_video.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/scaling_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/FFmpeg/scaling_video.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Images/muxing01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Images/muxing01.png -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Images/muxing02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Images/muxing02.jpg -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial01.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial01.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial02.c -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/Tutorial/tutorial02.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/scaling_video/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/scaling_video/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/decode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/demuxing_decoding.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/demuxing_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/demuxing_decoding.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_audio.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_audio.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_video.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/encode_video.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/extract_mvs.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/extract_mvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/extract_mvs.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/http_multiclient.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/http_multiclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/http_multiclient.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/hw_decode.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/hw_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/hw_decode.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/metadata.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/metadata.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/muxing.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/muxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/muxing.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/scaling_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/scaling_video.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/scaling_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/FFmpeg/scaling_video.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Images/muxing01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Images/muxing01.png -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Images/muxing02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Images/muxing02.jpg -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial001.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial001.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial01.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial01.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial02.c -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/Tutorial/tutorial01Test/tutorial02.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /FFmpegExamples/tutorial01/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/FFmpegExamples/tutorial01/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/AppDelegate.swift -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/Info.plist -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/KSAudioResample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/KSAudioResample-Bridging-Header.h -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/KSAudioResample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/KSAudioResample.c -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/KSAudioResample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/KSAudioResample.entitlements -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/KSAudioResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/KSAudioResample.h -------------------------------------------------------------------------------- /KSAudioResample/KSAudioResample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSAudioResample/KSAudioResample/ViewController.swift -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/AppDelegate.swift -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/Info.plist -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/KSEncodeAAC-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/KSEncodeAAC-Bridging-Header.h -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.c -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.entitlements -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/KSEncodeAAC.h -------------------------------------------------------------------------------- /KSEncodeAAC/KSEncodeAAC/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeAAC/KSEncodeAAC/ViewController.swift -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/AppDelegate.swift -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/Info.plist -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/KSEncodeVideo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/KSEncodeVideo-Bridging-Header.h -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/KSEncodeVideo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/KSEncodeVideo.entitlements -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/ViewController.swift -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/ks_encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/ks_encode_video.c -------------------------------------------------------------------------------- /KSEncodeVideo/KSEncodeVideo/ks_encode_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSEncodeVideo/KSEncodeVideo/ks_encode_video.h -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/ks_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/ks_media_player.c -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/ks_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/ks_media_player.h -------------------------------------------------------------------------------- /KSMediaPlayer/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayer/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/ks_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/ks_media_player.c -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/ks_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/ks_media_player.h -------------------------------------------------------------------------------- /KSMediaPlayerBack/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSMediaPlayerBack/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSPlayer/KSPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSPlayer/KSPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Info.plist -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Resources/Shader/XDXPreviewNV12Shader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Resources/Shader/XDXPreviewNV12Shader.fsh -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Resources/Shader/XDXPreviewNV12Shader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Resources/Shader/XDXPreviewNV12Shader.vsh -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Resources/Shader/XDXPreviewRGBShader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Resources/Shader/XDXPreviewRGBShader.fsh -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Resources/Shader/XDXPreviewRGBShader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Resources/Shader/XDXPreviewRGBShader.vsh -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/AudioPlayer/Controller/KSAudioPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/AudioPlayer/Controller/KSAudioPlayerController.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/AudioPlayer/Controller/KSAudioPlayerController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/AudioPlayer/Controller/KSAudioPlayerController.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Base/Controller/KSBaseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Base/Controller/KSBaseController.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Base/Controller/KSBaseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Base/Controller/KSBaseController.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/Controller/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/Controller/ViewController.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/Controller/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/Controller/ViewController.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/View/KSMainCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/View/KSMainCell.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/Main/View/KSMainCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/Main/View/KSMainCell.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/MediaPlayer/Controller/KSMediaPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/MediaPlayer/Controller/KSMediaPlayerController.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/MediaPlayer/Controller/KSMediaPlayerController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/MediaPlayer/Controller/KSMediaPlayerController.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/VideoPlayer/Controller/KSVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/VideoPlayer/Controller/KSVideoPlayerController.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Classes/VideoPlayer/Controller/KSVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Classes/VideoPlayer/Controller/KSVideoPlayerController.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXAudioQueuePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXAudioQueuePlayer.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXAudioQueuePlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXAudioQueuePlayer.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXQueueProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXQueueProcess.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXQueueProcess.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/AudioPlayer/XDXQueueProcess.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXAduioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXAduioDecoder.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXAduioDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXAduioDecoder.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXFFmpegAudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXFFmpegAudioDecoder.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXFFmpegAudioDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Audio/Decoder/XDXFFmpegAudioDecoder.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Parse/XDXAVParseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Parse/XDXAVParseHandler.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Parse/XDXAVParseHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Parse/XDXAVParseHandler.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Render/XDXPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Render/XDXPreviewView.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Render/XDXPreviewView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Render/XDXPreviewView.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXFFmpegVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXFFmpegVideoDecoder.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXFFmpegVideoDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXFFmpegVideoDecoder.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXSortFrameHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXSortFrameHandler.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXSortFrameHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXSortFrameHandler.m -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXVideoDecoder.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXVideoDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/FFmpeg/Video/Decoder/XDXVideoDecoder.mm -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/Utils/3rd/XDXSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/Utils/3rd/XDXSingleton.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Custom/Utils/3rd/log4cplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Custom/Utils/3rd/log4cplus.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/jni.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavdevice/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavfilter/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/avformat.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/avio.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavformat/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/adler32.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/aes.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/attributes.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avassert.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avstring.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/avutil.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/base64.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/bprint.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/bswap.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/buffer.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/camellia.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/cast5.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/common.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/cpu.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/crc.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/des.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/dict.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/display.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/error.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/eval.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/fifo.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/file.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/frame.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hash.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hdr_dynamic_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hdr_dynamic_metadata.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hmac.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/lfg.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/log.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/lzo.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/macros.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/md5.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/mem.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/opt.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/rational.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/rc4.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/sha.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/sha512.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/spherical.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tea.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/time.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/timecode.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tree.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/twofish.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/tx.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libavutil/xtea.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswresample/swresample.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswresample/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswscale/swscale.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/include/libswscale/version.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavcodec.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavdevice.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavfilter.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavformat.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libavutil.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libswresample.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/FFmpeg-iOS/lib/libswscale.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/G711/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/G711/g711.c -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/G711/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/G711/g711.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/fat-x264/include/x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/fat-x264/include/x264.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/fat-x264/include/x264_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/fat-x264/include/x264_config.h -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/Scripts/Library/fat-x264/lib/libx264.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/Scripts/Library/fat-x264/lib/libx264.a -------------------------------------------------------------------------------- /KSPlayer/KSPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayer/KSPlayer/main.m -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/AppDelegate.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/AppDelegate.m -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Info.plist -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/KSProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/KSProtocol.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSAudioPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSAudioPlay.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSAudioPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSAudioPlay.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDecode.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDecode.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDemux.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDemux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSDemux.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSResample.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Process/KSResample.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSAudioThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSAudioThread.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSAudioThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSAudioThread.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSDemuxThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSDemuxThread.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSDemuxThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSDemuxThread.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSMediaThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSMediaThread.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSMediaThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSMediaThread.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSThread.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSThread.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSVideoThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSVideoThread.cpp -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSVideoThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Threads/KSVideoThread.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Widgets/KSPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Widgets/KSPlayerView.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/Scripts/KSPlayer/Widgets/KSPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/Scripts/KSPlayer/Widgets/KSPlayerView.m -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/ViewController.h -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/ViewController.mm -------------------------------------------------------------------------------- /KSPlayerC++/KSPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSPlayerC++/KSPlayer/main.m -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer.xcodeproj/xcshareddata/xcschemes/KSVideoPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer.xcodeproj/xcshareddata/xcschemes/KSVideoPlayer.xcscheme -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/AppDelegate.h -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/AppDelegate.m -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/Info.plist -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/KSVideoPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/KSVideoPlayer.entitlements -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/ViewController.h -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/ViewController.m -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/ks_video_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/ks_video_player.c -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/ks_video_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/ks_video_player.h -------------------------------------------------------------------------------- /KSVideoPlayer/KSVideoPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/KSVideoPlayer/KSVideoPlayer/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayerNote/pcm_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/pcm_player.c -------------------------------------------------------------------------------- /PlayerNote/player2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/player2.c -------------------------------------------------------------------------------- /PlayerNote/player3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/player3.c -------------------------------------------------------------------------------- /PlayerNote/player4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/player4.c -------------------------------------------------------------------------------- /PlayerNote/player5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/player5.c -------------------------------------------------------------------------------- /PlayerNote/player6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/player6.c -------------------------------------------------------------------------------- /PlayerNote/yuv_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/PlayerNote/yuv_player.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/README.md -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer.xcodeproj/xcshareddata/xcschemes/KSMediaPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer.xcodeproj/xcshareddata/xcschemes/KSMediaPlayer.xcscheme -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/ks_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/ks_media_player.c -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/ks_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/ks_media_player.h -------------------------------------------------------------------------------- /SixMediaPlayer/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/SixMediaPlayer/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer.xcodeproj/xcshareddata/xcschemes/KSMediaPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer.xcodeproj/xcshareddata/xcschemes/KSMediaPlayer.xcscheme -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/AppDelegate.h -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/AppDelegate.m -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/Info.plist -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/KSMediaPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/KSMediaPlayer.entitlements -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/Tutorial.md -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/ViewController.h -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/ViewController.m -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/ks_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/ks_media_player.c -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/ks_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/ks_media_player.h -------------------------------------------------------------------------------- /TutorialPlayer/KSMediaPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/TutorialPlayer/KSMediaPlayer/main.m -------------------------------------------------------------------------------- /XPlayer/IVideoCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/IVideoCall.h -------------------------------------------------------------------------------- /XPlayer/XAudioPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XAudioPlay.cpp -------------------------------------------------------------------------------- /XPlayer/XAudioPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XAudioPlay.h -------------------------------------------------------------------------------- /XPlayer/XAudioThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XAudioThread.cpp -------------------------------------------------------------------------------- /XPlayer/XAudioThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XAudioThread.h -------------------------------------------------------------------------------- /XPlayer/XDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDecode.cpp -------------------------------------------------------------------------------- /XPlayer/XDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDecode.h -------------------------------------------------------------------------------- /XPlayer/XDecodeThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDecodeThread.cpp -------------------------------------------------------------------------------- /XPlayer/XDecodeThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDecodeThread.h -------------------------------------------------------------------------------- /XPlayer/XDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDemux.cpp -------------------------------------------------------------------------------- /XPlayer/XDemux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDemux.h -------------------------------------------------------------------------------- /XPlayer/XDemuxThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDemuxThread.cpp -------------------------------------------------------------------------------- /XPlayer/XDemuxThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XDemuxThread.h -------------------------------------------------------------------------------- /XPlayer/XPlay2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.cpp -------------------------------------------------------------------------------- /XPlayer/XPlay2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.h -------------------------------------------------------------------------------- /XPlayer/XPlay2.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.pri -------------------------------------------------------------------------------- /XPlayer/XPlay2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.pro -------------------------------------------------------------------------------- /XPlayer/XPlay2.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.pro.user -------------------------------------------------------------------------------- /XPlayer/XPlay2.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.qrc -------------------------------------------------------------------------------- /XPlayer/XPlay2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.sln -------------------------------------------------------------------------------- /XPlayer/XPlay2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.ui -------------------------------------------------------------------------------- /XPlayer/XPlay2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.vcxproj -------------------------------------------------------------------------------- /XPlayer/XPlay2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.vcxproj.filters -------------------------------------------------------------------------------- /XPlayer/XPlay2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XPlay2.vcxproj.user -------------------------------------------------------------------------------- /XPlayer/XResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XResample.cpp -------------------------------------------------------------------------------- /XPlayer/XResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XResample.h -------------------------------------------------------------------------------- /XPlayer/XSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XSlider.cpp -------------------------------------------------------------------------------- /XPlayer/XSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XSlider.h -------------------------------------------------------------------------------- /XPlayer/XVideoThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XVideoThread.cpp -------------------------------------------------------------------------------- /XPlayer/XVideoThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XVideoThread.h -------------------------------------------------------------------------------- /XPlayer/XVideoWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XVideoWidget.cpp -------------------------------------------------------------------------------- /XPlayer/XVideoWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/XVideoWidget.h -------------------------------------------------------------------------------- /XPlayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/XPlayer/main.cpp -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/README -------------------------------------------------------------------------------- /examples/avio_dir_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/avio_dir_cmd.c -------------------------------------------------------------------------------- /examples/avio_reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/avio_reading.c -------------------------------------------------------------------------------- /examples/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/decode_audio.c -------------------------------------------------------------------------------- /examples/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/decode_video.c -------------------------------------------------------------------------------- /examples/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/demuxing_decoding.c -------------------------------------------------------------------------------- /examples/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/encode_audio.c -------------------------------------------------------------------------------- /examples/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/encode_video.c -------------------------------------------------------------------------------- /examples/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/extract_mvs.c -------------------------------------------------------------------------------- /examples/filter_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/filter_audio.c -------------------------------------------------------------------------------- /examples/filtering_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/filtering_audio.c -------------------------------------------------------------------------------- /examples/filtering_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/filtering_video.c -------------------------------------------------------------------------------- /examples/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/http_multiclient.c -------------------------------------------------------------------------------- /examples/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/hw_decode.c -------------------------------------------------------------------------------- /examples/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/metadata.c -------------------------------------------------------------------------------- /examples/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/muxing.c -------------------------------------------------------------------------------- /examples/qsvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/qsvdec.c -------------------------------------------------------------------------------- /examples/remuxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/remuxing.c -------------------------------------------------------------------------------- /examples/resampling_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/resampling_audio.c -------------------------------------------------------------------------------- /examples/scaling_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/scaling_video.c -------------------------------------------------------------------------------- /examples/transcode_aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/transcode_aac.c -------------------------------------------------------------------------------- /examples/transcoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/transcoding.c -------------------------------------------------------------------------------- /examples/vaapi_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/vaapi_encode.c -------------------------------------------------------------------------------- /examples/vaapi_transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/vaapi_transcode.c -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master.zip -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/.gitignore -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/FFmpeg Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/FFmpeg Tutorial.pdf -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/FFmpeg Tutorial.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/FFmpeg Tutorial.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/README.md -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial00.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial00.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial01.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial02.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial03.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial03.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial04.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial04.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial05.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial05.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial06.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial06.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial07.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial07.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial08.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial08.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial09.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/chapter/tutorial09.tex -------------------------------------------------------------------------------- /examples/音视频同步/FFmpeg-Tutorial-CN-master/figure/FFmpegnewlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/FFmpeg-Tutorial-CN-master/figure/FFmpegnewlogo.png -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource.tar.gz -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial01.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial02.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial03.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial04.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial05.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial06.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegsource/tutorial07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegsource/tutorial07.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial.tar.gz -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/data.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/end.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/ffmpeg.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/functions.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial01.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial01.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial02.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial02.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial03.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial03.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial04.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial04.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial05.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial05.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial06.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial06.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial07.c -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/tutorial07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/tutorial07.txt -------------------------------------------------------------------------------- /examples/音视频同步/ffmpegtutorial/weightedmean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/examples/音视频同步/ffmpegtutorial/weightedmean.txt -------------------------------------------------------------------------------- /ffmpeg库配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevtin/KSFFmpeg/HEAD/ffmpeg库配置.png --------------------------------------------------------------------------------