├── Bin ├── SDL2.dll ├── avcodec-57.dll ├── avdevice-57.dll ├── avfilter-6.dll ├── avformat-57.dll ├── avutil-55.dll ├── cuc_ieschool.flv ├── postproc-54.dll ├── swresample-2.dll └── swscale-4.dll ├── FFplay ├── FFplay.cpp ├── FFplay.h ├── FFplay.vcxproj ├── FFplay.vcxproj.filters └── FFplay.vcxproj.user ├── Include ├── SDL2 │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.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 ├── inttypes.h ├── 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 │ ├── spherical.h │ ├── stereo3d.h │ ├── tea.h │ ├── threadmessage.h │ ├── time.h │ ├── timecode.h │ ├── timestamp.h │ ├── tree.h │ ├── twofish.h │ ├── version.h │ └── xtea.h ├── libpostproc │ ├── postprocess.h │ └── version.h ├── libswresample │ ├── swresample.h │ └── version.h ├── libswscale │ ├── swscale.h │ └── version.h └── stdint.h ├── Lib ├── SDL2.lib ├── SDL2main.lib ├── avcodec.lib ├── avdevice.lib ├── avfilter.lib ├── avformat.lib ├── avutil.lib ├── postproc.lib ├── swresample.lib └── swscale.lib ├── Player.sln ├── Player ├── Player.cpp ├── Player.h ├── Player.vcxproj ├── Player.vcxproj.filters ├── Player.vcxproj.user ├── stdafx.cpp └── stdafx.h ├── README.md └── Simple ├── Resource.h ├── Simple.cpp ├── Simple.h ├── Simple.ico ├── Simple.rc ├── Simple.vcxproj ├── Simple.vcxproj.filters ├── Simple.vcxproj.user ├── Skin.zip └── Stdafx.h /Bin/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/SDL2.dll -------------------------------------------------------------------------------- /Bin/avcodec-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/avcodec-57.dll -------------------------------------------------------------------------------- /Bin/avdevice-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/avdevice-57.dll -------------------------------------------------------------------------------- /Bin/avfilter-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/avfilter-6.dll -------------------------------------------------------------------------------- /Bin/avformat-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/avformat-57.dll -------------------------------------------------------------------------------- /Bin/avutil-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/avutil-55.dll -------------------------------------------------------------------------------- /Bin/cuc_ieschool.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/cuc_ieschool.flv -------------------------------------------------------------------------------- /Bin/postproc-54.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/postproc-54.dll -------------------------------------------------------------------------------- /Bin/swresample-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/swresample-2.dll -------------------------------------------------------------------------------- /Bin/swscale-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Bin/swscale-4.dll -------------------------------------------------------------------------------- /FFplay/FFplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/FFplay/FFplay.cpp -------------------------------------------------------------------------------- /FFplay/FFplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/FFplay/FFplay.h -------------------------------------------------------------------------------- /FFplay/FFplay.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/FFplay/FFplay.vcxproj -------------------------------------------------------------------------------- /FFplay/FFplay.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/FFplay/FFplay.vcxproj.filters -------------------------------------------------------------------------------- /FFplay/FFplay.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/FFplay/FFplay.vcxproj.user -------------------------------------------------------------------------------- /Include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /Include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /Include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/begin_code.h -------------------------------------------------------------------------------- /Include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/SDL2/close_code.h -------------------------------------------------------------------------------- /Include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/inttypes.h -------------------------------------------------------------------------------- /Include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /Include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/avdct.h -------------------------------------------------------------------------------- /Include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/avfft.h -------------------------------------------------------------------------------- /Include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /Include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/dirac.h -------------------------------------------------------------------------------- /Include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /Include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /Include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/jni.h -------------------------------------------------------------------------------- /Include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /Include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/qsv.h -------------------------------------------------------------------------------- /Include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /Include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/vda.h -------------------------------------------------------------------------------- /Include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /Include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/version.h -------------------------------------------------------------------------------- /Include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /Include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /Include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /Include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /Include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavdevice/version.h -------------------------------------------------------------------------------- /Include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /Include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /Include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /Include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /Include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavfilter/version.h -------------------------------------------------------------------------------- /Include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavformat/avformat.h -------------------------------------------------------------------------------- /Include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavformat/avio.h -------------------------------------------------------------------------------- /Include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavformat/version.h -------------------------------------------------------------------------------- /Include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/adler32.h -------------------------------------------------------------------------------- /Include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/aes.h -------------------------------------------------------------------------------- /Include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /Include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/attributes.h -------------------------------------------------------------------------------- /Include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /Include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/avassert.h -------------------------------------------------------------------------------- /Include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/avconfig.h -------------------------------------------------------------------------------- /Include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/avstring.h -------------------------------------------------------------------------------- /Include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/avutil.h -------------------------------------------------------------------------------- /Include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/base64.h -------------------------------------------------------------------------------- /Include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/blowfish.h -------------------------------------------------------------------------------- /Include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/bprint.h -------------------------------------------------------------------------------- /Include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/bswap.h -------------------------------------------------------------------------------- /Include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/buffer.h -------------------------------------------------------------------------------- /Include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/camellia.h -------------------------------------------------------------------------------- /Include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/cast5.h -------------------------------------------------------------------------------- /Include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /Include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/common.h -------------------------------------------------------------------------------- /Include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/cpu.h -------------------------------------------------------------------------------- /Include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/crc.h -------------------------------------------------------------------------------- /Include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/des.h -------------------------------------------------------------------------------- /Include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/dict.h -------------------------------------------------------------------------------- /Include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/display.h -------------------------------------------------------------------------------- /Include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /Include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/error.h -------------------------------------------------------------------------------- /Include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/eval.h -------------------------------------------------------------------------------- /Include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/ffversion.h -------------------------------------------------------------------------------- /Include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/fifo.h -------------------------------------------------------------------------------- /Include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/file.h -------------------------------------------------------------------------------- /Include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/frame.h -------------------------------------------------------------------------------- /Include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hash.h -------------------------------------------------------------------------------- /Include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hmac.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /Include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /Include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/imgutils.h -------------------------------------------------------------------------------- /Include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/intfloat.h -------------------------------------------------------------------------------- /Include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /Include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/lfg.h -------------------------------------------------------------------------------- /Include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/log.h -------------------------------------------------------------------------------- /Include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/lzo.h -------------------------------------------------------------------------------- /Include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/macros.h -------------------------------------------------------------------------------- /Include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /Include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/mathematics.h -------------------------------------------------------------------------------- /Include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/md5.h -------------------------------------------------------------------------------- /Include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/mem.h -------------------------------------------------------------------------------- /Include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /Include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/murmur3.h -------------------------------------------------------------------------------- /Include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/opt.h -------------------------------------------------------------------------------- /Include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/parseutils.h -------------------------------------------------------------------------------- /Include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /Include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /Include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /Include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/random_seed.h -------------------------------------------------------------------------------- /Include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/rational.h -------------------------------------------------------------------------------- /Include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/rc4.h -------------------------------------------------------------------------------- /Include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/replaygain.h -------------------------------------------------------------------------------- /Include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/ripemd.h -------------------------------------------------------------------------------- /Include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /Include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/sha.h -------------------------------------------------------------------------------- /Include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/sha512.h -------------------------------------------------------------------------------- /Include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/spherical.h -------------------------------------------------------------------------------- /Include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /Include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/tea.h -------------------------------------------------------------------------------- /Include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /Include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/time.h -------------------------------------------------------------------------------- /Include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/timecode.h -------------------------------------------------------------------------------- /Include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/timestamp.h -------------------------------------------------------------------------------- /Include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/tree.h -------------------------------------------------------------------------------- /Include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/twofish.h -------------------------------------------------------------------------------- /Include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/version.h -------------------------------------------------------------------------------- /Include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libavutil/xtea.h -------------------------------------------------------------------------------- /Include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /Include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libpostproc/version.h -------------------------------------------------------------------------------- /Include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libswresample/swresample.h -------------------------------------------------------------------------------- /Include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libswresample/version.h -------------------------------------------------------------------------------- /Include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libswscale/swscale.h -------------------------------------------------------------------------------- /Include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/libswscale/version.h -------------------------------------------------------------------------------- /Include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Include/stdint.h -------------------------------------------------------------------------------- /Lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/SDL2.lib -------------------------------------------------------------------------------- /Lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/SDL2main.lib -------------------------------------------------------------------------------- /Lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/avcodec.lib -------------------------------------------------------------------------------- /Lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/avdevice.lib -------------------------------------------------------------------------------- /Lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/avfilter.lib -------------------------------------------------------------------------------- /Lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/avformat.lib -------------------------------------------------------------------------------- /Lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/avutil.lib -------------------------------------------------------------------------------- /Lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/postproc.lib -------------------------------------------------------------------------------- /Lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/swresample.lib -------------------------------------------------------------------------------- /Lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Lib/swscale.lib -------------------------------------------------------------------------------- /Player.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player.sln -------------------------------------------------------------------------------- /Player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/Player.cpp -------------------------------------------------------------------------------- /Player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/Player.h -------------------------------------------------------------------------------- /Player/Player.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/Player.vcxproj -------------------------------------------------------------------------------- /Player/Player.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/Player.vcxproj.filters -------------------------------------------------------------------------------- /Player/Player.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/Player.vcxproj.user -------------------------------------------------------------------------------- /Player/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Player/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Player/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FFPlayer 2 | FFmpeg and DuiLib Plugin Demo 3 | -------------------------------------------------------------------------------- /Simple/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Resource.h -------------------------------------------------------------------------------- /Simple/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.cpp -------------------------------------------------------------------------------- /Simple/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.h -------------------------------------------------------------------------------- /Simple/Simple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.ico -------------------------------------------------------------------------------- /Simple/Simple.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.rc -------------------------------------------------------------------------------- /Simple/Simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.vcxproj -------------------------------------------------------------------------------- /Simple/Simple.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.vcxproj.filters -------------------------------------------------------------------------------- /Simple/Simple.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Simple.vcxproj.user -------------------------------------------------------------------------------- /Simple/Skin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Skin.zip -------------------------------------------------------------------------------- /Simple/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanwer/FFPlayer/HEAD/Simple/Stdafx.h --------------------------------------------------------------------------------