├── JDCFFMedia ├── jdc_media_player.c ├── jdc_media_player.h ├── jdc_sdl.c ├── jdc_sdl.h ├── jdc_sdl_queue.c ├── jdc_sdl_queue.h ├── jdc_video_frame.c └── jdc_video_frame.h ├── JDCFFPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Jidong.xcuserdatad │ └── xcschemes │ └── JDCFFPlayer.xcscheme ├── JDCFFPlayer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── main.m └── tutorial03.m ├── JDCFFPlayerTests ├── Info.plist └── JDCFFPlayerTests.m ├── README.md ├── SDL2-2.0.5 ├── Android.mk ├── BUGS.txt ├── CMakeLists.txt ├── COPYING.txt ├── CREDITS.txt ├── INSTALL.txt ├── Makefile.in ├── Makefile.minimal ├── Makefile.pandora ├── Makefile.psp ├── Makefile.wiz ├── README-SDL.txt ├── README.txt ├── SDL2.spec ├── SDL2.spec.in ├── TODO.txt ├── VisualC-WinRT │ ├── SDL2-WinRT.nuspec │ ├── SDL2-WinRT.targets │ ├── SDL2main-WinRT-NonXAML.nuspec │ ├── SDL2main-WinRT-NonXAML.targets │ ├── UWP_VS2015 │ │ ├── SDL-UWP.vcxproj │ │ └── SDL-UWP.vcxproj.filters │ ├── WinPhone80_VS2012 │ │ ├── SDL-WinPhone80.vcxproj │ │ └── SDL-WinPhone80.vcxproj.filters │ ├── WinPhone81_VS2013 │ │ ├── SDL-WinPhone81.vcxproj │ │ └── SDL-WinPhone81.vcxproj.filters │ ├── WinRT80_VS2012 │ │ ├── SDL-WinRT80.sln │ │ ├── SDL-WinRT80.vcxproj │ │ └── SDL-WinRT80.vcxproj.filters │ ├── WinRT81_VS2013 │ │ ├── SDL-WinRT81.vcxproj │ │ └── SDL-WinRT81.vcxproj.filters │ └── tests │ │ ├── loopwave │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── Package.appxmanifest │ │ ├── loopwave_VS2012.vcxproj │ │ └── loopwave_VS2012_TemporaryKey.pfx │ │ └── testthread │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── Package.appxmanifest │ │ ├── testthread_VS2012.vcxproj │ │ └── testthread_VS2012_TemporaryKey.pfx ├── VisualC.html ├── VisualC │ ├── SDL.sln │ ├── SDL │ │ ├── SDL.vcxproj │ │ ├── SDL.vcxproj.filters │ │ └── SDL_VS2008.vcproj │ ├── SDL_VS2008.sln │ ├── SDLmain │ │ ├── SDLmain.vcxproj │ │ └── SDLmain_VS2008.vcproj │ ├── SDLtest │ │ ├── SDLtest.vcxproj │ │ └── SDLtest_VS2008.vcproj │ ├── clean.sh │ ├── tests │ │ ├── checkkeys │ │ │ ├── checkkeys.vcxproj │ │ │ └── checkkeys_VS2008.vcproj │ │ ├── controllermap │ │ │ ├── controllermap.vcxproj │ │ │ └── controllermap_VS2008.vcproj │ │ ├── loopwave │ │ │ ├── loopwave.vcxproj │ │ │ └── loopwave_VS2008.vcproj │ │ ├── testatomic │ │ │ ├── testatomic.vcxproj │ │ │ └── testatomic_VS2008.vcproj │ │ ├── testautomation │ │ │ ├── testautomation.vcxproj │ │ │ └── testautomation_VS2008.vcproj │ │ ├── testdraw2 │ │ │ ├── testdraw2.vcxproj │ │ │ └── testdraw2_VS2008.vcproj │ │ ├── testfile │ │ │ ├── testfile.vcxproj │ │ │ └── testfile_VS2008.vcproj │ │ ├── testgamecontroller │ │ │ ├── testgamecontroller.vcxproj │ │ │ └── testgamecontroller_VS2008.vcproj │ │ ├── testgesture │ │ │ ├── testgesture.vcxproj │ │ │ └── testgesture_VS2008.vcproj │ │ ├── testgl2 │ │ │ ├── testgl2.vcxproj │ │ │ └── testgl2_VS2008.vcproj │ │ ├── testgles2 │ │ │ ├── testgles2.vcxproj │ │ │ └── testgles2_VS2008.vcproj │ │ ├── testjoystick │ │ │ ├── testjoystick.vcxproj │ │ │ └── testjoystick_VS2008.vcproj │ │ ├── testoverlay2 │ │ │ ├── testoverlay2.vcxproj │ │ │ └── testoverlay2_VS2008.vcproj │ │ ├── testplatform │ │ │ ├── testplatform.vcxproj │ │ │ └── testplatform_VS2008.vcproj │ │ ├── testpower │ │ │ ├── testpower.vcxproj │ │ │ └── testpower_VS2008.vcproj │ │ ├── testrendertarget │ │ │ ├── testrendertarget.vcxproj │ │ │ └── testrendertarget_VS2008.vcproj │ │ ├── testrumble │ │ │ ├── testrumble.vcxproj │ │ │ └── testrumble_VS2008.vcproj │ │ ├── testscale │ │ │ ├── testscale.vcxproj │ │ │ └── testscale_VS2008.vcproj │ │ ├── testshape │ │ │ ├── testshape.vcxproj │ │ │ └── testshape_VS2008.vcproj │ │ └── testsprite2 │ │ │ ├── testsprite2.vcxproj │ │ │ └── testsprite2_VS2008.vcproj │ └── visualtest │ │ ├── unittest │ │ └── testquit │ │ │ └── testquit_VS2012.vcxproj │ │ └── visualtest_VS2012.vcxproj ├── WhatsNew.txt ├── Xcode-iOS │ ├── Demos │ │ ├── Default.png │ │ ├── Demos.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Jidong.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Accel.xcscheme │ │ │ │ ├── Fireworks.xcscheme │ │ │ │ ├── Happy-TV.xcscheme │ │ │ │ ├── Happy.xcscheme │ │ │ │ ├── Keyboard.xcscheme │ │ │ │ ├── Mixer.xcscheme │ │ │ │ ├── Rectangles.xcscheme │ │ │ │ └── Touch.xcscheme │ │ ├── Icon.png │ │ ├── Info.plist │ │ ├── README │ │ ├── data │ │ │ ├── bitmapfont │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ └── license.txt │ │ │ ├── drums │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ ├── ds_china.wav │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ ├── icon.bmp │ │ │ ├── ship.bmp │ │ │ ├── space.bmp │ │ │ └── stroke.bmp │ │ ├── iOS Launch Screen.storyboard │ │ └── src │ │ │ ├── accelerometer.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── fireworks.c │ │ │ ├── happy.c │ │ │ ├── keyboard.c │ │ │ ├── mixer.c │ │ │ ├── rectangles.c │ │ │ └── touch.c │ ├── SDL │ │ └── SDL.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ └── Jidong.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── PrepareXcodeProjectTemplate.xcscheme │ │ │ ├── libSDL-tv.xcscheme │ │ │ └── libSDL.xcscheme │ ├── SDLtest │ │ └── SDL2test.xcodeproj │ │ │ └── project.pbxproj │ ├── Template │ │ └── SDL iOS Application │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Icon.png │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── TemplateInfo.plist │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Jidong.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── ___PROJECTNAME___.xcscheme │ │ │ └── main.c │ └── Test │ │ ├── Info.plist │ │ ├── README │ │ └── TestiPhoneOS.xcodeproj │ │ └── project.pbxproj ├── Xcode │ ├── SDL │ │ ├── Info-Framework.plist │ │ ├── SDL.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Jidong.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Framework.xcscheme │ │ │ │ ├── Shared Library.xcscheme │ │ │ │ ├── Standard DMG.xcscheme │ │ │ │ └── Static Library.xcscheme │ │ └── pkg-support │ │ │ ├── SDL.info │ │ │ ├── resources │ │ │ ├── License.txt │ │ │ ├── ReadMe.txt │ │ │ └── SDL_DS_Store │ │ │ └── sdl_logo.pdf │ ├── SDLTest │ │ ├── SDLTest.xcodeproj │ │ │ └── project.pbxproj │ │ └── TestDropFile-Info.plist │ └── XcodeDocSet │ │ └── Doxyfile ├── acinclude │ ├── ac_check_define.m4 │ ├── alsa.m4 │ ├── ax_check_compiler_flags.m4 │ ├── ax_gcc_archflag.m4 │ ├── ax_gcc_x86_cpuid.m4.htm │ ├── esd.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── android-project │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.properties │ ├── build.xml │ ├── default.properties │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── src │ │ │ ├── Android.mk │ │ │ └── Android_static.mk │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── libsdl │ │ └── app │ │ └── SDLActivity.java ├── autogen.sh ├── build-scripts │ ├── androidbuild.sh │ ├── checker-buildbot.sh │ ├── config.guess │ ├── config.sub │ ├── emscripten-buildbot.sh │ ├── g++-fat.sh │ ├── gcc-fat.sh │ ├── install-sh │ ├── iosbuild.sh │ ├── ltmain.sh │ ├── mkinstalldirs │ ├── nacl-buildbot.sh │ ├── naclbuild.sh │ ├── raspberrypi-buildbot.sh │ ├── showrev.sh │ ├── strip_fPIC.sh │ ├── update-copyright.sh │ ├── updaterev.sh │ ├── windows-buildbot-zipper.bat │ ├── winrtbuild.bat │ └── winrtbuild.ps1 ├── cmake │ ├── macros.cmake │ └── sdlchecks.cmake ├── cmake_uninstall.cmake.in ├── configure ├── configure.in ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libsdl2-dev.install │ ├── libsdl2-dev.manpages │ ├── libsdl2.install │ ├── rules │ ├── sdl2-config.1 │ ├── source │ │ └── format │ └── watch ├── docs │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gesture.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-linux.md │ ├── README-macosx.md │ ├── README-nacl.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-touch.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ └── doxyfile ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config.h.cmake │ ├── SDL_config.h.in │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_pandora.h │ ├── SDL_config_psp.h │ ├── SDL_config_windows.h │ ├── SDL_config_winrt.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.h ├── sdl2-config.cmake.in ├── sdl2-config.in ├── sdl2.m4 ├── sdl2.pc.in ├── src │ ├── SDL.c │ ├── SDL_assert.c │ ├── SDL_assert_c.h │ ├── SDL_error.c │ ├── SDL_error_c.h │ ├── SDL_hints.c │ ├── SDL_internal.h │ ├── SDL_log.c │ ├── atomic │ │ ├── SDL_atomic.c │ │ └── SDL_spinlock.c │ ├── audio │ │ ├── SDL_audio.c │ │ ├── SDL_audio_c.h │ │ ├── SDL_audiocvt.c │ │ ├── SDL_audiodev.c │ │ ├── SDL_audiodev_c.h │ │ ├── SDL_audiotypecvt.c │ │ ├── SDL_mixer.c │ │ ├── SDL_sysaudio.h │ │ ├── SDL_wave.c │ │ ├── SDL_wave.h │ │ ├── alsa │ │ │ ├── SDL_alsa_audio.c │ │ │ └── SDL_alsa_audio.h │ │ ├── android │ │ │ ├── SDL_androidaudio.c │ │ │ └── SDL_androidaudio.h │ │ ├── arts │ │ │ ├── SDL_artsaudio.c │ │ │ └── SDL_artsaudio.h │ │ ├── bsd │ │ │ ├── SDL_bsdaudio.c │ │ │ └── SDL_bsdaudio.h │ │ ├── coreaudio │ │ │ ├── SDL_coreaudio.h │ │ │ └── SDL_coreaudio.m │ │ ├── directsound │ │ │ ├── SDL_directsound.c │ │ │ └── SDL_directsound.h │ │ ├── disk │ │ │ ├── SDL_diskaudio.c │ │ │ └── SDL_diskaudio.h │ │ ├── dsp │ │ │ ├── SDL_dspaudio.c │ │ │ └── SDL_dspaudio.h │ │ ├── dummy │ │ │ ├── SDL_dummyaudio.c │ │ │ └── SDL_dummyaudio.h │ │ ├── emscripten │ │ │ ├── SDL_emscriptenaudio.c │ │ │ └── SDL_emscriptenaudio.h │ │ ├── esd │ │ │ ├── SDL_esdaudio.c │ │ │ └── SDL_esdaudio.h │ │ ├── fusionsound │ │ │ ├── SDL_fsaudio.c │ │ │ └── SDL_fsaudio.h │ │ ├── haiku │ │ │ ├── SDL_haikuaudio.cc │ │ │ └── SDL_haikuaudio.h │ │ ├── nacl │ │ │ ├── SDL_naclaudio.c │ │ │ └── SDL_naclaudio.h │ │ ├── nas │ │ │ ├── SDL_nasaudio.c │ │ │ └── SDL_nasaudio.h │ │ ├── paudio │ │ │ ├── SDL_paudio.c │ │ │ └── SDL_paudio.h │ │ ├── psp │ │ │ ├── SDL_pspaudio.c │ │ │ └── SDL_pspaudio.h │ │ ├── pulseaudio │ │ │ ├── SDL_pulseaudio.c │ │ │ └── SDL_pulseaudio.h │ │ ├── qsa │ │ │ ├── SDL_qsa_audio.c │ │ │ └── SDL_qsa_audio.h │ │ ├── sdlgenaudiocvt.pl │ │ ├── sndio │ │ │ ├── SDL_sndioaudio.c │ │ │ └── SDL_sndioaudio.h │ │ ├── sun │ │ │ ├── SDL_sunaudio.c │ │ │ └── SDL_sunaudio.h │ │ ├── winmm │ │ │ ├── SDL_winmm.c │ │ │ └── SDL_winmm.h │ │ └── xaudio2 │ │ │ ├── SDL_xaudio2.c │ │ │ ├── SDL_xaudio2.h │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ └── SDL_xaudio2_winrthelpers.h │ ├── core │ │ ├── android │ │ │ ├── SDL_android.c │ │ │ └── SDL_android.h │ │ ├── linux │ │ │ ├── SDL_dbus.c │ │ │ ├── SDL_dbus.h │ │ │ ├── SDL_evdev.c │ │ │ ├── SDL_evdev.h │ │ │ ├── SDL_fcitx.c │ │ │ ├── SDL_fcitx.h │ │ │ ├── SDL_ibus.c │ │ │ ├── SDL_ibus.h │ │ │ ├── SDL_ime.c │ │ │ ├── SDL_ime.h │ │ │ ├── SDL_udev.c │ │ │ └── SDL_udev.h │ │ ├── windows │ │ │ ├── SDL_directx.h │ │ │ ├── SDL_windows.c │ │ │ ├── SDL_windows.h │ │ │ ├── SDL_xinput.c │ │ │ └── SDL_xinput.h │ │ └── winrt │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ ├── SDL_winrtapp_common.h │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ └── SDL_winrtapp_xaml.h │ ├── cpuinfo │ │ └── SDL_cpuinfo.c │ ├── dynapi │ │ ├── SDL_dynapi.c │ │ ├── SDL_dynapi.h │ │ ├── SDL_dynapi_overrides.h │ │ ├── SDL_dynapi_procs.h │ │ └── gendynapi.pl │ ├── events │ │ ├── SDL_clipboardevents.c │ │ ├── SDL_clipboardevents_c.h │ │ ├── SDL_dropevents.c │ │ ├── SDL_dropevents_c.h │ │ ├── SDL_events.c │ │ ├── SDL_events_c.h │ │ ├── SDL_gesture.c │ │ ├── SDL_gesture_c.h │ │ ├── SDL_keyboard.c │ │ ├── SDL_keyboard_c.h │ │ ├── SDL_mouse.c │ │ ├── SDL_mouse_c.h │ │ ├── SDL_quit.c │ │ ├── SDL_sysevents.h │ │ ├── SDL_touch.c │ │ ├── SDL_touch_c.h │ │ ├── SDL_windowevents.c │ │ ├── SDL_windowevents_c.h │ │ ├── blank_cursor.h │ │ ├── default_cursor.h │ │ ├── scancodes_darwin.h │ │ ├── scancodes_linux.h │ │ ├── scancodes_windows.h │ │ └── scancodes_xfree86.h │ ├── file │ │ ├── SDL_rwops.c │ │ └── cocoa │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ └── SDL_rwopsbundlesupport.m │ ├── filesystem │ │ ├── android │ │ │ └── SDL_sysfilesystem.c │ │ ├── cocoa │ │ │ └── SDL_sysfilesystem.m │ │ ├── dummy │ │ │ └── SDL_sysfilesystem.c │ │ ├── emscripten │ │ │ └── SDL_sysfilesystem.c │ │ ├── haiku │ │ │ └── SDL_sysfilesystem.cc │ │ ├── nacl │ │ │ └── SDL_sysfilesystem.c │ │ ├── unix │ │ │ └── SDL_sysfilesystem.c │ │ ├── windows │ │ │ └── SDL_sysfilesystem.c │ │ └── winrt │ │ │ └── SDL_sysfilesystem.cpp │ ├── haptic │ │ ├── SDL_haptic.c │ │ ├── SDL_haptic_c.h │ │ ├── SDL_syshaptic.h │ │ ├── darwin │ │ │ ├── SDL_syshaptic.c │ │ │ └── SDL_syshaptic_c.h │ │ ├── dummy │ │ │ └── SDL_syshaptic.c │ │ ├── linux │ │ │ └── SDL_syshaptic.c │ │ └── windows │ │ │ ├── SDL_dinputhaptic.c │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ ├── SDL_windowshaptic.c │ │ │ ├── SDL_windowshaptic_c.h │ │ │ ├── SDL_xinputhaptic.c │ │ │ └── SDL_xinputhaptic_c.h │ ├── joystick │ │ ├── SDL_gamecontroller.c │ │ ├── SDL_gamecontrollerdb.h │ │ ├── SDL_joystick.c │ │ ├── SDL_joystick_c.h │ │ ├── SDL_sysjoystick.h │ │ ├── android │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── bsd │ │ │ └── SDL_sysjoystick.c │ │ ├── darwin │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── dummy │ │ │ └── SDL_sysjoystick.c │ │ ├── emscripten │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── haiku │ │ │ └── SDL_haikujoystick.cc │ │ ├── iphoneos │ │ │ ├── SDL_sysjoystick.m │ │ │ └── SDL_sysjoystick_c.h │ │ ├── linux │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── psp │ │ │ └── SDL_sysjoystick.c │ │ ├── sort_controllers.py │ │ └── windows │ │ │ ├── SDL_dinputjoystick.c │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ ├── SDL_mmjoystick.c │ │ │ ├── SDL_windowsjoystick.c │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ ├── SDL_xinputjoystick.c │ │ │ └── SDL_xinputjoystick_c.h │ ├── libm │ │ ├── e_atan2.c │ │ ├── e_log.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_sqrt.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── math_libm.h │ │ ├── math_private.h │ │ ├── s_atan.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_fabs.c │ │ ├── s_floor.c │ │ ├── s_scalbn.c │ │ ├── s_sin.c │ │ └── s_tan.c │ ├── loadso │ │ ├── dlopen │ │ │ └── SDL_sysloadso.c │ │ ├── dummy │ │ │ └── SDL_sysloadso.c │ │ ├── haiku │ │ │ └── SDL_sysloadso.c │ │ └── windows │ │ │ └── SDL_sysloadso.c │ ├── main │ │ ├── android │ │ │ └── SDL_android_main.c │ │ ├── dummy │ │ │ └── SDL_dummy_main.c │ │ ├── haiku │ │ │ ├── SDL_BApp.h │ │ │ ├── SDL_BeApp.cc │ │ │ └── SDL_BeApp.h │ │ ├── nacl │ │ │ └── SDL_nacl_main.c │ │ ├── psp │ │ │ └── SDL_psp_main.c │ │ ├── windows │ │ │ ├── SDL_windows_main.c │ │ │ └── version.rc │ │ └── winrt │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ ├── SDL2-WinRTResources.rc │ │ │ └── SDL_winrt_main_NonXAML.cpp │ ├── power │ │ ├── SDL_power.c │ │ ├── android │ │ │ └── SDL_syspower.c │ │ ├── emscripten │ │ │ └── SDL_syspower.c │ │ ├── haiku │ │ │ └── SDL_syspower.c │ │ ├── linux │ │ │ └── SDL_syspower.c │ │ ├── macosx │ │ │ └── SDL_syspower.c │ │ ├── psp │ │ │ └── SDL_syspower.c │ │ ├── uikit │ │ │ ├── SDL_syspower.h │ │ │ └── SDL_syspower.m │ │ ├── windows │ │ │ └── SDL_syspower.c │ │ └── winrt │ │ │ └── SDL_syspower.cpp │ ├── render │ │ ├── SDL_d3dmath.c │ │ ├── SDL_d3dmath.h │ │ ├── SDL_render.c │ │ ├── SDL_sysrender.h │ │ ├── SDL_yuv_mmx.c │ │ ├── SDL_yuv_sw.c │ │ ├── SDL_yuv_sw_c.h │ │ ├── direct3d │ │ │ └── SDL_render_d3d.c │ │ ├── direct3d11 │ │ │ ├── SDL_render_d3d11.c │ │ │ ├── SDL_render_winrt.cpp │ │ │ └── SDL_render_winrt.h │ │ ├── mmx.h │ │ ├── opengl │ │ │ ├── SDL_glfuncs.h │ │ │ ├── SDL_render_gl.c │ │ │ ├── SDL_shaders_gl.c │ │ │ └── SDL_shaders_gl.h │ │ ├── opengles │ │ │ ├── SDL_glesfuncs.h │ │ │ └── SDL_render_gles.c │ │ ├── opengles2 │ │ │ ├── SDL_gles2funcs.h │ │ │ ├── SDL_render_gles2.c │ │ │ ├── SDL_shaders_gles2.c │ │ │ └── SDL_shaders_gles2.h │ │ ├── psp │ │ │ └── SDL_render_psp.c │ │ └── software │ │ │ ├── SDL_blendfillrect.c │ │ │ ├── SDL_blendfillrect.h │ │ │ ├── SDL_blendline.c │ │ │ ├── SDL_blendline.h │ │ │ ├── SDL_blendpoint.c │ │ │ ├── SDL_blendpoint.h │ │ │ ├── SDL_draw.h │ │ │ ├── SDL_drawline.c │ │ │ ├── SDL_drawline.h │ │ │ ├── SDL_drawpoint.c │ │ │ ├── SDL_drawpoint.h │ │ │ ├── SDL_render_sw.c │ │ │ ├── SDL_render_sw_c.h │ │ │ ├── SDL_rotate.c │ │ │ └── SDL_rotate.h │ ├── stdlib │ │ ├── SDL_getenv.c │ │ ├── SDL_iconv.c │ │ ├── SDL_malloc.c │ │ ├── SDL_qsort.c │ │ ├── SDL_stdlib.c │ │ └── SDL_string.c │ ├── test │ │ ├── SDL_test_assert.c │ │ ├── SDL_test_common.c │ │ ├── SDL_test_compare.c │ │ ├── SDL_test_crc32.c │ │ ├── SDL_test_font.c │ │ ├── SDL_test_fuzzer.c │ │ ├── SDL_test_harness.c │ │ ├── SDL_test_imageBlit.c │ │ ├── SDL_test_imageBlitBlend.c │ │ ├── SDL_test_imageFace.c │ │ ├── SDL_test_imagePrimitives.c │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ ├── SDL_test_log.c │ │ ├── SDL_test_md5.c │ │ └── SDL_test_random.c │ ├── thread │ │ ├── SDL_systhread.h │ │ ├── SDL_thread.c │ │ ├── SDL_thread_c.h │ │ ├── generic │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ │ ├── psp │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── pthread │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ │ ├── stdcpp │ │ │ ├── SDL_syscond.cpp │ │ │ ├── SDL_sysmutex.cpp │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_systhread.cpp │ │ │ └── SDL_systhread_c.h │ │ └── windows │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ ├── timer │ │ ├── SDL_timer.c │ │ ├── SDL_timer_c.h │ │ ├── dummy │ │ │ └── SDL_systimer.c │ │ ├── haiku │ │ │ └── SDL_systimer.c │ │ ├── psp │ │ │ └── SDL_systimer.c │ │ ├── unix │ │ │ └── SDL_systimer.c │ │ └── windows │ │ │ └── SDL_systimer.c │ └── video │ │ ├── SDL_RLEaccel.c │ │ ├── SDL_RLEaccel_c.h │ │ ├── SDL_blit.c │ │ ├── SDL_blit.h │ │ ├── SDL_blit_0.c │ │ ├── SDL_blit_1.c │ │ ├── SDL_blit_A.c │ │ ├── SDL_blit_N.c │ │ ├── SDL_blit_auto.c │ │ ├── SDL_blit_auto.h │ │ ├── SDL_blit_copy.c │ │ ├── SDL_blit_copy.h │ │ ├── SDL_blit_slow.c │ │ ├── SDL_blit_slow.h │ │ ├── SDL_bmp.c │ │ ├── SDL_clipboard.c │ │ ├── SDL_egl.c │ │ ├── SDL_egl_c.h │ │ ├── SDL_fillrect.c │ │ ├── SDL_pixels.c │ │ ├── SDL_pixels_c.h │ │ ├── SDL_rect.c │ │ ├── SDL_rect_c.h │ │ ├── SDL_shape.c │ │ ├── SDL_shape_internals.h │ │ ├── SDL_stretch.c │ │ ├── SDL_surface.c │ │ ├── SDL_sysvideo.h │ │ ├── SDL_video.c │ │ ├── android │ │ ├── SDL_androidclipboard.c │ │ ├── SDL_androidclipboard.h │ │ ├── SDL_androidevents.c │ │ ├── SDL_androidevents.h │ │ ├── SDL_androidgl.c │ │ ├── SDL_androidkeyboard.c │ │ ├── SDL_androidkeyboard.h │ │ ├── SDL_androidmessagebox.c │ │ ├── SDL_androidmessagebox.h │ │ ├── SDL_androidmouse.c │ │ ├── SDL_androidmouse.h │ │ ├── SDL_androidtouch.c │ │ ├── SDL_androidtouch.h │ │ ├── SDL_androidvideo.c │ │ ├── SDL_androidvideo.h │ │ ├── SDL_androidwindow.c │ │ └── SDL_androidwindow.h │ │ ├── cocoa │ │ ├── SDL_cocoaclipboard.h │ │ ├── SDL_cocoaclipboard.m │ │ ├── SDL_cocoaevents.h │ │ ├── SDL_cocoaevents.m │ │ ├── SDL_cocoakeyboard.h │ │ ├── SDL_cocoakeyboard.m │ │ ├── SDL_cocoamessagebox.h │ │ ├── SDL_cocoamessagebox.m │ │ ├── SDL_cocoamodes.h │ │ ├── SDL_cocoamodes.m │ │ ├── SDL_cocoamouse.h │ │ ├── SDL_cocoamouse.m │ │ ├── SDL_cocoamousetap.h │ │ ├── SDL_cocoamousetap.m │ │ ├── SDL_cocoaopengl.h │ │ ├── SDL_cocoaopengl.m │ │ ├── SDL_cocoashape.h │ │ ├── SDL_cocoashape.m │ │ ├── SDL_cocoavideo.h │ │ ├── SDL_cocoavideo.m │ │ ├── SDL_cocoawindow.h │ │ └── SDL_cocoawindow.m │ │ ├── directfb │ │ ├── SDL_DirectFB_WM.c │ │ ├── SDL_DirectFB_WM.h │ │ ├── SDL_DirectFB_dyn.c │ │ ├── SDL_DirectFB_dyn.h │ │ ├── SDL_DirectFB_events.c │ │ ├── SDL_DirectFB_events.h │ │ ├── SDL_DirectFB_modes.c │ │ ├── SDL_DirectFB_modes.h │ │ ├── SDL_DirectFB_mouse.c │ │ ├── SDL_DirectFB_mouse.h │ │ ├── SDL_DirectFB_opengl.c │ │ ├── SDL_DirectFB_opengl.h │ │ ├── SDL_DirectFB_render.c │ │ ├── SDL_DirectFB_render.h │ │ ├── SDL_DirectFB_shape.c │ │ ├── SDL_DirectFB_shape.h │ │ ├── SDL_DirectFB_video.c │ │ ├── SDL_DirectFB_video.h │ │ ├── SDL_DirectFB_window.c │ │ └── SDL_DirectFB_window.h │ │ ├── dummy │ │ ├── SDL_nullevents.c │ │ ├── SDL_nullevents_c.h │ │ ├── SDL_nullframebuffer.c │ │ ├── SDL_nullframebuffer_c.h │ │ ├── SDL_nullvideo.c │ │ └── SDL_nullvideo.h │ │ ├── emscripten │ │ ├── SDL_emscriptenevents.c │ │ ├── SDL_emscriptenevents.h │ │ ├── SDL_emscriptenframebuffer.c │ │ ├── SDL_emscriptenframebuffer.h │ │ ├── SDL_emscriptenmouse.c │ │ ├── SDL_emscriptenmouse.h │ │ ├── SDL_emscriptenopengles.c │ │ ├── SDL_emscriptenopengles.h │ │ ├── SDL_emscriptenvideo.c │ │ └── SDL_emscriptenvideo.h │ │ ├── haiku │ │ ├── SDL_BWin.h │ │ ├── SDL_bclipboard.cc │ │ ├── SDL_bclipboard.h │ │ ├── SDL_bevents.cc │ │ ├── SDL_bevents.h │ │ ├── SDL_bframebuffer.cc │ │ ├── SDL_bframebuffer.h │ │ ├── SDL_bkeyboard.cc │ │ ├── SDL_bkeyboard.h │ │ ├── SDL_bmodes.cc │ │ ├── SDL_bmodes.h │ │ ├── SDL_bopengl.cc │ │ ├── SDL_bopengl.h │ │ ├── SDL_bvideo.cc │ │ ├── SDL_bvideo.h │ │ ├── SDL_bwindow.cc │ │ └── SDL_bwindow.h │ │ ├── mir │ │ ├── SDL_mirdyn.c │ │ ├── SDL_mirdyn.h │ │ ├── SDL_mirevents.c │ │ ├── SDL_mirevents.h │ │ ├── SDL_mirframebuffer.c │ │ ├── SDL_mirframebuffer.h │ │ ├── SDL_mirmouse.c │ │ ├── SDL_mirmouse.h │ │ ├── SDL_miropengl.c │ │ ├── SDL_miropengl.h │ │ ├── SDL_mirsym.h │ │ ├── SDL_mirvideo.c │ │ ├── SDL_mirvideo.h │ │ ├── SDL_mirwindow.c │ │ └── SDL_mirwindow.h │ │ ├── nacl │ │ ├── SDL_naclevents.c │ │ ├── SDL_naclevents_c.h │ │ ├── SDL_naclglue.c │ │ ├── SDL_naclopengles.c │ │ ├── SDL_naclopengles.h │ │ ├── SDL_naclvideo.c │ │ ├── SDL_naclvideo.h │ │ ├── SDL_naclwindow.c │ │ └── SDL_naclwindow.h │ │ ├── pandora │ │ ├── SDL_pandora.c │ │ ├── SDL_pandora.h │ │ ├── SDL_pandora_events.c │ │ └── SDL_pandora_events.h │ │ ├── psp │ │ ├── SDL_pspevents.c │ │ ├── SDL_pspevents_c.h │ │ ├── SDL_pspgl.c │ │ ├── SDL_pspgl_c.h │ │ ├── SDL_pspmouse.c │ │ ├── SDL_pspmouse_c.h │ │ ├── SDL_pspvideo.c │ │ └── SDL_pspvideo.h │ │ ├── raspberry │ │ ├── SDL_rpievents.c │ │ ├── SDL_rpievents_c.h │ │ ├── SDL_rpimouse.c │ │ ├── SDL_rpimouse.h │ │ ├── SDL_rpiopengles.c │ │ ├── SDL_rpiopengles.h │ │ ├── SDL_rpivideo.c │ │ └── SDL_rpivideo.h │ │ ├── sdlgenblit.pl │ │ ├── uikit │ │ ├── SDL_uikitappdelegate.h │ │ ├── SDL_uikitappdelegate.m │ │ ├── SDL_uikitclipboard.h │ │ ├── SDL_uikitclipboard.m │ │ ├── SDL_uikitevents.h │ │ ├── SDL_uikitevents.m │ │ ├── SDL_uikitmessagebox.h │ │ ├── SDL_uikitmessagebox.m │ │ ├── SDL_uikitmodes.h │ │ ├── SDL_uikitmodes.m │ │ ├── SDL_uikitopengles.h │ │ ├── SDL_uikitopengles.m │ │ ├── SDL_uikitopenglview.h │ │ ├── SDL_uikitopenglview.m │ │ ├── SDL_uikitvideo.h │ │ ├── SDL_uikitvideo.m │ │ ├── SDL_uikitview.h │ │ ├── SDL_uikitview.m │ │ ├── SDL_uikitviewcontroller.h │ │ ├── SDL_uikitviewcontroller.m │ │ ├── SDL_uikitwindow.h │ │ ├── SDL_uikitwindow.m │ │ └── keyinfotable.h │ │ ├── vivante │ │ ├── SDL_vivanteopengles.c │ │ ├── SDL_vivanteopengles.h │ │ ├── SDL_vivanteplatform.c │ │ ├── SDL_vivanteplatform.h │ │ ├── SDL_vivantevideo.c │ │ └── SDL_vivantevideo.h │ │ ├── wayland │ │ ├── SDL_waylanddyn.c │ │ ├── SDL_waylanddyn.h │ │ ├── SDL_waylandevents.c │ │ ├── SDL_waylandevents_c.h │ │ ├── SDL_waylandmouse.c │ │ ├── SDL_waylandmouse.h │ │ ├── SDL_waylandopengles.c │ │ ├── SDL_waylandopengles.h │ │ ├── SDL_waylandsym.h │ │ ├── SDL_waylandtouch.c │ │ ├── SDL_waylandtouch.h │ │ ├── SDL_waylandvideo.c │ │ ├── SDL_waylandvideo.h │ │ ├── SDL_waylandwindow.c │ │ └── SDL_waylandwindow.h │ │ ├── windows │ │ ├── SDL_msctf.h │ │ ├── SDL_vkeys.h │ │ ├── SDL_windowsclipboard.c │ │ ├── SDL_windowsclipboard.h │ │ ├── SDL_windowsevents.c │ │ ├── SDL_windowsevents.h │ │ ├── SDL_windowsframebuffer.c │ │ ├── SDL_windowsframebuffer.h │ │ ├── SDL_windowskeyboard.c │ │ ├── SDL_windowskeyboard.h │ │ ├── SDL_windowsmessagebox.c │ │ ├── SDL_windowsmessagebox.h │ │ ├── SDL_windowsmodes.c │ │ ├── SDL_windowsmodes.h │ │ ├── SDL_windowsmouse.c │ │ ├── SDL_windowsmouse.h │ │ ├── SDL_windowsopengl.c │ │ ├── SDL_windowsopengl.h │ │ ├── SDL_windowsopengles.c │ │ ├── SDL_windowsopengles.h │ │ ├── SDL_windowsshape.c │ │ ├── SDL_windowsshape.h │ │ ├── SDL_windowsvideo.c │ │ ├── SDL_windowsvideo.h │ │ ├── SDL_windowswindow.c │ │ ├── SDL_windowswindow.h │ │ └── wmmsg.h │ │ ├── winrt │ │ ├── SDL_winrtevents.cpp │ │ ├── SDL_winrtevents_c.h │ │ ├── SDL_winrtgamebar.cpp │ │ ├── SDL_winrtgamebar_cpp.h │ │ ├── SDL_winrtkeyboard.cpp │ │ ├── SDL_winrtmessagebox.cpp │ │ ├── SDL_winrtmessagebox.h │ │ ├── SDL_winrtmouse.cpp │ │ ├── SDL_winrtmouse_c.h │ │ ├── SDL_winrtopengles.cpp │ │ ├── SDL_winrtopengles.h │ │ ├── SDL_winrtpointerinput.cpp │ │ ├── SDL_winrtvideo.cpp │ │ └── SDL_winrtvideo_cpp.h │ │ └── x11 │ │ ├── SDL_x11clipboard.c │ │ ├── SDL_x11clipboard.h │ │ ├── SDL_x11dyn.c │ │ ├── SDL_x11dyn.h │ │ ├── SDL_x11events.c │ │ ├── SDL_x11events.h │ │ ├── SDL_x11framebuffer.c │ │ ├── SDL_x11framebuffer.h │ │ ├── SDL_x11keyboard.c │ │ ├── SDL_x11keyboard.h │ │ ├── SDL_x11messagebox.c │ │ ├── SDL_x11messagebox.h │ │ ├── SDL_x11modes.c │ │ ├── SDL_x11modes.h │ │ ├── SDL_x11mouse.c │ │ ├── SDL_x11mouse.h │ │ ├── SDL_x11opengl.c │ │ ├── SDL_x11opengl.h │ │ ├── SDL_x11opengles.c │ │ ├── SDL_x11opengles.h │ │ ├── SDL_x11shape.c │ │ ├── SDL_x11shape.h │ │ ├── SDL_x11sym.h │ │ ├── SDL_x11touch.c │ │ ├── SDL_x11touch.h │ │ ├── SDL_x11video.c │ │ ├── SDL_x11video.h │ │ ├── SDL_x11window.c │ │ ├── SDL_x11window.h │ │ ├── SDL_x11xinput2.c │ │ ├── SDL_x11xinput2.h │ │ ├── edid-parse.c │ │ ├── edid.h │ │ ├── imKStoUCS.c │ │ └── imKStoUCS.h └── test │ ├── COPYING │ ├── Makefile.in │ ├── README │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autogen.sh │ ├── axis.bmp │ ├── button.bmp │ ├── checkkeys.c │ ├── configure │ ├── configure.in │ ├── controllermap.bmp │ ├── controllermap.c │ ├── emscripten │ └── joystick-pre.js │ ├── gcc-fat.sh │ ├── icon.bmp │ ├── loopwave.c │ ├── loopwavequeue.c │ ├── moose.dat │ ├── nacl │ ├── Makefile │ ├── background.js │ ├── common.js │ ├── index.html │ └── manifest.json │ ├── picture.xbm │ ├── relative_mode.markdown │ ├── sample.bmp │ ├── sample.wav │ ├── shapes │ ├── p01_shape24.bmp │ ├── p01_shape32alpha.bmp │ ├── p01_shape8.bmp │ ├── p02_shape24.bmp │ ├── p02_shape32alpha.bmp │ ├── p02_shape8.bmp │ ├── p03_shape24.bmp │ ├── p03_shape8.bmp │ ├── p04_shape1.bmp │ ├── p04_shape24.bmp │ ├── p04_shape32alpha.bmp │ ├── p04_shape8.bmp │ ├── p05_shape8.bmp │ ├── p06_shape1alpha.bmp │ ├── p06_shape24.bmp │ ├── p06_shape32alpha.bmp │ ├── p06_shape8.bmp │ ├── p07_shape24.bmp │ ├── p07_shape32alpha.bmp │ ├── p07_shape8.bmp │ ├── p08_shape24.bmp │ ├── p08_shape32alpha.bmp │ ├── p08_shape8.bmp │ ├── p09_shape24.bmp │ ├── p09_shape32alpha.bmp │ ├── p09_shape8.bmp │ ├── p10_shape1.bmp │ ├── p10_shape24.bmp │ ├── p10_shape32alpha.bmp │ ├── p10_shape8.bmp │ ├── p11_shape24.bmp │ ├── p11_shape32alpha.bmp │ ├── p11_shape8.bmp │ ├── p12_shape24.bmp │ ├── p12_shape8.bmp │ ├── p13_shape24.bmp │ ├── p13_shape32alpha.bmp │ ├── p13_shape8.bmp │ ├── p14_shape24.bmp │ ├── p14_shape8.bmp │ ├── p15_shape24.bmp │ ├── p15_shape32alpha.bmp │ ├── p15_shape8.bmp │ ├── p16_shape1.bmp │ ├── p16_shape24.bmp │ ├── p16_shape8.bmp │ ├── trollface_24.bmp │ └── trollface_32alpha.bmp │ ├── testatomic.c │ ├── testaudiocapture.c │ ├── testaudiohotplug.c │ ├── testaudioinfo.c │ ├── testautomation.c │ ├── testautomation_audio.c │ ├── testautomation_clipboard.c │ ├── testautomation_events.c │ ├── testautomation_hints.c │ ├── testautomation_keyboard.c │ ├── testautomation_main.c │ ├── testautomation_mouse.c │ ├── testautomation_pixels.c │ ├── testautomation_platform.c │ ├── testautomation_rect.c │ ├── testautomation_render.c │ ├── testautomation_rwops.c │ ├── testautomation_sdltest.c │ ├── testautomation_stdlib.c │ ├── testautomation_suites.h │ ├── testautomation_surface.c │ ├── testautomation_syswm.c │ ├── testautomation_timer.c │ ├── testautomation_video.c │ ├── testbounds.c │ ├── testcustomcursor.c │ ├── testdisplayinfo.c │ ├── testdraw2.c │ ├── testdrawchessboard.c │ ├── testdropfile.c │ ├── testerror.c │ ├── testfile.c │ ├── testfilesystem.c │ ├── testgamecontroller.c │ ├── testgesture.c │ ├── testgl2.c │ ├── testgles.c │ ├── testgles2.c │ ├── testhaptic.c │ ├── testhittesting.c │ ├── testhotplug.c │ ├── testiconv.c │ ├── testime.c │ ├── testintersections.c │ ├── testjoystick.c │ ├── testkeys.c │ ├── testloadso.c │ ├── testlock.c │ ├── testmessage.c │ ├── testmultiaudio.c │ ├── testnative.c │ ├── testnative.h │ ├── testnativecocoa.m │ ├── testnativew32.c │ ├── testnativex11.c │ ├── testoverlay2.c │ ├── testplatform.c │ ├── testpower.c │ ├── testqsort.c │ ├── testrelative.c │ ├── testrendercopyex.c │ ├── testrendertarget.c │ ├── testresample.c │ ├── testrumble.c │ ├── testscale.c │ ├── testsem.c │ ├── testshader.c │ ├── testshape.c │ ├── testsprite2.c │ ├── testspriteminimal.c │ ├── teststreaming.c │ ├── testthread.c │ ├── testtimer.c │ ├── testver.c │ ├── testviewport.c │ ├── testwm2.c │ ├── torturethread.c │ └── utf8.txt ├── ffmpeg ├── .gitattributes ├── .travis.yml ├── FFmpeg-iOS-build-script-master │ ├── .gitignore │ ├── .sf │ ├── .travis.yml │ ├── README.md │ ├── build-ffmpeg-tvos.sh │ └── build-ffmpeg.sh └── FFmpeg-iOS │ ├── include │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── d3d11va.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── qsv.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── avfilter.h │ │ ├── avfiltergraph.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 │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.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 │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.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 └── war3end.mp4 /JDCFFMedia/jdc_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_media_player.c -------------------------------------------------------------------------------- /JDCFFMedia/jdc_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_media_player.h -------------------------------------------------------------------------------- /JDCFFMedia/jdc_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_sdl.c -------------------------------------------------------------------------------- /JDCFFMedia/jdc_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_sdl.h -------------------------------------------------------------------------------- /JDCFFMedia/jdc_sdl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_sdl_queue.c -------------------------------------------------------------------------------- /JDCFFMedia/jdc_sdl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_sdl_queue.h -------------------------------------------------------------------------------- /JDCFFMedia/jdc_video_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_video_frame.c -------------------------------------------------------------------------------- /JDCFFMedia/jdc_video_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFMedia/jdc_video_frame.h -------------------------------------------------------------------------------- /JDCFFPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JDCFFPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/AppDelegate.h -------------------------------------------------------------------------------- /JDCFFPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/AppDelegate.m -------------------------------------------------------------------------------- /JDCFFPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JDCFFPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/Info.plist -------------------------------------------------------------------------------- /JDCFFPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/ViewController.h -------------------------------------------------------------------------------- /JDCFFPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/ViewController.m -------------------------------------------------------------------------------- /JDCFFPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/main.m -------------------------------------------------------------------------------- /JDCFFPlayer/tutorial03.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayer/tutorial03.m -------------------------------------------------------------------------------- /JDCFFPlayerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayerTests/Info.plist -------------------------------------------------------------------------------- /JDCFFPlayerTests/JDCFFPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/JDCFFPlayerTests/JDCFFPlayerTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/README.md -------------------------------------------------------------------------------- /SDL2-2.0.5/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Android.mk -------------------------------------------------------------------------------- /SDL2-2.0.5/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/BUGS.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/CMakeLists.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/COPYING.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/CREDITS.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/INSTALL.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Makefile.in -------------------------------------------------------------------------------- /SDL2-2.0.5/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Makefile.minimal -------------------------------------------------------------------------------- /SDL2-2.0.5/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Makefile.pandora -------------------------------------------------------------------------------- /SDL2-2.0.5/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Makefile.psp -------------------------------------------------------------------------------- /SDL2-2.0.5/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Makefile.wiz -------------------------------------------------------------------------------- /SDL2-2.0.5/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/README-SDL.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/README.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/SDL2.spec -------------------------------------------------------------------------------- /SDL2-2.0.5/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/SDL2.spec.in -------------------------------------------------------------------------------- /SDL2-2.0.5/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/TODO.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC-WinRT/SDL2-WinRT.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC-WinRT/SDL2-WinRT.nuspec -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC-WinRT/SDL2-WinRT.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC-WinRT/SDL2-WinRT.targets -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC.html -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDL.sln -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDL/SDL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDL/SDL.vcxproj.filters -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDL/SDL_VS2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDL/SDL_VS2008.vcproj -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDLmain/SDLmain.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDLmain/SDLmain.vcxproj -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/SDLtest/SDLtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/SDLtest/SDLtest.vcxproj -------------------------------------------------------------------------------- /SDL2-2.0.5/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/VisualC/clean.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/WhatsNew.txt -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/Default.png -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/Info.plist -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/common.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/common.h -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Test/Info.plist -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode/SDL/Info-Framework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode/SDL/Info-Framework.plist -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf -------------------------------------------------------------------------------- /SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ac_check_define.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ac_check_define.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/alsa.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ax_gcc_archflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ax_gcc_archflag.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/esd.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/libtool.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/ant.properties -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/build.properties -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/build.xml -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/default.properties -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/jni/Application.mk -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/jni/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/jni/src/Android.mk -------------------------------------------------------------------------------- /SDL2-2.0.5/android-project/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/android-project/project.properties -------------------------------------------------------------------------------- /SDL2-2.0.5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/autogen.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/androidbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/androidbuild.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/checker-buildbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/checker-buildbot.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/config.guess -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/config.sub -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/install-sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/iosbuild.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/mkinstalldirs -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/nacl-buildbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/nacl-buildbot.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/naclbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/naclbuild.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/showrev.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/strip_fPIC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/strip_fPIC.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/update-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/update-copyright.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/updaterev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/updaterev.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/winrtbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/winrtbuild.bat -------------------------------------------------------------------------------- /SDL2-2.0.5/build-scripts/winrtbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/build-scripts/winrtbuild.ps1 -------------------------------------------------------------------------------- /SDL2-2.0.5/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/cmake/macros.cmake -------------------------------------------------------------------------------- /SDL2-2.0.5/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /SDL2-2.0.5/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /SDL2-2.0.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/configure -------------------------------------------------------------------------------- /SDL2-2.0.5/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/configure.in -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/changelog -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/control -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/copyright -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/docs -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/libsdl2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/libsdl2-dev.install -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/libsdl2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/libsdl2.install -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/rules -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/debian/sdl2-config.1 -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /SDL2-2.0.5/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-android.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-cmake.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-directfb.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-dynapi.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-emscripten.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-gesture.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-hg.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-ios.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-linux.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-macosx.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-nacl.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-pandora.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-platforms.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-porting.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-psp.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-touch.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-wince.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-windows.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README-winrt.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/README.md -------------------------------------------------------------------------------- /SDL2-2.0.5/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/docs/doxyfile -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_assert.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_atomic.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_audio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_bits.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_blendmode.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_clipboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config.h.in -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_android.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_psp.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_windows.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_copying.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_egl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_endian.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_error.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_events.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_filesystem.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_gesture.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_haptic.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_hints.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_joystick.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_keyboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_keycode.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_loadso.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_log.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_main.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_messagebox.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_mouse.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_mutex.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_name.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengles.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengles2.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_pixels.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_platform.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_power.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_quit.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_rect.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_render.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_revision.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_rwops.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_scancode.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_shape.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_stdinc.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_surface.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_system.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_syswm.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_assert.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_common.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_compare.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_font.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_harness.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_images.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_log.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_md5.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_test_random.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_thread.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_timer.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_touch.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_types.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_version.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/SDL_video.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/begin_code.h -------------------------------------------------------------------------------- /SDL2-2.0.5/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/include/close_code.h -------------------------------------------------------------------------------- /SDL2-2.0.5/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/sdl2-config.cmake.in -------------------------------------------------------------------------------- /SDL2-2.0.5/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/sdl2-config.in -------------------------------------------------------------------------------- /SDL2-2.0.5/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/sdl2.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/sdl2.pc.in -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_assert.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_assert_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_error.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_error_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_hints.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_internal.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/SDL_log.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/paudio/SDL_paudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/paudio/SDL_paudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/paudio/SDL_paudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/paudio/SDL_paudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/winmm/SDL_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/winmm/SDL_winmm.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/winmm/SDL_winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/winmm/SDL_winmm.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/android/SDL_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/android/SDL_android.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/android/SDL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/android/SDL_android.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_dbus.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_dbus.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_evdev.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_evdev.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_fcitx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_fcitx.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_fcitx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_fcitx.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_ibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_ibus.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_ibus.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_ime.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_ime.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_udev.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/linux/SDL_udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/linux/SDL_udev.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/windows/SDL_directx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/windows/SDL_directx.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/windows/SDL_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/windows/SDL_windows.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/windows/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/windows/SDL_windows.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/windows/SDL_xinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/windows/SDL_xinput.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/windows/SDL_xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/windows/SDL_xinput.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_clipboardevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_clipboardevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_clipboardevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_clipboardevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_dropevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_dropevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_dropevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_dropevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_events.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_quit.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_touch.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/SDL_windowevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/SDL_windowevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/blank_cursor.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/default_cursor.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/scancodes_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/scancodes_windows.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/events/scancodes_xfree86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/events/scancodes_xfree86.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/SDL_gamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/SDL_gamecontroller.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/SDL_sysjoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/SDL_sysjoystick.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/joystick/sort_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/joystick/sort_controllers.py -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/e_atan2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/e_log.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/e_pow.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/k_cos.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/k_sin.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/k_tan.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/math_libm.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/math_private.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_atan.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_copysign.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_cos.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_fabs.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_floor.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_sin.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/libm/s_tan.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/haiku/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/haiku/SDL_BApp.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/haiku/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/haiku/SDL_BeApp.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/psp/SDL_psp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/psp/SDL_psp_main.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/main/windows/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/main/windows/version.rc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/SDL_power.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/android/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/android/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/haiku/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/haiku/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/linux/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/linux/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/macosx/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/macosx/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/psp/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/psp/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/uikit/SDL_syspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/uikit/SDL_syspower.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/uikit/SDL_syspower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/uikit/SDL_syspower.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/windows/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/windows/SDL_syspower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_d3dmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_d3dmath.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_d3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_d3dmath.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_render.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_sysrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_sysrender.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/mmx.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/opengl/SDL_render_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/opengl/SDL_render_gl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/psp/SDL_render_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/psp/SDL_render_psp.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/software/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/software/SDL_draw.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/software/SDL_drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/software/SDL_drawline.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/software/SDL_drawline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/software/SDL_drawline.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/software/SDL_rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/software/SDL_rotate.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/render/software/SDL_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/render/software/SDL_rotate.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_assert.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_common.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_compare.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_crc32.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_font.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_fuzzer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_harness.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_imageBlit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_imageBlit.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_imageFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_imageFace.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/test/SDL_test_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/test/SDL_test_random.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/generic/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/generic/SDL_syscond.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/generic/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/generic/SDL_syssem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/generic/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/generic/SDL_systhread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/generic/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/generic/SDL_systls.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_syscond.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_syssem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_systhread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/pthread/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/pthread/SDL_syscond.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/pthread/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/pthread/SDL_systhread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/pthread/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/pthread/SDL_systls.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/windows/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/windows/SDL_syssem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/windows/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/windows/SDL_systhread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/thread/windows/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/thread/windows/SDL_systls.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/dummy/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/dummy/SDL_systimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/haiku/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/haiku/SDL_systimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/psp/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/psp/SDL_systimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/timer/windows/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/timer/windows/SDL_systimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_egl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_rect.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_shape.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_shape_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_shape_internals.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_surface.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/SDL_video.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/android/SDL_androidgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/android/SDL_androidgl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/dummy/SDL_nullevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/dummy/SDL_nullevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_BWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_BWin.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bevents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bevents.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bevents.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bmodes.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bopengl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/haiku/SDL_bwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/haiku/SDL_bwindow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirdyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirdyn.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirdyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirdyn.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirevents.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirmouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirmouse.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_miropengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_miropengl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_miropengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_miropengl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirsym.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirvideo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirwindow.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/mir/SDL_mirwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/mir/SDL_mirwindow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclglue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclglue.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/pandora/SDL_pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/pandora/SDL_pandora.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/pandora/SDL_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/pandora/SDL_pandora.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspevents.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspgl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspmouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspvideo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/psp/SDL_pspvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/psp/SDL_pspvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitview.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitview.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/uikit/keyinfotable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/uikit/keyinfotable.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/windows/SDL_msctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/windows/SDL_msctf.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/windows/SDL_vkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/windows/SDL_vkeys.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/windows/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/windows/wmmsg.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11dyn.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11dyn.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11events.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11events.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11modes.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11modes.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11mouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11mouse.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11opengl.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11opengl.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11opengles.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11opengles.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11shape.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11shape.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11sym.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11touch.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11touch.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11video.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11video.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11window.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11window.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/edid-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/edid-parse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/edid.h -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/imKStoUCS.c -------------------------------------------------------------------------------- /SDL2-2.0.5/src/video/x11/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/src/video/x11/imKStoUCS.h -------------------------------------------------------------------------------- /SDL2-2.0.5/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/COPYING -------------------------------------------------------------------------------- /SDL2-2.0.5/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/Makefile.in -------------------------------------------------------------------------------- /SDL2-2.0.5/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/README -------------------------------------------------------------------------------- /SDL2-2.0.5/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/acinclude.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/aclocal.m4 -------------------------------------------------------------------------------- /SDL2-2.0.5/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/autogen.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/axis.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/button.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/checkkeys.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/configure -------------------------------------------------------------------------------- /SDL2-2.0.5/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/configure.in -------------------------------------------------------------------------------- /SDL2-2.0.5/test/controllermap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/controllermap.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/controllermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/controllermap.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/emscripten/joystick-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/emscripten/joystick-pre.js -------------------------------------------------------------------------------- /SDL2-2.0.5/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/gcc-fat.sh -------------------------------------------------------------------------------- /SDL2-2.0.5/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/icon.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/loopwave.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/loopwavequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/loopwavequeue.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/moose.dat -------------------------------------------------------------------------------- /SDL2-2.0.5/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/nacl/Makefile -------------------------------------------------------------------------------- /SDL2-2.0.5/test/nacl/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/nacl/background.js -------------------------------------------------------------------------------- /SDL2-2.0.5/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/nacl/common.js -------------------------------------------------------------------------------- /SDL2-2.0.5/test/nacl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/nacl/index.html -------------------------------------------------------------------------------- /SDL2-2.0.5/test/nacl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/nacl/manifest.json -------------------------------------------------------------------------------- /SDL2-2.0.5/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/picture.xbm -------------------------------------------------------------------------------- /SDL2-2.0.5/test/relative_mode.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/relative_mode.markdown -------------------------------------------------------------------------------- /SDL2-2.0.5/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/sample.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/sample.wav -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p01_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p01_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p01_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p01_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p02_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p02_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p02_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p02_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p03_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p03_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p03_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p03_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p04_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p04_shape1.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p04_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p04_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p04_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p04_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p05_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p05_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p06_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p06_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p06_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p06_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p07_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p07_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p07_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p07_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p08_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p08_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p08_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p08_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p09_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p09_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p09_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p09_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p10_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p10_shape1.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p10_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p10_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p10_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p10_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p11_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p11_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p11_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p11_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p12_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p12_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p12_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p12_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p13_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p13_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p13_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p13_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p14_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p14_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p14_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p14_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p15_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p15_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p15_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p15_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p16_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p16_shape1.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p16_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p16_shape24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/p16_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/p16_shape8.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/trollface_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/trollface_24.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/shapes/trollface_32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/shapes/trollface_32alpha.bmp -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testatomic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testaudiocapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testaudiocapture.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testaudiohotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testaudiohotplug.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testaudioinfo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_audio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_clipboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_events.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_hints.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_keyboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_main.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_mouse.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_pixels.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_platform.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_rect.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_render.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_rwops.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_sdltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_sdltest.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_stdlib.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_suites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_suites.h -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_surface.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_syswm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_syswm.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_timer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testautomation_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testautomation_video.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testbounds.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testcustomcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testcustomcursor.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testdisplayinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testdisplayinfo.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testdraw2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testdrawchessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testdrawchessboard.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testdropfile.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testerror.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testfile.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testfilesystem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testgamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testgamecontroller.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testgesture.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testgl2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testgles.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testgles2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testhaptic.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testhittesting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testhittesting.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testhotplug.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testiconv.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testime.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testintersections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testintersections.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testjoystick.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testkeys.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testloadso.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testlock.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testmessage.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testmultiaudio.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testnative.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testnative.h -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testnativecocoa.m -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testnativew32.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testnativex11.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testoverlay2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testplatform.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testpower.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testqsort.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testrelative.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testrendercopyex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testrendercopyex.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testrendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testrendertarget.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testresample.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testrumble.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testscale.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testsem.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testshader.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testshape.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testsprite2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testspriteminimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testspriteminimal.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/teststreaming.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testthread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testtimer.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testver.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testviewport.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/testwm2.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/torturethread.c -------------------------------------------------------------------------------- /SDL2-2.0.5/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/SDL2-2.0.5/test/utf8.txt -------------------------------------------------------------------------------- /ffmpeg/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pnm -diff -text 2 | tests/ref/fate/sub-scc eol=crlf 3 | -------------------------------------------------------------------------------- /ffmpeg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/.travis.yml -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS-build-script-master/.gitignore: -------------------------------------------------------------------------------- 1 | scratch* 2 | thin* 3 | fat* 4 | FFmpeg-* 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS-build-script-master/.sf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS-build-script-master/.sf -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavcodec/jni.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavcodec/vda.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/aes.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/bswap.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/cast5.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/cpu.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/crc.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/des.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/dict.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/error.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/eval.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/fifo.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/file.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/frame.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/hash.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/hmac.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/lfg.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/log.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/lzo.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/md5.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/mem.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/opt.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/rc4.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/sha.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/tea.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/time.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/tree.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/include/libavutil/xtea.h -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libavcodec.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libavdevice.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libavfilter.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libavformat.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libavutil.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libswresample.a -------------------------------------------------------------------------------- /ffmpeg/FFmpeg-iOS/lib/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/ffmpeg/FFmpeg-iOS/lib/libswscale.a -------------------------------------------------------------------------------- /war3end.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightwolf-chen/JDCFFPlayer/HEAD/war3end.mp4 --------------------------------------------------------------------------------