├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── DrawVideo.cc ├── DrawVideo.h ├── Duilib ├── CMakeLists.txt ├── Control │ ├── UIActiveX.cpp │ ├── UIActiveX.h │ ├── UIAnimation.cpp │ ├── UIAnimation.h │ ├── UIButton.cpp │ ├── UIButton.h │ ├── UIColorPalette.cpp │ ├── UIColorPalette.h │ ├── UICombo.cpp │ ├── UICombo.h │ ├── UIComboBox.cpp │ ├── UIComboBox.h │ ├── UIDateTime.cpp │ ├── UIDateTime.h │ ├── UIEdit.cpp │ ├── UIEdit.h │ ├── UIFadeButton.cpp │ ├── UIFadeButton.h │ ├── UIFlash.cpp │ ├── UIFlash.h │ ├── UIGifAnim.cpp │ ├── UIGifAnim.h │ ├── UIGifAnimEx.cpp │ ├── UIGifAnimEx.h │ ├── UIGroupBox.cpp │ ├── UIGroupBox.h │ ├── UIHotKey.cpp │ ├── UIHotKey.h │ ├── UIIPAddress.cpp │ ├── UIIPAddress.h │ ├── UIIPAddressEx.cpp │ ├── UIIPAddressEx.h │ ├── UILabel.cpp │ ├── UILabel.h │ ├── UIList.cpp │ ├── UIList.h │ ├── UIListEx.cpp │ ├── UIListEx.h │ ├── UIMenu.cpp │ ├── UIMenu.h │ ├── UIOption.cpp │ ├── UIOption.h │ ├── UIProgress.cpp │ ├── UIProgress.h │ ├── UIRichEdit.cpp │ ├── UIRichEdit.h │ ├── UIRing.cpp │ ├── UIRing.h │ ├── UIRollText.cpp │ ├── UIRollText.h │ ├── UIScrollBar.cpp │ ├── UIScrollBar.h │ ├── UISlider.cpp │ ├── UISlider.h │ ├── UIText.cpp │ ├── UIText.h │ ├── UITreeView.cpp │ ├── UITreeView.h │ ├── UIWebBrowser.cpp │ └── UIWebBrowser.h ├── Core │ ├── ControlFactory.cpp │ ├── ControlFactory.h │ ├── UIBase.cpp │ ├── UIBase.h │ ├── UIContainer.cpp │ ├── UIContainer.h │ ├── UIControl.cpp │ ├── UIControl.h │ ├── UIDefine.h │ ├── UIDlgBuilder.cpp │ ├── UIDlgBuilder.h │ ├── UIManager.cpp │ ├── UIManager.h │ ├── UIMarkup.cpp │ ├── UIMarkup.h │ ├── UIRender.cpp │ ├── UIRender.h │ ├── UIResourceManager.cpp │ └── UIResourceManager.h ├── DuiLib.vcxproj ├── DuiLib.vcxproj.filters ├── Layout │ ├── UIAnimationTabLayout.cpp │ ├── UIAnimationTabLayout.h │ ├── UIChildLayout.cpp │ ├── UIChildLayout.h │ ├── UIHorizontalLayout.cpp │ ├── UIHorizontalLayout.h │ ├── UITabLayout.cpp │ ├── UITabLayout.h │ ├── UITileLayout.cpp │ ├── UITileLayout.h │ ├── UIVerticalLayout.cpp │ └── UIVerticalLayout.h ├── StdAfx.cpp ├── StdAfx.h ├── UIlib.cpp ├── UIlib.h ├── Utils │ ├── DPI.cpp │ ├── DPI.h │ ├── DragDropImpl.cpp │ ├── DragDropImpl.h │ ├── Flash11.tlb │ ├── FlashEventHandler.h │ ├── TrayIcon.cpp │ ├── TrayIcon.h │ ├── UIDelegate.cpp │ ├── UIDelegate.h │ ├── UIShadow.cpp │ ├── UIShadow.h │ ├── Utils.cpp │ ├── Utils.h │ ├── VersionHelpers.h │ ├── WebBrowserEventHandler.h │ ├── WinImplBase.cpp │ ├── WinImplBase.h │ ├── ZipApi.h │ ├── downloadmgr.h │ ├── flash11.tlh │ ├── observer_impl_base.h │ ├── stb_image.h │ ├── unzip.cpp │ ├── unzip.h │ ├── zip.cpp │ └── zip.h ├── duilib.vcxproj.user └── 属性列表.html ├── FFPlayer.cpp ├── FFPlayer.h ├── Ini.cpp ├── Ini.h ├── QPlayer.cpp ├── QPlayer.h ├── QPlayer.rc ├── QPlayer.sln ├── QPlayer.vcxproj ├── QPlayer.vcxproj.filters ├── README.md ├── UICombox.cpp ├── UICombox.h ├── UIWnd.h ├── VideoWnd.cpp ├── VideoWnd.h ├── audio ├── AudioPlay.cpp ├── AudioPlay.h ├── AudioRec.cpp ├── AudioRec.h ├── IVolume.h ├── VolumeCtrl.cpp ├── VolumeCtrl.h ├── VolumeInXXX.cpp ├── VolumeInXXX.h ├── VolumeOutWave.cpp ├── VolumeOutWave.h ├── WaveBase.cpp ├── WaveBase.h ├── WaveIn.cpp ├── WaveIn.h ├── WaveOut.cpp └── WaveOut.h ├── dlna ├── OnvifDevice.cpp ├── OnvifDevice.h ├── UPnP技术总结.docx ├── UpnpRender.cpp ├── UpnpRender.h ├── UpnpServer.cpp ├── UpnpServer.h ├── hstring.cpp ├── hstring.h ├── httplib.cc ├── httplib.h ├── httplib.md ├── pugiconfig.hpp ├── pugixml.cpp ├── pugixml.hpp ├── pugixml.md ├── 一文读懂UPNP-UPNP超详细介绍.docx └── 基于DLNA实现iOS,Android投屏.md ├── doc ├── FFmpeg RTP 100ms以下超低音频流推送设置.md ├── FFmpeg超低延迟视频推流笔记.md └── ffmpeg解码降低延迟记录.md ├── ffmpeg ├── LICENSE.txt ├── README.txt ├── bin │ ├── avcodec-57.dll │ ├── avdevice-57.dll │ ├── avfilter-6.dll │ ├── avformat-57.dll │ ├── avutil-55.dll │ ├── ffmpeg.exe │ ├── ffplay.exe │ ├── ffprobe.exe │ ├── libcrypto-1_1.dll │ ├── libssl-1_1.dll │ ├── postproc-54.dll │ ├── swresample-2.dll │ └── swscale-4.dll ├── doc │ ├── bootstrap.min.css │ ├── default.css │ ├── developer.html │ ├── faq.html │ ├── fate.html │ ├── ffmpeg-all.html │ ├── ffmpeg-bitstream-filters.html │ ├── ffmpeg-codecs.html │ ├── ffmpeg-devices.html │ ├── ffmpeg-filters.html │ ├── ffmpeg-formats.html │ ├── ffmpeg-protocols.html │ ├── ffmpeg-resampler.html │ ├── ffmpeg-scaler.html │ ├── ffmpeg-utils.html │ ├── ffmpeg.html │ ├── ffplay-all.html │ ├── ffplay.html │ ├── ffprobe-all.html │ ├── ffprobe.html │ ├── general.html │ ├── git-howto.html │ ├── libavcodec.html │ ├── libavdevice.html │ ├── libavfilter.html │ ├── libavformat.html │ ├── libavutil.html │ ├── libswresample.html │ ├── libswscale.html │ ├── mailing-list-faq.html │ ├── nut.html │ ├── platform.html │ └── style.min.css ├── examples │ ├── Makefile │ ├── README │ ├── avio_dir_cmd.c │ ├── avio_reading.c │ ├── decode_audio.c │ ├── decode_video.c │ ├── demuxing_decoding.c │ ├── encode_audio.c │ ├── encode_video.c │ ├── extract_mvs.c │ ├── filter_audio.c │ ├── filtering_audio.c │ ├── filtering_video.c │ ├── http_multiclient.c │ ├── hw_decode.c │ ├── metadata.c │ ├── muxing.c │ ├── qsvdec.c │ ├── remuxing.c │ ├── resampling_audio.c │ ├── scaling_video.c │ ├── transcode_aac.c │ └── transcoding.c ├── include │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── d3d11va.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── qsv.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── avfilter.h │ │ ├── avfiltergraph.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── des.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── spherical.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ ├── libswscale │ │ ├── swscale.h │ │ └── version.h │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── applink.c │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h ├── lib │ ├── avcodec-57.def │ ├── avcodec.lib │ ├── avdevice-57.def │ ├── avdevice.lib │ ├── avfilter-6.def │ ├── avfilter.lib │ ├── avformat-57.def │ ├── avformat.lib │ ├── avutil-55.def │ ├── avutil.lib │ ├── libavcodec.dll.a │ ├── libavdevice.dll.a │ ├── libavfilter.dll.a │ ├── libavformat.dll.a │ ├── libavutil.dll.a │ ├── libcrypto32.lib │ ├── libpostproc.dll.a │ ├── libssl32.lib │ ├── libswresample.dll.a │ ├── libswscale.dll.a │ ├── postproc-54.def │ ├── postproc.lib │ ├── swresample-2.def │ ├── swresample.lib │ ├── swscale-4.def │ └── swscale.lib └── presets │ ├── ffprobe.xsd │ ├── libvpx-1080p.ffpreset │ ├── libvpx-1080p50_60.ffpreset │ ├── libvpx-360p.ffpreset │ ├── libvpx-720p.ffpreset │ └── libvpx-720p50_60.ffpreset ├── ffmpeg教程.pdf ├── main.cpp ├── player.ico ├── resource.h └── skin.zip /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.vs -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DrawVideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/DrawVideo.cc -------------------------------------------------------------------------------- /DrawVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/DrawVideo.h -------------------------------------------------------------------------------- /Duilib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/CMakeLists.txt -------------------------------------------------------------------------------- /Duilib/Control/UIActiveX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIActiveX.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIActiveX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIActiveX.h -------------------------------------------------------------------------------- /Duilib/Control/UIAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIAnimation.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIAnimation.h -------------------------------------------------------------------------------- /Duilib/Control/UIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIButton.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIButton.h -------------------------------------------------------------------------------- /Duilib/Control/UIColorPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIColorPalette.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIColorPalette.h -------------------------------------------------------------------------------- /Duilib/Control/UICombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UICombo.cpp -------------------------------------------------------------------------------- /Duilib/Control/UICombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UICombo.h -------------------------------------------------------------------------------- /Duilib/Control/UIComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIComboBox.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIComboBox.h -------------------------------------------------------------------------------- /Duilib/Control/UIDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIDateTime.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIDateTime.h -------------------------------------------------------------------------------- /Duilib/Control/UIEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIEdit.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIEdit.h -------------------------------------------------------------------------------- /Duilib/Control/UIFadeButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIFadeButton.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIFadeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIFadeButton.h -------------------------------------------------------------------------------- /Duilib/Control/UIFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIFlash.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIFlash.h -------------------------------------------------------------------------------- /Duilib/Control/UIGifAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGifAnim.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIGifAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGifAnim.h -------------------------------------------------------------------------------- /Duilib/Control/UIGifAnimEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGifAnimEx.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIGifAnimEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGifAnimEx.h -------------------------------------------------------------------------------- /Duilib/Control/UIGroupBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGroupBox.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIGroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIGroupBox.h -------------------------------------------------------------------------------- /Duilib/Control/UIHotKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIHotKey.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIHotKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIHotKey.h -------------------------------------------------------------------------------- /Duilib/Control/UIIPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIIPAddress.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIIPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIIPAddress.h -------------------------------------------------------------------------------- /Duilib/Control/UIIPAddressEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIIPAddressEx.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIIPAddressEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIIPAddressEx.h -------------------------------------------------------------------------------- /Duilib/Control/UILabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UILabel.cpp -------------------------------------------------------------------------------- /Duilib/Control/UILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UILabel.h -------------------------------------------------------------------------------- /Duilib/Control/UIList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIList.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIList.h -------------------------------------------------------------------------------- /Duilib/Control/UIListEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIListEx.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIListEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIListEx.h -------------------------------------------------------------------------------- /Duilib/Control/UIMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIMenu.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIMenu.h -------------------------------------------------------------------------------- /Duilib/Control/UIOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIOption.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIOption.h -------------------------------------------------------------------------------- /Duilib/Control/UIProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIProgress.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIProgress.h -------------------------------------------------------------------------------- /Duilib/Control/UIRichEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRichEdit.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIRichEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRichEdit.h -------------------------------------------------------------------------------- /Duilib/Control/UIRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRing.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRing.h -------------------------------------------------------------------------------- /Duilib/Control/UIRollText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRollText.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIRollText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIRollText.h -------------------------------------------------------------------------------- /Duilib/Control/UIScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIScrollBar.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIScrollBar.h -------------------------------------------------------------------------------- /Duilib/Control/UISlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UISlider.cpp -------------------------------------------------------------------------------- /Duilib/Control/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UISlider.h -------------------------------------------------------------------------------- /Duilib/Control/UIText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIText.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIText.h -------------------------------------------------------------------------------- /Duilib/Control/UITreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UITreeView.cpp -------------------------------------------------------------------------------- /Duilib/Control/UITreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UITreeView.h -------------------------------------------------------------------------------- /Duilib/Control/UIWebBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIWebBrowser.cpp -------------------------------------------------------------------------------- /Duilib/Control/UIWebBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Control/UIWebBrowser.h -------------------------------------------------------------------------------- /Duilib/Core/ControlFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/ControlFactory.cpp -------------------------------------------------------------------------------- /Duilib/Core/ControlFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/ControlFactory.h -------------------------------------------------------------------------------- /Duilib/Core/UIBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIBase.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIBase.h -------------------------------------------------------------------------------- /Duilib/Core/UIContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIContainer.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIContainer.h -------------------------------------------------------------------------------- /Duilib/Core/UIControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIControl.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIControl.h -------------------------------------------------------------------------------- /Duilib/Core/UIDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIDefine.h -------------------------------------------------------------------------------- /Duilib/Core/UIDlgBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIDlgBuilder.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIDlgBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIDlgBuilder.h -------------------------------------------------------------------------------- /Duilib/Core/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIManager.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIManager.h -------------------------------------------------------------------------------- /Duilib/Core/UIMarkup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIMarkup.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIMarkup.h -------------------------------------------------------------------------------- /Duilib/Core/UIRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIRender.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIRender.h -------------------------------------------------------------------------------- /Duilib/Core/UIResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIResourceManager.cpp -------------------------------------------------------------------------------- /Duilib/Core/UIResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Core/UIResourceManager.h -------------------------------------------------------------------------------- /Duilib/DuiLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/DuiLib.vcxproj -------------------------------------------------------------------------------- /Duilib/DuiLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/DuiLib.vcxproj.filters -------------------------------------------------------------------------------- /Duilib/Layout/UIAnimationTabLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIAnimationTabLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UIAnimationTabLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIAnimationTabLayout.h -------------------------------------------------------------------------------- /Duilib/Layout/UIChildLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIChildLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UIChildLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIChildLayout.h -------------------------------------------------------------------------------- /Duilib/Layout/UIHorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIHorizontalLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UIHorizontalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIHorizontalLayout.h -------------------------------------------------------------------------------- /Duilib/Layout/UITabLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UITabLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UITabLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UITabLayout.h -------------------------------------------------------------------------------- /Duilib/Layout/UITileLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UITileLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UITileLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UITileLayout.h -------------------------------------------------------------------------------- /Duilib/Layout/UIVerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIVerticalLayout.cpp -------------------------------------------------------------------------------- /Duilib/Layout/UIVerticalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Layout/UIVerticalLayout.h -------------------------------------------------------------------------------- /Duilib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/StdAfx.cpp -------------------------------------------------------------------------------- /Duilib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/StdAfx.h -------------------------------------------------------------------------------- /Duilib/UIlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/UIlib.cpp -------------------------------------------------------------------------------- /Duilib/UIlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/UIlib.h -------------------------------------------------------------------------------- /Duilib/Utils/DPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/DPI.cpp -------------------------------------------------------------------------------- /Duilib/Utils/DPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/DPI.h -------------------------------------------------------------------------------- /Duilib/Utils/DragDropImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/DragDropImpl.cpp -------------------------------------------------------------------------------- /Duilib/Utils/DragDropImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/DragDropImpl.h -------------------------------------------------------------------------------- /Duilib/Utils/Flash11.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/Flash11.tlb -------------------------------------------------------------------------------- /Duilib/Utils/FlashEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/FlashEventHandler.h -------------------------------------------------------------------------------- /Duilib/Utils/TrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/TrayIcon.cpp -------------------------------------------------------------------------------- /Duilib/Utils/TrayIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/TrayIcon.h -------------------------------------------------------------------------------- /Duilib/Utils/UIDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/UIDelegate.cpp -------------------------------------------------------------------------------- /Duilib/Utils/UIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/UIDelegate.h -------------------------------------------------------------------------------- /Duilib/Utils/UIShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/UIShadow.cpp -------------------------------------------------------------------------------- /Duilib/Utils/UIShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/UIShadow.h -------------------------------------------------------------------------------- /Duilib/Utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/Utils.cpp -------------------------------------------------------------------------------- /Duilib/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/Utils.h -------------------------------------------------------------------------------- /Duilib/Utils/VersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/VersionHelpers.h -------------------------------------------------------------------------------- /Duilib/Utils/WebBrowserEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/WebBrowserEventHandler.h -------------------------------------------------------------------------------- /Duilib/Utils/WinImplBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/WinImplBase.cpp -------------------------------------------------------------------------------- /Duilib/Utils/WinImplBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/WinImplBase.h -------------------------------------------------------------------------------- /Duilib/Utils/ZipApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/ZipApi.h -------------------------------------------------------------------------------- /Duilib/Utils/downloadmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/downloadmgr.h -------------------------------------------------------------------------------- /Duilib/Utils/flash11.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/flash11.tlh -------------------------------------------------------------------------------- /Duilib/Utils/observer_impl_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/observer_impl_base.h -------------------------------------------------------------------------------- /Duilib/Utils/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/stb_image.h -------------------------------------------------------------------------------- /Duilib/Utils/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/unzip.cpp -------------------------------------------------------------------------------- /Duilib/Utils/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/unzip.h -------------------------------------------------------------------------------- /Duilib/Utils/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/zip.cpp -------------------------------------------------------------------------------- /Duilib/Utils/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/Utils/zip.h -------------------------------------------------------------------------------- /Duilib/duilib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/duilib.vcxproj.user -------------------------------------------------------------------------------- /Duilib/属性列表.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Duilib/属性列表.html -------------------------------------------------------------------------------- /FFPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/FFPlayer.cpp -------------------------------------------------------------------------------- /FFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/FFPlayer.h -------------------------------------------------------------------------------- /Ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Ini.cpp -------------------------------------------------------------------------------- /Ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/Ini.h -------------------------------------------------------------------------------- /QPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.cpp -------------------------------------------------------------------------------- /QPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.h -------------------------------------------------------------------------------- /QPlayer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.rc -------------------------------------------------------------------------------- /QPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.sln -------------------------------------------------------------------------------- /QPlayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.vcxproj -------------------------------------------------------------------------------- /QPlayer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/QPlayer.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/README.md -------------------------------------------------------------------------------- /UICombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/UICombox.cpp -------------------------------------------------------------------------------- /UICombox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/UICombox.h -------------------------------------------------------------------------------- /UIWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/UIWnd.h -------------------------------------------------------------------------------- /VideoWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/VideoWnd.cpp -------------------------------------------------------------------------------- /VideoWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/VideoWnd.h -------------------------------------------------------------------------------- /audio/AudioPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/AudioPlay.cpp -------------------------------------------------------------------------------- /audio/AudioPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/AudioPlay.h -------------------------------------------------------------------------------- /audio/AudioRec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/AudioRec.cpp -------------------------------------------------------------------------------- /audio/AudioRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/AudioRec.h -------------------------------------------------------------------------------- /audio/IVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/IVolume.h -------------------------------------------------------------------------------- /audio/VolumeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeCtrl.cpp -------------------------------------------------------------------------------- /audio/VolumeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeCtrl.h -------------------------------------------------------------------------------- /audio/VolumeInXXX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeInXXX.cpp -------------------------------------------------------------------------------- /audio/VolumeInXXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeInXXX.h -------------------------------------------------------------------------------- /audio/VolumeOutWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeOutWave.cpp -------------------------------------------------------------------------------- /audio/VolumeOutWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/VolumeOutWave.h -------------------------------------------------------------------------------- /audio/WaveBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveBase.cpp -------------------------------------------------------------------------------- /audio/WaveBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveBase.h -------------------------------------------------------------------------------- /audio/WaveIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveIn.cpp -------------------------------------------------------------------------------- /audio/WaveIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveIn.h -------------------------------------------------------------------------------- /audio/WaveOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveOut.cpp -------------------------------------------------------------------------------- /audio/WaveOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/audio/WaveOut.h -------------------------------------------------------------------------------- /dlna/OnvifDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/OnvifDevice.cpp -------------------------------------------------------------------------------- /dlna/OnvifDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/OnvifDevice.h -------------------------------------------------------------------------------- /dlna/UPnP技术总结.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/UPnP技术总结.docx -------------------------------------------------------------------------------- /dlna/UpnpRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/UpnpRender.cpp -------------------------------------------------------------------------------- /dlna/UpnpRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/UpnpRender.h -------------------------------------------------------------------------------- /dlna/UpnpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/UpnpServer.cpp -------------------------------------------------------------------------------- /dlna/UpnpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/UpnpServer.h -------------------------------------------------------------------------------- /dlna/hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/hstring.cpp -------------------------------------------------------------------------------- /dlna/hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/hstring.h -------------------------------------------------------------------------------- /dlna/httplib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/httplib.cc -------------------------------------------------------------------------------- /dlna/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/httplib.h -------------------------------------------------------------------------------- /dlna/httplib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/httplib.md -------------------------------------------------------------------------------- /dlna/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/pugiconfig.hpp -------------------------------------------------------------------------------- /dlna/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/pugixml.cpp -------------------------------------------------------------------------------- /dlna/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/pugixml.hpp -------------------------------------------------------------------------------- /dlna/pugixml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/pugixml.md -------------------------------------------------------------------------------- /dlna/一文读懂UPNP-UPNP超详细介绍.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/一文读懂UPNP-UPNP超详细介绍.docx -------------------------------------------------------------------------------- /dlna/基于DLNA实现iOS,Android投屏.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/dlna/基于DLNA实现iOS,Android投屏.md -------------------------------------------------------------------------------- /doc/FFmpeg RTP 100ms以下超低音频流推送设置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/doc/FFmpeg RTP 100ms以下超低音频流推送设置.md -------------------------------------------------------------------------------- /doc/FFmpeg超低延迟视频推流笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/doc/FFmpeg超低延迟视频推流笔记.md -------------------------------------------------------------------------------- /doc/ffmpeg解码降低延迟记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/doc/ffmpeg解码降低延迟记录.md -------------------------------------------------------------------------------- /ffmpeg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/LICENSE.txt -------------------------------------------------------------------------------- /ffmpeg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/README.txt -------------------------------------------------------------------------------- /ffmpeg/bin/avcodec-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/avcodec-57.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avdevice-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/avdevice-57.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avfilter-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/avfilter-6.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avformat-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/avformat-57.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avutil-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/avutil-55.dll -------------------------------------------------------------------------------- /ffmpeg/bin/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/ffmpeg.exe -------------------------------------------------------------------------------- /ffmpeg/bin/ffplay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/ffplay.exe -------------------------------------------------------------------------------- /ffmpeg/bin/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/ffprobe.exe -------------------------------------------------------------------------------- /ffmpeg/bin/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/libcrypto-1_1.dll -------------------------------------------------------------------------------- /ffmpeg/bin/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/libssl-1_1.dll -------------------------------------------------------------------------------- /ffmpeg/bin/postproc-54.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/postproc-54.dll -------------------------------------------------------------------------------- /ffmpeg/bin/swresample-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/swresample-2.dll -------------------------------------------------------------------------------- /ffmpeg/bin/swscale-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/bin/swscale-4.dll -------------------------------------------------------------------------------- /ffmpeg/doc/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/bootstrap.min.css -------------------------------------------------------------------------------- /ffmpeg/doc/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/default.css -------------------------------------------------------------------------------- /ffmpeg/doc/developer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/developer.html -------------------------------------------------------------------------------- /ffmpeg/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/faq.html -------------------------------------------------------------------------------- /ffmpeg/doc/fate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/fate.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-all.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-bitstream-filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-bitstream-filters.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-codecs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-codecs.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-devices.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-filters.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-formats.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-protocols.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-resampler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-resampler.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-scaler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-scaler.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg-utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg-utils.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffmpeg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffmpeg.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffplay-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffplay-all.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffplay.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffprobe-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffprobe-all.html -------------------------------------------------------------------------------- /ffmpeg/doc/ffprobe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/ffprobe.html -------------------------------------------------------------------------------- /ffmpeg/doc/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/general.html -------------------------------------------------------------------------------- /ffmpeg/doc/git-howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/git-howto.html -------------------------------------------------------------------------------- /ffmpeg/doc/libavcodec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libavcodec.html -------------------------------------------------------------------------------- /ffmpeg/doc/libavdevice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libavdevice.html -------------------------------------------------------------------------------- /ffmpeg/doc/libavfilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libavfilter.html -------------------------------------------------------------------------------- /ffmpeg/doc/libavformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libavformat.html -------------------------------------------------------------------------------- /ffmpeg/doc/libavutil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libavutil.html -------------------------------------------------------------------------------- /ffmpeg/doc/libswresample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libswresample.html -------------------------------------------------------------------------------- /ffmpeg/doc/libswscale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/libswscale.html -------------------------------------------------------------------------------- /ffmpeg/doc/mailing-list-faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/mailing-list-faq.html -------------------------------------------------------------------------------- /ffmpeg/doc/nut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/nut.html -------------------------------------------------------------------------------- /ffmpeg/doc/platform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/platform.html -------------------------------------------------------------------------------- /ffmpeg/doc/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/doc/style.min.css -------------------------------------------------------------------------------- /ffmpeg/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/Makefile -------------------------------------------------------------------------------- /ffmpeg/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/README -------------------------------------------------------------------------------- /ffmpeg/examples/avio_dir_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/avio_dir_cmd.c -------------------------------------------------------------------------------- /ffmpeg/examples/avio_reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/avio_reading.c -------------------------------------------------------------------------------- /ffmpeg/examples/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/decode_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/decode_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/demuxing_decoding.c -------------------------------------------------------------------------------- /ffmpeg/examples/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/encode_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/encode_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/extract_mvs.c -------------------------------------------------------------------------------- /ffmpeg/examples/filter_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/filter_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/filtering_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/filtering_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/filtering_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/filtering_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/http_multiclient.c -------------------------------------------------------------------------------- /ffmpeg/examples/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/hw_decode.c -------------------------------------------------------------------------------- /ffmpeg/examples/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/metadata.c -------------------------------------------------------------------------------- /ffmpeg/examples/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/muxing.c -------------------------------------------------------------------------------- /ffmpeg/examples/qsvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/qsvdec.c -------------------------------------------------------------------------------- /ffmpeg/examples/remuxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/remuxing.c -------------------------------------------------------------------------------- /ffmpeg/examples/resampling_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/resampling_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/scaling_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/scaling_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/transcode_aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/transcode_aac.c -------------------------------------------------------------------------------- /ffmpeg/examples/transcoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/examples/transcoding.c -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/jni.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/vda.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/buffer.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/camellia.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/cast5.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/des.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/display.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/frame.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hash.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hmac.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/macros.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/rc4.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/sha512.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/spherical.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/tea.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/tree.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/twofish.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /ffmpeg/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libpostproc/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /ffmpeg/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libswresample/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /ffmpeg/include/openssl/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /ffmpeg/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/aes.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/applink.c -------------------------------------------------------------------------------- /ffmpeg/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/asn1.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/asn1err.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/asn1t.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/async.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/bio.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/bioerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/blowfish.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/bn.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/bnerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/buffer.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/buffererr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/camellia.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cast.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cmac.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cms.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cmserr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/comp.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/comperr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/conf.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/conf_api.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/conferr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/crypto.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ct.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/cterr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/des.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/dh.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/dherr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/dsa.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/dtls1.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/e_os2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ec.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ecdh.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ecerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/engine.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/engineerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/err.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/evp.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/evperr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/hmac.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/idea.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/kdf.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/kdferr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/lhash.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/md2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/md4.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/md5.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/mdc2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/modes.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/objects.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/objectserr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ocsp.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/opensslv.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pem.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pem2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pemerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rand.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rand_drbg.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/randerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rc2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rc4.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rc5.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ripemd.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rsa.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/safestack.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/seed.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/sha.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/srp.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/srtp.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ssl.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ssl2.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ssl3.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/sslerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/stack.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/store.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/storeerr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/symhacks.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/tls1.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ts.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/tserr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/txt_db.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/ui.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/uierr.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/x509.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/x509err.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/x509v3.h -------------------------------------------------------------------------------- /ffmpeg/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /ffmpeg/lib/avcodec-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avcodec-57.def -------------------------------------------------------------------------------- /ffmpeg/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avcodec.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avdevice-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avdevice-57.def -------------------------------------------------------------------------------- /ffmpeg/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avdevice.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avfilter-6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avfilter-6.def -------------------------------------------------------------------------------- /ffmpeg/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avfilter.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avformat-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avformat-57.def -------------------------------------------------------------------------------- /ffmpeg/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avformat.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avutil-55.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avutil-55.def -------------------------------------------------------------------------------- /ffmpeg/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/avutil.lib -------------------------------------------------------------------------------- /ffmpeg/lib/libavcodec.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libavcodec.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavdevice.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libavdevice.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavfilter.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libavfilter.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavformat.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libavformat.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavutil.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libavutil.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libcrypto32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libcrypto32.lib -------------------------------------------------------------------------------- /ffmpeg/lib/libpostproc.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libpostproc.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libssl32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libssl32.lib -------------------------------------------------------------------------------- /ffmpeg/lib/libswresample.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libswresample.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libswscale.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/libswscale.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/postproc-54.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/postproc-54.def -------------------------------------------------------------------------------- /ffmpeg/lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/postproc.lib -------------------------------------------------------------------------------- /ffmpeg/lib/swresample-2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/swresample-2.def -------------------------------------------------------------------------------- /ffmpeg/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/swresample.lib -------------------------------------------------------------------------------- /ffmpeg/lib/swscale-4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/swscale-4.def -------------------------------------------------------------------------------- /ffmpeg/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/lib/swscale.lib -------------------------------------------------------------------------------- /ffmpeg/presets/ffprobe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/ffprobe.xsd -------------------------------------------------------------------------------- /ffmpeg/presets/libvpx-1080p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/libvpx-1080p.ffpreset -------------------------------------------------------------------------------- /ffmpeg/presets/libvpx-1080p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/libvpx-1080p50_60.ffpreset -------------------------------------------------------------------------------- /ffmpeg/presets/libvpx-360p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/libvpx-360p.ffpreset -------------------------------------------------------------------------------- /ffmpeg/presets/libvpx-720p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/libvpx-720p.ffpreset -------------------------------------------------------------------------------- /ffmpeg/presets/libvpx-720p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg/presets/libvpx-720p50_60.ffpreset -------------------------------------------------------------------------------- /ffmpeg教程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/ffmpeg教程.pdf -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/main.cpp -------------------------------------------------------------------------------- /player.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/player.ico -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/resource.h -------------------------------------------------------------------------------- /skin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdxc/QPlayer/HEAD/skin.zip --------------------------------------------------------------------------------