├── .gitignore ├── ChangeLog.txt ├── ffplaymfc.sln ├── ffplaymfc.suo ├── ffplaymfc ├── .gitignore ├── AudiodecodeDlg.cpp ├── AudiodecodeDlg.h ├── ReadMe.txt ├── SDL.dll ├── SysinfoDlg.cpp ├── SysinfoDlg.h ├── VideodecodeDlg.cpp ├── VideodecodeDlg.h ├── avcodec-55.dll ├── avdevice-55.dll ├── avfilter-4.dll ├── avformat-55.dll ├── avutil-52.dll ├── cmdutils.cpp ├── cmdutils.h ├── cmdutils_common_opts.h ├── config.h ├── ffplaycore.cpp ├── ffplaycore.h ├── ffplaymfc.aps ├── ffplaymfc.cpp ├── ffplaymfc.h ├── ffplaymfc.rc ├── ffplaymfc.vcxproj ├── ffplaymfc.vcxproj.filters ├── ffplaymfc.vcxproj.user ├── ffplaymfcDlg.cpp ├── ffplaymfcDlg.h ├── include │ ├── SDL │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── _mingw.h │ ├── compat │ │ ├── getopt.c │ │ ├── msvcrt │ │ │ ├── snprintf.c │ │ │ └── snprintf.h │ │ ├── strtod.c │ │ └── va_copy.h │ ├── inttypes.h │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avfft.h │ │ ├── dxva2.h │ │ ├── old_codec_ids.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── asrc_abuffer.h │ │ ├── avcodec.h │ │ ├── avfilter.h │ │ ├── avfiltergraph.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavresample │ │ ├── Makefile │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ └── audio_convert_neon.S │ │ ├── audio_convert.c │ │ ├── audio_convert.h │ │ ├── audio_data.c │ │ ├── audio_data.h │ │ ├── audio_mix.c │ │ ├── audio_mix.h │ │ ├── audio_mix_matrix.c │ │ ├── avresample-test.c │ │ ├── avresample.h │ │ ├── internal.h │ │ ├── libavresample.v │ │ ├── options.c │ │ ├── resample.c │ │ ├── resample.h │ │ ├── resample_template.c │ │ ├── utils.c │ │ ├── version.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── audio_convert.asm │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_mix.asm │ │ │ ├── audio_mix_init.c │ │ │ └── util.asm │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── audioconvert.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── channel_layout.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── dict.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hmac.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intfloat_readwrite.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── murmur3.h │ │ ├── old_pix_fmts.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── stereo3d.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ ├── libswscale │ │ ├── swscale.h │ │ └── version.h │ └── stdint.h ├── lib │ ├── SDL.lib │ ├── SDLmain.lib │ ├── avcodec.lib │ ├── avdevice.lib │ ├── avfilter.lib │ ├── avformat.lib │ ├── avutil.lib │ ├── postproc.lib │ ├── swresample.lib │ └── swscale.lib ├── postproc-52.dll ├── res │ ├── ffplaymfc(en).bmp │ ├── ffplaymfc.bmp │ ├── ffplaymfc.ico │ ├── ffplaymfc.rc2 │ └── ffplaymfc_ico.png ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── swresample-0.dll ├── swscale-2.dll ├── targetver.h └── 问题.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /ffplaymfc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc.sln -------------------------------------------------------------------------------- /ffplaymfc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc.suo -------------------------------------------------------------------------------- /ffplaymfc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/.gitignore -------------------------------------------------------------------------------- /ffplaymfc/AudiodecodeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/AudiodecodeDlg.cpp -------------------------------------------------------------------------------- /ffplaymfc/AudiodecodeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/AudiodecodeDlg.h -------------------------------------------------------------------------------- /ffplaymfc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ReadMe.txt -------------------------------------------------------------------------------- /ffplaymfc/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/SDL.dll -------------------------------------------------------------------------------- /ffplaymfc/SysinfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/SysinfoDlg.cpp -------------------------------------------------------------------------------- /ffplaymfc/SysinfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/SysinfoDlg.h -------------------------------------------------------------------------------- /ffplaymfc/VideodecodeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/VideodecodeDlg.cpp -------------------------------------------------------------------------------- /ffplaymfc/VideodecodeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/VideodecodeDlg.h -------------------------------------------------------------------------------- /ffplaymfc/avcodec-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/avcodec-55.dll -------------------------------------------------------------------------------- /ffplaymfc/avdevice-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/avdevice-55.dll -------------------------------------------------------------------------------- /ffplaymfc/avfilter-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/avfilter-4.dll -------------------------------------------------------------------------------- /ffplaymfc/avformat-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/avformat-55.dll -------------------------------------------------------------------------------- /ffplaymfc/avutil-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/avutil-52.dll -------------------------------------------------------------------------------- /ffplaymfc/cmdutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/cmdutils.cpp -------------------------------------------------------------------------------- /ffplaymfc/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/cmdutils.h -------------------------------------------------------------------------------- /ffplaymfc/cmdutils_common_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/cmdutils_common_opts.h -------------------------------------------------------------------------------- /ffplaymfc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/config.h -------------------------------------------------------------------------------- /ffplaymfc/ffplaycore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaycore.cpp -------------------------------------------------------------------------------- /ffplaymfc/ffplaycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaycore.h -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.aps -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.cpp -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.h -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.rc -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.vcxproj -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.vcxproj.filters -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfc.vcxproj.user -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfcDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfcDlg.cpp -------------------------------------------------------------------------------- /ffplaymfc/ffplaymfcDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/ffplaymfcDlg.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_active.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_audio.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_macos.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_nds.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_os2.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_symbian.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_copying.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_endian.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_error.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_events.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_main.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_name.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_platform.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_quit.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_thread.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_timer.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_types.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_version.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/SDL_video.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/begin_code.h -------------------------------------------------------------------------------- /ffplaymfc/include/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/SDL/close_code.h -------------------------------------------------------------------------------- /ffplaymfc/include/_mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/_mingw.h -------------------------------------------------------------------------------- /ffplaymfc/include/compat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/compat/getopt.c -------------------------------------------------------------------------------- /ffplaymfc/include/compat/msvcrt/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/compat/msvcrt/snprintf.c -------------------------------------------------------------------------------- /ffplaymfc/include/compat/msvcrt/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/compat/msvcrt/snprintf.h -------------------------------------------------------------------------------- /ffplaymfc/include/compat/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/compat/strtod.c -------------------------------------------------------------------------------- /ffplaymfc/include/compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/compat/va_copy.h -------------------------------------------------------------------------------- /ffplaymfc/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/inttypes.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/vda.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavdevice/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavfilter/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavformat/avformat.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavformat/avio.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavformat/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/Makefile -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/arm/Makefile -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/arm/audio_convert_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/arm/audio_convert_init.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/arm/audio_convert_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/arm/audio_convert_neon.S -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_convert.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_convert.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_data.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_data.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_mix.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_mix.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/audio_mix_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/audio_mix_matrix.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/avresample-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/avresample-test.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/avresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/avresample.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/internal.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/libavresample.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/libavresample.v -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/options.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/resample.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/resample.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/resample_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/resample_template.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/utils.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/Makefile -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/audio_convert.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/audio_convert.asm -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/audio_convert_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/audio_convert_init.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/audio_mix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/audio_mix.asm -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/audio_mix_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/audio_mix_init.c -------------------------------------------------------------------------------- /ffplaymfc/include/libavresample/x86/util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavresample/x86/util.asm -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/adler32.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/aes.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/attributes.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/avassert.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/avstring.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/avutil.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/base64.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/bprint.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/bswap.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/buffer.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/colorspace.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/common.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/cpu.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/crc.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/dict.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/error.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/eval.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/fifo.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/file.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/frame.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/hmac.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/intfloat_readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/intfloat_readwrite.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/lfg.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/log.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/lzo.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/macros.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/md5.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/mem.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/opt.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/rational.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/sha.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/sha512.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/time.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/timecode.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libavutil/xtea.h -------------------------------------------------------------------------------- /ffplaymfc/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /ffplaymfc/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libpostproc/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libswresample/swresample.h -------------------------------------------------------------------------------- /ffplaymfc/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libswresample/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libswscale/swscale.h -------------------------------------------------------------------------------- /ffplaymfc/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/libswscale/version.h -------------------------------------------------------------------------------- /ffplaymfc/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/include/stdint.h -------------------------------------------------------------------------------- /ffplaymfc/lib/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/SDL.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/SDLmain.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/avcodec.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/avdevice.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/avfilter.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/avformat.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/avutil.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/postproc.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/swresample.lib -------------------------------------------------------------------------------- /ffplaymfc/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/lib/swscale.lib -------------------------------------------------------------------------------- /ffplaymfc/postproc-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/postproc-52.dll -------------------------------------------------------------------------------- /ffplaymfc/res/ffplaymfc(en).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/res/ffplaymfc(en).bmp -------------------------------------------------------------------------------- /ffplaymfc/res/ffplaymfc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/res/ffplaymfc.bmp -------------------------------------------------------------------------------- /ffplaymfc/res/ffplaymfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/res/ffplaymfc.ico -------------------------------------------------------------------------------- /ffplaymfc/res/ffplaymfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/res/ffplaymfc.rc2 -------------------------------------------------------------------------------- /ffplaymfc/res/ffplaymfc_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/res/ffplaymfc_ico.png -------------------------------------------------------------------------------- /ffplaymfc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/resource.h -------------------------------------------------------------------------------- /ffplaymfc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/stdafx.cpp -------------------------------------------------------------------------------- /ffplaymfc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/stdafx.h -------------------------------------------------------------------------------- /ffplaymfc/swresample-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/swresample-0.dll -------------------------------------------------------------------------------- /ffplaymfc/swscale-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/swscale-2.dll -------------------------------------------------------------------------------- /ffplaymfc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/targetver.h -------------------------------------------------------------------------------- /ffplaymfc/问题.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/ffplaymfc/问题.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leixiaohua1020/ffplaymfc/HEAD/readme.txt --------------------------------------------------------------------------------