├── MPCBEShellExt.sln ├── MPCTestAPI.sln ├── contrib └── sign.cmd ├── distrib ├── DirectX │ ├── x64 │ │ ├── d3dcompiler_47.dll │ │ └── d3dx9_43.dll │ └── x86 │ │ ├── d3dcompiler_47.dll │ │ └── d3dx9_43.dll ├── Languages │ ├── Basque.isl │ ├── Belarusian.isl │ ├── ChineseSimplified.isl │ ├── ChineseTraditional.isl │ ├── German.isl │ ├── Korean.isl │ ├── Romanian.isl │ ├── Slovak.isl │ └── Swedish.isl ├── Shaders │ ├── 0-255 to 16-235.hlsl │ ├── 16-235 to 0-255 [SD].hlsl │ ├── 16-235 to 0-255 [SD][HD].hlsl │ ├── Adaptive sharpen.hlsl │ ├── BT.601 to BT.709.hlsl │ ├── LCD angle correction.hlsl │ ├── YV12 Chroma Upsampling.hlsl │ ├── contour.hlsl │ ├── deinterlace (blend).hlsl │ ├── denoise.hlsl │ ├── edge sharpen.hlsl │ ├── emboss.hlsl │ ├── grayscale.hlsl │ ├── invert.hlsl │ ├── letterbox.hlsl │ ├── nightvision.hlsl │ ├── procamp.hlsl │ ├── sharpen complex 2.hlsl │ ├── sharpen complex.hlsl │ ├── sharpen.hlsl │ ├── sphere.hlsl │ ├── spotlight.hlsl │ ├── threshold.hlsl │ └── wave.hlsl ├── WizardImageFile.bmp ├── WizardSmallImageFile.bmp ├── custom_messages.iss └── mpc-be_setup.iss ├── docs ├── Authors mpc-hc team.txt ├── Authors.txt ├── COPYING.txt ├── Changelog.Rus.txt ├── Changelog.txt ├── Compilation.txt ├── Readme.txt ├── Release.txt └── custom_code │ ├── Little-CMS.txt │ ├── VirtualDub.txt │ ├── ffmpeg.txt │ └── soxr.txt ├── include ├── FilterInterfaces.h ├── HighDPI.h ├── IBitRateInfo.h ├── IBufferControl.h ├── IBufferInfo.h ├── IChapterInfo.h ├── IFilterVersion.h ├── IKeyFrameInfo.h ├── IMediaSample3D.h ├── IMediaSideData.h ├── ITrackInfo.h ├── LAVVideoSettings.h ├── MediaOffset3D.h ├── SubRenderIntf.h ├── Utf8.h ├── Version.h ├── Version_rev.h.in ├── adl │ ├── adl_defines.h │ ├── adl_sdk.h │ └── adl_structures.h ├── avisynth │ ├── avisynth1.h │ └── avisynth25.h ├── basestruct.h ├── detours │ └── detours.h ├── dsm │ └── dsm.h ├── dx │ ├── d3d.h │ ├── d3dcaps.h │ ├── d3dtypes.h │ ├── d3dx9.h │ ├── d3dx9anim.h │ ├── d3dx9core.h │ ├── d3dx9effect.h │ ├── d3dx9math.h │ ├── d3dx9math.inl │ ├── d3dx9mesh.h │ ├── d3dx9shader.h │ ├── d3dx9shape.h │ ├── d3dx9tex.h │ └── d3dx9xof.h ├── inttypes.h ├── lglcd │ └── lglcd.h ├── libdivide.h ├── moreuuids.h ├── mpc_defines.h ├── mvrInterfaces.h ├── stdafx_common.h ├── stdafx_common_dshow.h ├── vd2 │ ├── VDXFrame │ │ ├── Unknown.h │ │ ├── VideoFilter.h │ │ ├── VideoFilterDialog.h │ │ └── VideoFilterEntry.h │ ├── extras │ │ └── FilterSDK │ │ │ ├── Filter.h │ │ │ ├── ScriptError.h │ │ │ ├── ScriptInterpreter.h │ │ │ ├── ScriptValue.h │ │ │ ├── VBitmap.h │ │ │ └── VirtualDub.h │ └── plugin │ │ ├── vdaudiofilt.h │ │ ├── vdinputdriver.h │ │ ├── vdplugin.h │ │ ├── vdvideofilt.h │ │ └── vdvideoutil.h └── winddk │ ├── devioctl.h │ ├── ntddcdrm.h │ ├── ntddcdvd.h │ ├── ntdddisk.h │ └── ntddstor.h ├── lib ├── detours.lib ├── lgLcd.lib ├── libmfx.lib └── libspeex.a ├── lib64 ├── detours.lib ├── lgLcd.lib ├── libmfx.lib └── libspeex.a ├── mpc-be.sln ├── mpciconlib.sln ├── mpcresources.sln ├── src ├── AudioTools │ ├── AudioHelper.cpp │ ├── AudioHelper.h │ ├── AudioTools.vcxproj │ ├── AudioTools.vcxproj.filters │ ├── BassRedirect.cpp │ ├── BassRedirect.h │ ├── Mixer.cpp │ ├── Mixer.h │ ├── SampleFormat.cpp │ ├── SampleFormat.h │ ├── stdafx.cpp │ └── stdafx.h ├── DSUtil │ ├── ApeTag.cpp │ ├── ApeTag.h │ ├── AudioParser.cpp │ ├── AudioParser.h │ ├── AudioTools.cpp │ ├── AudioTools.h │ ├── CPUInfo.cpp │ ├── CPUInfo.h │ ├── CUE.cpp │ ├── CUE.h │ ├── D3D9Helper.cpp │ ├── D3D9Helper.h │ ├── DSMPropertyBag.cpp │ ├── DSMPropertyBag.h │ ├── DSUtil.cpp │ ├── DSUtil.h │ ├── DSUtil.vcxproj │ ├── DSUtil.vcxproj.filters │ ├── DXVAState.cpp │ ├── DXVAState.h │ ├── FileHandle.cpp │ ├── FileHandle.h │ ├── FileVersion.h │ ├── FileVersionInfo.cpp │ ├── FileVersionInfo.h │ ├── FontInstaller.cpp │ ├── FontInstaller.h │ ├── GUIDString.cpp │ ├── GUIDString.h │ ├── GolombBuffer.cpp │ ├── GolombBuffer.h │ ├── H264Nalu.cpp │ ├── H264Nalu.h │ ├── HTTPAsync.cpp │ ├── HTTPAsync.h │ ├── HdmvClipInfo.cpp │ ├── HdmvClipInfo.h │ ├── ID3Tag.cpp │ ├── ID3Tag.h │ ├── Log.h │ ├── MFCHelper.cpp │ ├── MFCHelper.h │ ├── MPCSocket.cpp │ ├── MPCSocket.h │ ├── MediaDescription.cpp │ ├── MediaDescription.h │ ├── MediaTypeEx.cpp │ ├── MediaTypeEx.h │ ├── Mpeg2Def.h │ ├── NullRenderers.cpp │ ├── NullRenderers.h │ ├── Packet.cpp │ ├── Packet.h │ ├── ResampleRGB32.cpp │ ├── ResampleRGB32.h │ ├── SharedInclude.h │ ├── SimpleBuffer.h │ ├── SysVersion.h │ ├── Utils.cpp │ ├── Utils.h │ ├── VideoParser.cpp │ ├── VideoParser.h │ ├── WinAPIUtils.cpp │ ├── WinAPIUtils.h │ ├── deinterlace.cpp │ ├── ff_log.h │ ├── std_helper.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── text.cpp │ ├── text.h │ ├── vd.cpp │ ├── vd.h │ ├── vd_asm.cpp │ └── vd_asm.h ├── ExtLib │ ├── AsyncReader │ │ ├── AsyncReader.vcxproj │ │ ├── AsyncReader.vcxproj.filters │ │ ├── asyncio.cpp │ │ ├── asyncio.h │ │ ├── asyncrdr.cpp │ │ ├── asyncrdr.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── BaseClasses │ │ ├── BaseClasses.vcxproj │ │ ├── BaseClasses.vcxproj.filters │ │ ├── amextra.cpp │ │ ├── amextra.h │ │ ├── amfilter.cpp │ │ ├── amfilter.h │ │ ├── amvideo.cpp │ │ ├── arithutil.cpp │ │ ├── cache.h │ │ ├── checkbmi.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── cprop.cpp │ │ ├── cprop.h │ │ ├── ctlutil.cpp │ │ ├── ctlutil.h │ │ ├── ddmm.cpp │ │ ├── ddmm.h │ │ ├── dllentry.cpp │ │ ├── dllsetup.cpp │ │ ├── dllsetup.h │ │ ├── dxmperf.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.cpp │ │ ├── mtype.h │ │ ├── outputq.cpp │ │ ├── outputq.h │ │ ├── perflog.cpp │ │ ├── perflog.h │ │ ├── perfstruct.h │ │ ├── pstream.cpp │ │ ├── pstream.h │ │ ├── pullpin.cpp │ │ ├── pullpin.h │ │ ├── refclock.cpp │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.cpp │ │ ├── renbase.h │ │ ├── schedule.cpp │ │ ├── schedule.h │ │ ├── seekpt.cpp │ │ ├── seekpt.h │ │ ├── source.cpp │ │ ├── source.h │ │ ├── stdafx.cpp │ │ ├── streams.h │ │ ├── strmctl.cpp │ │ ├── strmctl.h │ │ ├── sysclock.cpp │ │ ├── sysclock.h │ │ ├── transfrm.cpp │ │ ├── transfrm.h │ │ ├── transip.cpp │ │ ├── transip.h │ │ ├── videoctl.cpp │ │ ├── videoctl.h │ │ ├── vtrans.cpp │ │ ├── vtrans.h │ │ ├── winctrl.cpp │ │ ├── winctrl.h │ │ ├── winutil.cpp │ │ ├── winutil.h │ │ ├── wxdebug.cpp │ │ ├── wxdebug.h │ │ ├── wxlist.cpp │ │ ├── wxlist.h │ │ ├── wxutil.cpp │ │ └── wxutil.h │ ├── Bento4 │ │ ├── Bento4.vcxproj │ │ ├── Bento4.vcxproj.filters │ │ ├── Core │ │ │ ├── Ap4.h │ │ │ ├── Ap4Array.h │ │ │ ├── Ap4Atom.cpp │ │ │ ├── Ap4Atom.h │ │ │ ├── Ap4AtomFactory.cpp │ │ │ ├── Ap4AtomFactory.h │ │ │ ├── Ap4AtomSampleTable.cpp │ │ │ ├── Ap4AtomSampleTable.h │ │ │ ├── Ap4ByteStream.cpp │ │ │ ├── Ap4ByteStream.h │ │ │ ├── Ap4ChapAtom.cpp │ │ │ ├── Ap4ChapAtom.h │ │ │ ├── Ap4ChplAtom.cpp │ │ │ ├── Ap4ChplAtom.h │ │ │ ├── Ap4CmvdAtom.cpp │ │ │ ├── Ap4CmvdAtom.h │ │ │ ├── Ap4Co64Atom.cpp │ │ │ ├── Ap4Co64Atom.h │ │ │ ├── Ap4Config.h │ │ │ ├── Ap4Constants.h │ │ │ ├── Ap4ContainerAtom.cpp │ │ │ ├── Ap4ContainerAtom.h │ │ │ ├── Ap4CttsAtom.cpp │ │ │ ├── Ap4CttsAtom.h │ │ │ ├── Ap4DataAtom.cpp │ │ │ ├── Ap4DataAtom.h │ │ │ ├── Ap4DataBuffer.cpp │ │ │ ├── Ap4DataBuffer.h │ │ │ ├── Ap4DataInfoAtom.cpp │ │ │ ├── Ap4DataInfoAtom.h │ │ │ ├── Ap4DcomAtom.cpp │ │ │ ├── Ap4DcomAtom.h │ │ │ ├── Ap4Debug.cpp │ │ │ ├── Ap4Debug.h │ │ │ ├── Ap4DecoderConfigDescriptor.cpp │ │ │ ├── Ap4DecoderConfigDescriptor.h │ │ │ ├── Ap4DecoderSpecificInfoDescriptor.cpp │ │ │ ├── Ap4DecoderSpecificInfoDescriptor.h │ │ │ ├── Ap4Descriptor.cpp │ │ │ ├── Ap4Descriptor.h │ │ │ ├── Ap4DescriptorFactory.cpp │ │ │ ├── Ap4DescriptorFactory.h │ │ │ ├── Ap4DrefAtom.cpp │ │ │ ├── Ap4DrefAtom.h │ │ │ ├── Ap4Dvc1Atom.cpp │ │ │ ├── Ap4Dvc1Atom.h │ │ │ ├── Ap4ElstAtom.cpp │ │ │ ├── Ap4ElstAtom.h │ │ │ ├── Ap4EndaAtom.cpp │ │ │ ├── Ap4EndaAtom.h │ │ │ ├── Ap4EsDescriptor.cpp │ │ │ ├── Ap4EsDescriptor.h │ │ │ ├── Ap4EsdsAtom.cpp │ │ │ ├── Ap4EsdsAtom.h │ │ │ ├── Ap4File.cpp │ │ │ ├── Ap4File.h │ │ │ ├── Ap4FileByteStream.h │ │ │ ├── Ap4FileWriter.cpp │ │ │ ├── Ap4FileWriter.h │ │ │ ├── Ap4FragmentSampleTable.cpp │ │ │ ├── Ap4FragmentSampleTable.h │ │ │ ├── Ap4FrmaAtom.cpp │ │ │ ├── Ap4FrmaAtom.h │ │ │ ├── Ap4FtabAtom.cpp │ │ │ ├── Ap4FtabAtom.h │ │ │ ├── Ap4FtypAtom.cpp │ │ │ ├── Ap4FtypAtom.h │ │ │ ├── Ap4HdlrAtom.cpp │ │ │ ├── Ap4HdlrAtom.h │ │ │ ├── Ap4HintTrackReader.cpp │ │ │ ├── Ap4HintTrackReader.h │ │ │ ├── Ap4HmhdAtom.cpp │ │ │ ├── Ap4HmhdAtom.h │ │ │ ├── Ap4IkmsAtom.cpp │ │ │ ├── Ap4IkmsAtom.h │ │ │ ├── Ap4Interfaces.h │ │ │ ├── Ap4IsfmAtom.cpp │ │ │ ├── Ap4IsfmAtom.h │ │ │ ├── Ap4IsmaCryp.cpp │ │ │ ├── Ap4IsmaCryp.h │ │ │ ├── Ap4List.h │ │ │ ├── Ap4MdhdAtom.cpp │ │ │ ├── Ap4MdhdAtom.h │ │ │ ├── Ap4MfhdAtom.cpp │ │ │ ├── Ap4MfhdAtom.h │ │ │ ├── Ap4MoovAtom.cpp │ │ │ ├── Ap4MoovAtom.h │ │ │ ├── Ap4Movie.cpp │ │ │ ├── Ap4Movie.h │ │ │ ├── Ap4MvhdAtom.cpp │ │ │ ├── Ap4MvhdAtom.h │ │ │ ├── Ap4NmhdAtom.cpp │ │ │ ├── Ap4NmhdAtom.h │ │ │ ├── Ap4PaspAtom.cpp │ │ │ ├── Ap4PaspAtom.h │ │ │ ├── Ap4Processor.cpp │ │ │ ├── Ap4Processor.h │ │ │ ├── Ap4Results.h │ │ │ ├── Ap4RtpAtom.cpp │ │ │ ├── Ap4RtpAtom.h │ │ │ ├── Ap4RtpHint.cpp │ │ │ ├── Ap4RtpHint.h │ │ │ ├── Ap4SLConfigDescriptor.cpp │ │ │ ├── Ap4SLConfigDescriptor.h │ │ │ ├── Ap4Sample.cpp │ │ │ ├── Ap4Sample.h │ │ │ ├── Ap4SampleDescription.cpp │ │ │ ├── Ap4SampleDescription.h │ │ │ ├── Ap4SampleEntry.cpp │ │ │ ├── Ap4SampleEntry.h │ │ │ ├── Ap4SampleTable.cpp │ │ │ ├── Ap4SampleTable.h │ │ │ ├── Ap4SchmAtom.cpp │ │ │ ├── Ap4SchmAtom.h │ │ │ ├── Ap4SdpAtom.cpp │ │ │ ├── Ap4SdpAtom.h │ │ │ ├── Ap4SidxAtom.cpp │ │ │ ├── Ap4SidxAtom.h │ │ │ ├── Ap4SmhdAtom.cpp │ │ │ ├── Ap4SmhdAtom.h │ │ │ ├── Ap4StcoAtom.cpp │ │ │ ├── Ap4StcoAtom.h │ │ │ ├── Ap4StscAtom.cpp │ │ │ ├── Ap4StscAtom.h │ │ │ ├── Ap4StsdAtom.cpp │ │ │ ├── Ap4StsdAtom.h │ │ │ ├── Ap4StssAtom.cpp │ │ │ ├── Ap4StssAtom.h │ │ │ ├── Ap4StszAtom.cpp │ │ │ ├── Ap4StszAtom.h │ │ │ ├── Ap4SttsAtom.cpp │ │ │ ├── Ap4SttsAtom.h │ │ │ ├── Ap4SyntheticSampleTable.cpp │ │ │ ├── Ap4SyntheticSampleTable.h │ │ │ ├── Ap4TfdtAtom.cpp │ │ │ ├── Ap4TfdtAtom.h │ │ │ ├── Ap4TfhdAtom.cpp │ │ │ ├── Ap4TfhdAtom.h │ │ │ ├── Ap4TimsAtom.cpp │ │ │ ├── Ap4TimsAtom.h │ │ │ ├── Ap4TkhdAtom.cpp │ │ │ ├── Ap4TkhdAtom.h │ │ │ ├── Ap4Track.cpp │ │ │ ├── Ap4Track.h │ │ │ ├── Ap4TrakAtom.cpp │ │ │ ├── Ap4TrakAtom.h │ │ │ ├── Ap4TrefTypeAtom.cpp │ │ │ ├── Ap4TrefTypeAtom.h │ │ │ ├── Ap4TrexAtom.cpp │ │ │ ├── Ap4TrexAtom.h │ │ │ ├── Ap4TrunAtom.cpp │ │ │ ├── Ap4TrunAtom.h │ │ │ ├── Ap4Types.h │ │ │ ├── Ap4UnknownDescriptor.cpp │ │ │ ├── Ap4UnknownDescriptor.h │ │ │ ├── Ap4UrlAtom.cpp │ │ │ ├── Ap4UrlAtom.h │ │ │ ├── Ap4Utils.cpp │ │ │ ├── Ap4Utils.h │ │ │ ├── Ap4VmhdAtom.cpp │ │ │ └── Ap4VmhdAtom.h │ │ ├── Crypto │ │ │ ├── Ap4AesBlockCipher.cpp │ │ │ ├── Ap4AesBlockCipher.h │ │ │ ├── Ap4StreamCipher.cpp │ │ │ └── Ap4StreamCipher.h │ │ ├── LICENSE.txt │ │ └── precomp.cpp │ ├── MediaInfo │ │ ├── Language │ │ │ ├── be.csv │ │ │ ├── ca.csv │ │ │ ├── cs.csv │ │ │ ├── de.csv │ │ │ ├── es.csv │ │ │ ├── eu.csv │ │ │ ├── fr.csv │ │ │ ├── gr.csv │ │ │ ├── hu.csv │ │ │ ├── hy.csv │ │ │ ├── it.csv │ │ │ ├── ja.csv │ │ │ ├── ko.csv │ │ │ ├── nl.csv │ │ │ ├── pl.csv │ │ │ ├── pt-BR.csv │ │ │ ├── ro.csv │ │ │ ├── ru.csv │ │ │ ├── sk.csv │ │ │ ├── sv.csv │ │ │ ├── tr.csv │ │ │ ├── uk.csv │ │ │ ├── zh-CN.csv │ │ │ └── zh-TW.csv │ │ ├── License.html │ │ ├── MediaInfo.vcxproj │ │ ├── MediaInfo.vcxproj.filters │ │ ├── MediaInfo │ │ │ ├── Archive │ │ │ │ ├── File_7z.cpp │ │ │ │ ├── File_7z.h │ │ │ │ ├── File_Ace.cpp │ │ │ │ ├── File_Ace.h │ │ │ │ ├── File_Bzip2.cpp │ │ │ │ ├── File_Bzip2.h │ │ │ │ ├── File_Elf.cpp │ │ │ │ ├── File_Elf.h │ │ │ │ ├── File_Gzip.cpp │ │ │ │ ├── File_Gzip.h │ │ │ │ ├── File_Iso9660.cpp │ │ │ │ ├── File_Iso9660.h │ │ │ │ ├── File_Mz.cpp │ │ │ │ ├── File_Mz.h │ │ │ │ ├── File_Rar.cpp │ │ │ │ ├── File_Rar.h │ │ │ │ ├── File_Tar.cpp │ │ │ │ ├── File_Tar.h │ │ │ │ ├── File_Zip.cpp │ │ │ │ └── File_Zip.h │ │ │ ├── Audio │ │ │ │ ├── File_Aac.cpp │ │ │ │ ├── File_Aac.h │ │ │ │ ├── File_Aac_GeneralAudio.cpp │ │ │ │ ├── File_Aac_GeneralAudio.h │ │ │ │ ├── File_Aac_GeneralAudio_Sbr.cpp │ │ │ │ ├── File_Aac_GeneralAudio_Sbr.h │ │ │ │ ├── File_Aac_GeneralAudio_Sbr_Ps.cpp │ │ │ │ ├── File_Aac_GeneralAudio_Sbr_Ps.h │ │ │ │ ├── File_Aac_Main.cpp │ │ │ │ ├── File_Aac_Others.cpp │ │ │ │ ├── File_Ac3.cpp │ │ │ │ ├── File_Ac3.h │ │ │ │ ├── File_Adpcm.cpp │ │ │ │ ├── File_Adpcm.h │ │ │ │ ├── File_Als.cpp │ │ │ │ ├── File_Als.h │ │ │ │ ├── File_Amr.cpp │ │ │ │ ├── File_Amr.h │ │ │ │ ├── File_Amv.cpp │ │ │ │ ├── File_Amv.h │ │ │ │ ├── File_Ape.cpp │ │ │ │ ├── File_Ape.h │ │ │ │ ├── File_Au.cpp │ │ │ │ ├── File_Au.h │ │ │ │ ├── File_Caf.cpp │ │ │ │ ├── File_Caf.h │ │ │ │ ├── File_Celt.cpp │ │ │ │ ├── File_Celt.h │ │ │ │ ├── File_ChannelGrouping.cpp │ │ │ │ ├── File_ChannelGrouping.h │ │ │ │ ├── File_DolbyE.cpp │ │ │ │ ├── File_DolbyE.h │ │ │ │ ├── File_Dts.cpp │ │ │ │ ├── File_Dts.h │ │ │ │ ├── File_ExtendedModule.cpp │ │ │ │ ├── File_ExtendedModule.h │ │ │ │ ├── File_Flac.cpp │ │ │ │ ├── File_Flac.h │ │ │ │ ├── File_ImpulseTracker.cpp │ │ │ │ ├── File_ImpulseTracker.h │ │ │ │ ├── File_La.cpp │ │ │ │ ├── File_La.h │ │ │ │ ├── File_Midi.cpp │ │ │ │ ├── File_Midi.h │ │ │ │ ├── File_Module.cpp │ │ │ │ ├── File_Module.h │ │ │ │ ├── File_Mpc.cpp │ │ │ │ ├── File_Mpc.h │ │ │ │ ├── File_MpcSv8.cpp │ │ │ │ ├── File_MpcSv8.h │ │ │ │ ├── File_Mpega.cpp │ │ │ │ ├── File_Mpega.h │ │ │ │ ├── File_OpenMG.cpp │ │ │ │ ├── File_OpenMG.h │ │ │ │ ├── File_Opus.cpp │ │ │ │ ├── File_Opus.h │ │ │ │ ├── File_Pcm.cpp │ │ │ │ ├── File_Pcm.h │ │ │ │ ├── File_Pcm_M2ts.cpp │ │ │ │ ├── File_Pcm_M2ts.h │ │ │ │ ├── File_Pcm_Vob.cpp │ │ │ │ ├── File_Pcm_Vob.h │ │ │ │ ├── File_Ps2Audio.cpp │ │ │ │ ├── File_Ps2Audio.h │ │ │ │ ├── File_Rkau.cpp │ │ │ │ ├── File_Rkau.h │ │ │ │ ├── File_ScreamTracker3.cpp │ │ │ │ ├── File_ScreamTracker3.h │ │ │ │ ├── File_SmpteSt0302.cpp │ │ │ │ ├── File_SmpteSt0302.h │ │ │ │ ├── File_SmpteSt0331.cpp │ │ │ │ ├── File_SmpteSt0331.h │ │ │ │ ├── File_SmpteSt0337.cpp │ │ │ │ ├── File_SmpteSt0337.h │ │ │ │ ├── File_Speex.cpp │ │ │ │ ├── File_Speex.h │ │ │ │ ├── File_Tak.cpp │ │ │ │ ├── File_Tak.h │ │ │ │ ├── File_Tta.cpp │ │ │ │ ├── File_Tta.h │ │ │ │ ├── File_TwinVQ.cpp │ │ │ │ ├── File_TwinVQ.h │ │ │ │ ├── File_Vorbis.cpp │ │ │ │ ├── File_Vorbis.h │ │ │ │ ├── File_Wvpk.cpp │ │ │ │ └── File_Wvpk.h │ │ │ ├── Duplicate │ │ │ │ ├── File__Duplicate_MpegTs.cpp │ │ │ │ ├── File__Duplicate_MpegTs.h │ │ │ │ ├── File__Duplicate__Base.cpp │ │ │ │ ├── File__Duplicate__Base.h │ │ │ │ ├── File__Duplicate__Writer.cpp │ │ │ │ └── File__Duplicate__Writer.h │ │ │ ├── Export │ │ │ │ ├── Export_EbuCore.cpp │ │ │ │ ├── Export_EbuCore.h │ │ │ │ ├── Export_Fims.cpp │ │ │ │ ├── Export_Fims.h │ │ │ │ ├── Export_Mpeg7.cpp │ │ │ │ ├── Export_Mpeg7.h │ │ │ │ ├── Export_PBCore.cpp │ │ │ │ ├── Export_PBCore.h │ │ │ │ ├── Export_PBCore2.cpp │ │ │ │ ├── Export_PBCore2.h │ │ │ │ ├── Export_reVTMD.cpp │ │ │ │ └── Export_reVTMD.h │ │ │ ├── File_Dummy.cpp │ │ │ ├── File_Dummy.h │ │ │ ├── File_Other.cpp │ │ │ ├── File_Other.h │ │ │ ├── File_Unknown.cpp │ │ │ ├── File_Unknown.h │ │ │ ├── File__Analyse_Automatic.h │ │ │ ├── File__Analyze.cpp │ │ │ ├── File__Analyze.h │ │ │ ├── File__Analyze_Buffer.cpp │ │ │ ├── File__Analyze_Buffer_MinimizeSize.cpp │ │ │ ├── File__Analyze_Element.cpp │ │ │ ├── File__Analyze_Element.h │ │ │ ├── File__Analyze_MinimizeSize.h │ │ │ ├── File__Analyze_Streams.cpp │ │ │ ├── File__Analyze_Streams_Finish.cpp │ │ │ ├── File__Base.cpp │ │ │ ├── File__Base.h │ │ │ ├── File__Duplicate.cpp │ │ │ ├── File__Duplicate.h │ │ │ ├── File__HasReferences.cpp │ │ │ ├── File__HasReferences.h │ │ │ ├── File__MultipleParsing.cpp │ │ │ ├── File__MultipleParsing.h │ │ │ ├── HashWrapper.cpp │ │ │ ├── HashWrapper.h │ │ │ ├── Image │ │ │ │ ├── File_ArriRaw.cpp │ │ │ │ ├── File_ArriRaw.h │ │ │ │ ├── File_Bmp.cpp │ │ │ │ ├── File_Bmp.h │ │ │ │ ├── File_Bpg.cpp │ │ │ │ ├── File_Bpg.h │ │ │ │ ├── File_Dds.cpp │ │ │ │ ├── File_Dds.h │ │ │ │ ├── File_Dpx.cpp │ │ │ │ ├── File_Dpx.h │ │ │ │ ├── File_Exr.cpp │ │ │ │ ├── File_Exr.h │ │ │ │ ├── File_Gif.cpp │ │ │ │ ├── File_Gif.h │ │ │ │ ├── File_Ico.cpp │ │ │ │ ├── File_Ico.h │ │ │ │ ├── File_Jpeg.cpp │ │ │ │ ├── File_Jpeg.h │ │ │ │ ├── File_Pcx.cpp │ │ │ │ ├── File_Pcx.h │ │ │ │ ├── File_Png.cpp │ │ │ │ ├── File_Png.h │ │ │ │ ├── File_Psd.cpp │ │ │ │ ├── File_Psd.h │ │ │ │ ├── File_Rle.cpp │ │ │ │ ├── File_Rle.h │ │ │ │ ├── File_Tga.cpp │ │ │ │ ├── File_Tga.h │ │ │ │ ├── File_Tiff.cpp │ │ │ │ └── File_Tiff.h │ │ │ ├── MediaInfo.cpp │ │ │ ├── MediaInfo.h │ │ │ ├── MediaInfoList.cpp │ │ │ ├── MediaInfoList.h │ │ │ ├── MediaInfoList_Internal.cpp │ │ │ ├── MediaInfoList_Internal.h │ │ │ ├── MediaInfo_Config.cpp │ │ │ ├── MediaInfo_Config.h │ │ │ ├── MediaInfo_Config_Automatic.cpp │ │ │ ├── MediaInfo_Config_MediaInfo.cpp │ │ │ ├── MediaInfo_Config_MediaInfo.h │ │ │ ├── MediaInfo_Config_PerPackage.cpp │ │ │ ├── MediaInfo_Config_PerPackage.h │ │ │ ├── MediaInfo_Const.h │ │ │ ├── MediaInfo_Events.h │ │ │ ├── MediaInfo_Events_Internal.h │ │ │ ├── MediaInfo_File.cpp │ │ │ ├── MediaInfo_Inform.cpp │ │ │ ├── MediaInfo_Internal.cpp │ │ │ ├── MediaInfo_Internal.h │ │ │ ├── MediaInfo_Internal_Const.h │ │ │ ├── Multiple │ │ │ │ ├── File_Aaf.cpp │ │ │ │ ├── File_Aaf.h │ │ │ │ ├── File_Ancillary.cpp │ │ │ │ ├── File_Ancillary.h │ │ │ │ ├── File_Bdmv.cpp │ │ │ │ ├── File_Bdmv.h │ │ │ │ ├── File_Cdxa.cpp │ │ │ │ ├── File_Cdxa.h │ │ │ │ ├── File_DashMpd.cpp │ │ │ │ ├── File_DashMpd.h │ │ │ │ ├── File_DcpAm.cpp │ │ │ │ ├── File_DcpAm.h │ │ │ │ ├── File_DcpCpl.cpp │ │ │ │ ├── File_DcpCpl.h │ │ │ │ ├── File_DcpPkl.cpp │ │ │ │ ├── File_DcpPkl.h │ │ │ │ ├── File_Dpg.cpp │ │ │ │ ├── File_Dpg.h │ │ │ │ ├── File_DvDif.cpp │ │ │ │ ├── File_DvDif.h │ │ │ │ ├── File_DvDif_Analysis.cpp │ │ │ │ ├── File_Dvdv.cpp │ │ │ │ ├── File_Dvdv.h │ │ │ │ ├── File_Dxw.cpp │ │ │ │ ├── File_Dxw.h │ │ │ │ ├── File_Flv.cpp │ │ │ │ ├── File_Flv.h │ │ │ │ ├── File_Gxf.cpp │ │ │ │ ├── File_Gxf.h │ │ │ │ ├── File_Gxf_TimeCode.cpp │ │ │ │ ├── File_Gxf_TimeCode.h │ │ │ │ ├── File_HdsF4m.cpp │ │ │ │ ├── File_HdsF4m.h │ │ │ │ ├── File_Hls.cpp │ │ │ │ ├── File_Hls.h │ │ │ │ ├── File_Ibi.cpp │ │ │ │ ├── File_Ibi.h │ │ │ │ ├── File_Ibi_Creation.cpp │ │ │ │ ├── File_Ibi_Creation.h │ │ │ │ ├── File_Ism.cpp │ │ │ │ ├── File_Ism.h │ │ │ │ ├── File_Ivf.cpp │ │ │ │ ├── File_Ivf.h │ │ │ │ ├── File_Lxf.cpp │ │ │ │ ├── File_Lxf.h │ │ │ │ ├── File_MiXml.cpp │ │ │ │ ├── File_MiXml.h │ │ │ │ ├── File_Mk.cpp │ │ │ │ ├── File_Mk.h │ │ │ │ ├── File_Mpeg4.cpp │ │ │ │ ├── File_Mpeg4.h │ │ │ │ ├── File_Mpeg4_Descriptors.cpp │ │ │ │ ├── File_Mpeg4_Descriptors.h │ │ │ │ ├── File_Mpeg4_Elements.cpp │ │ │ │ ├── File_Mpeg4_TimeCode.cpp │ │ │ │ ├── File_Mpeg4_TimeCode.h │ │ │ │ ├── File_MpegPs.cpp │ │ │ │ ├── File_MpegPs.h │ │ │ │ ├── File_MpegTs.cpp │ │ │ │ ├── File_MpegTs.h │ │ │ │ ├── File_MpegTs_Duplicate.cpp │ │ │ │ ├── File_Mpeg_Descriptors.cpp │ │ │ │ ├── File_Mpeg_Descriptors.h │ │ │ │ ├── File_Mpeg_Psi.cpp │ │ │ │ ├── File_Mpeg_Psi.h │ │ │ │ ├── File_Mxf.cpp │ │ │ │ ├── File_Mxf.h │ │ │ │ ├── File_Nut.cpp │ │ │ │ ├── File_Nut.h │ │ │ │ ├── File_Ogg.cpp │ │ │ │ ├── File_Ogg.h │ │ │ │ ├── File_Ogg_SubElement.cpp │ │ │ │ ├── File_Ogg_SubElement.h │ │ │ │ ├── File_P2_Clip.cpp │ │ │ │ ├── File_P2_Clip.h │ │ │ │ ├── File_Pmp.cpp │ │ │ │ ├── File_Pmp.h │ │ │ │ ├── File_Ptx.cpp │ │ │ │ ├── File_Ptx.h │ │ │ │ ├── File_Riff.cpp │ │ │ │ ├── File_Riff.h │ │ │ │ ├── File_Riff_Elements.cpp │ │ │ │ ├── File_Rm.cpp │ │ │ │ ├── File_Rm.h │ │ │ │ ├── File_SequenceInfo.cpp │ │ │ │ ├── File_SequenceInfo.h │ │ │ │ ├── File_Skm.cpp │ │ │ │ ├── File_Skm.h │ │ │ │ ├── File_Swf.cpp │ │ │ │ ├── File_Swf.h │ │ │ │ ├── File_Umf.cpp │ │ │ │ ├── File_Umf.h │ │ │ │ ├── File_Vbi.cpp │ │ │ │ ├── File_Vbi.h │ │ │ │ ├── File_Wm.cpp │ │ │ │ ├── File_Wm.h │ │ │ │ ├── File_Wm_Elements.cpp │ │ │ │ ├── File_Wtv.cpp │ │ │ │ ├── File_Wtv.h │ │ │ │ ├── File_Xdcam_Clip.cpp │ │ │ │ ├── File_Xdcam_Clip.h │ │ │ │ ├── File__ReferenceFilesHelper.cpp │ │ │ │ ├── File__ReferenceFilesHelper.h │ │ │ │ ├── File__ReferenceFilesHelper_Resource.cpp │ │ │ │ ├── File__ReferenceFilesHelper_Resource.h │ │ │ │ ├── File__ReferenceFilesHelper_Sequence.cpp │ │ │ │ └── File__ReferenceFilesHelper_Sequence.h │ │ │ ├── PreComp.cpp │ │ │ ├── PreComp.h │ │ │ ├── Reader │ │ │ │ ├── Reader_Directory.cpp │ │ │ │ ├── Reader_Directory.h │ │ │ │ ├── Reader_File.cpp │ │ │ │ ├── Reader_File.h │ │ │ │ ├── Reader__Base.h │ │ │ │ ├── Reader_libcurl.cpp │ │ │ │ ├── Reader_libcurl.h │ │ │ │ ├── Reader_libcurl_Include.h │ │ │ │ ├── Reader_libmms.cpp │ │ │ │ └── Reader_libmms.h │ │ │ ├── Setup.h │ │ │ ├── Tag │ │ │ │ ├── File_ApeTag.cpp │ │ │ │ ├── File_ApeTag.h │ │ │ │ ├── File_Id3.cpp │ │ │ │ ├── File_Id3.h │ │ │ │ ├── File_Id3v2.cpp │ │ │ │ ├── File_Id3v2.h │ │ │ │ ├── File_Lyrics3.cpp │ │ │ │ ├── File_Lyrics3.h │ │ │ │ ├── File_Lyrics3v2.cpp │ │ │ │ ├── File_Lyrics3v2.h │ │ │ │ ├── File_PropertyList.cpp │ │ │ │ ├── File_PropertyList.h │ │ │ │ ├── File_VorbisCom.cpp │ │ │ │ ├── File_VorbisCom.h │ │ │ │ ├── File_Xmp.cpp │ │ │ │ ├── File_Xmp.h │ │ │ │ ├── File__Tags.cpp │ │ │ │ └── File__Tags.h │ │ │ ├── Text │ │ │ │ ├── File_AribStdB24B37.cpp │ │ │ │ ├── File_AribStdB24B37.h │ │ │ │ ├── File_Cdp.cpp │ │ │ │ ├── File_Cdp.h │ │ │ │ ├── File_Cmml.cpp │ │ │ │ ├── File_Cmml.h │ │ │ │ ├── File_DtvccTransport.cpp │ │ │ │ ├── File_DtvccTransport.h │ │ │ │ ├── File_DvbSubtitle.cpp │ │ │ │ ├── File_DvbSubtitle.h │ │ │ │ ├── File_Eia608.cpp │ │ │ │ ├── File_Eia608.h │ │ │ │ ├── File_Eia708.cpp │ │ │ │ ├── File_Eia708.h │ │ │ │ ├── File_Kate.cpp │ │ │ │ ├── File_Kate.h │ │ │ │ ├── File_N19.cpp │ │ │ │ ├── File_N19.h │ │ │ │ ├── File_OtherText.cpp │ │ │ │ ├── File_OtherText.h │ │ │ │ ├── File_Pdf.cpp │ │ │ │ ├── File_Pdf.h │ │ │ │ ├── File_Pgs.cpp │ │ │ │ ├── File_Pgs.h │ │ │ │ ├── File_Scc.cpp │ │ │ │ ├── File_Scc.h │ │ │ │ ├── File_Scte20.cpp │ │ │ │ ├── File_Scte20.h │ │ │ │ ├── File_Sdp.cpp │ │ │ │ ├── File_Sdp.h │ │ │ │ ├── File_SubRip.cpp │ │ │ │ ├── File_SubRip.h │ │ │ │ ├── File_Teletext.cpp │ │ │ │ ├── File_Teletext.h │ │ │ │ ├── File_TimedText.cpp │ │ │ │ ├── File_TimedText.h │ │ │ │ ├── File_Ttml.cpp │ │ │ │ └── File_Ttml.h │ │ │ ├── TimeCode.cpp │ │ │ ├── TimeCode.h │ │ │ ├── Video │ │ │ │ ├── File_AfdBarData.cpp │ │ │ │ ├── File_AfdBarData.h │ │ │ │ ├── File_Aic.cpp │ │ │ │ ├── File_Aic.h │ │ │ │ ├── File_Avc.cpp │ │ │ │ ├── File_Avc.h │ │ │ │ ├── File_Avc_Duplicate.cpp │ │ │ │ ├── File_AvsV.cpp │ │ │ │ ├── File_AvsV.h │ │ │ │ ├── File_Canopus.cpp │ │ │ │ ├── File_Canopus.h │ │ │ │ ├── File_Dirac.cpp │ │ │ │ ├── File_Dirac.h │ │ │ │ ├── File_Ffv1.cpp │ │ │ │ ├── File_Ffv1.h │ │ │ │ ├── File_Flic.cpp │ │ │ │ ├── File_Flic.h │ │ │ │ ├── File_Fraps.cpp │ │ │ │ ├── File_Fraps.h │ │ │ │ ├── File_H263.cpp │ │ │ │ ├── File_H263.h │ │ │ │ ├── File_Hevc.cpp │ │ │ │ ├── File_Hevc.h │ │ │ │ ├── File_HuffYuv.cpp │ │ │ │ ├── File_HuffYuv.h │ │ │ │ ├── File_Lagarith.cpp │ │ │ │ ├── File_Lagarith.h │ │ │ │ ├── File_Mpeg4v.cpp │ │ │ │ ├── File_Mpeg4v.h │ │ │ │ ├── File_Mpegv.cpp │ │ │ │ ├── File_Mpegv.h │ │ │ │ ├── File_ProRes.cpp │ │ │ │ ├── File_ProRes.h │ │ │ │ ├── File_Theora.cpp │ │ │ │ ├── File_Theora.h │ │ │ │ ├── File_Vc1.cpp │ │ │ │ ├── File_Vc1.h │ │ │ │ ├── File_Vc3.cpp │ │ │ │ ├── File_Vc3.h │ │ │ │ ├── File_Vp8.cpp │ │ │ │ ├── File_Vp8.h │ │ │ │ ├── File_Y4m.cpp │ │ │ │ └── File_Y4m.h │ │ │ ├── XmlUtils.cpp │ │ │ └── XmlUtils.h │ │ └── ThirdParty │ │ │ ├── base64 │ │ │ └── base64.h │ │ │ ├── md5 │ │ │ ├── md5.c │ │ │ └── md5.h │ │ │ └── tinyxml2 │ │ │ ├── tinyxml2.cpp │ │ │ └── tinyxml2.h │ ├── VirtualDub │ │ ├── Kasumi │ │ │ ├── Kasumi.vcxproj │ │ │ ├── Kasumi.vcxproj.filters │ │ │ ├── h │ │ │ │ ├── bitutils.h │ │ │ │ ├── blt_setup.h │ │ │ │ ├── blt_spanutils.h │ │ │ │ ├── blt_spanutils_x86.h │ │ │ │ ├── defaultfont.inl │ │ │ │ ├── resample_stages.h │ │ │ │ ├── resample_stages_reference.h │ │ │ │ ├── resample_stages_x64.h │ │ │ │ ├── resample_stages_x86.h │ │ │ │ ├── stdafx.h │ │ │ │ ├── uberblit.h │ │ │ │ ├── uberblit_16f.h │ │ │ │ ├── uberblit_base.h │ │ │ │ ├── uberblit_fill.h │ │ │ │ ├── uberblit_gen.h │ │ │ │ ├── uberblit_input.h │ │ │ │ ├── uberblit_interlace.h │ │ │ │ ├── uberblit_pal.h │ │ │ │ ├── uberblit_resample.h │ │ │ │ ├── uberblit_resample_special.h │ │ │ │ ├── uberblit_resample_special_x86.h │ │ │ │ ├── uberblit_rgb.h │ │ │ │ ├── uberblit_rgb_x86.h │ │ │ │ ├── uberblit_swizzle.h │ │ │ │ ├── uberblit_swizzle_x86.h │ │ │ │ ├── uberblit_v210.h │ │ │ │ ├── uberblit_ycbcr.h │ │ │ │ ├── uberblit_ycbcr_generic.h │ │ │ │ └── uberblit_ycbcr_x86.h │ │ │ └── source │ │ │ │ ├── a64_resample.asm64 │ │ │ │ ├── a_bltrgb.asm │ │ │ │ ├── a_bltrgb2yuv_mmx.asm │ │ │ │ ├── a_bltrgb_mmx.asm │ │ │ │ ├── a_bltyuv2rgb_sse2.asm │ │ │ │ ├── a_resample_mmx.asm │ │ │ │ ├── a_resample_sse41.asm │ │ │ │ ├── a_spanutils_isse.asm │ │ │ │ ├── a_stretchrgb_mmx.asm │ │ │ │ ├── a_stretchrgb_point.asm │ │ │ │ ├── a_triblt.inc │ │ │ │ ├── a_triblt_mmx.asm │ │ │ │ ├── a_triblt_scalar.asm │ │ │ │ ├── a_triblt_sse2.asm │ │ │ │ ├── alphablt.cpp │ │ │ │ ├── blitter.cpp │ │ │ │ ├── blt.cpp │ │ │ │ ├── blt_reference.cpp │ │ │ │ ├── blt_reference_pal.cpp │ │ │ │ ├── blt_reference_rgb.cpp │ │ │ │ ├── blt_reference_yuv.cpp │ │ │ │ ├── blt_reference_yuv2yuv.cpp │ │ │ │ ├── blt_reference_yuvrev.cpp │ │ │ │ ├── blt_setup.cpp │ │ │ │ ├── blt_spanutils.cpp │ │ │ │ ├── blt_spanutils_x86.cpp │ │ │ │ ├── blt_uberblit.cpp │ │ │ │ ├── blt_x86.cpp │ │ │ │ ├── pixel.cpp │ │ │ │ ├── pixmaputils.cpp │ │ │ │ ├── region.cpp │ │ │ │ ├── resample.cpp │ │ │ │ ├── resample_kernels.cpp │ │ │ │ ├── resample_stages.cpp │ │ │ │ ├── resample_stages_reference.cpp │ │ │ │ ├── resample_stages_x64.cpp │ │ │ │ ├── resample_stages_x86.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stretchblt_reference.cpp │ │ │ │ ├── tables.cpp │ │ │ │ ├── text.cpp │ │ │ │ ├── triblt.cpp │ │ │ │ ├── uberblit.cpp │ │ │ │ ├── uberblit_16f.cpp │ │ │ │ ├── uberblit_gen.cpp │ │ │ │ ├── uberblit_resample.cpp │ │ │ │ ├── uberblit_resample_special.cpp │ │ │ │ ├── uberblit_resample_special_x86.cpp │ │ │ │ ├── uberblit_swizzle.cpp │ │ │ │ ├── uberblit_swizzle_x86.cpp │ │ │ │ ├── uberblit_v210.cpp │ │ │ │ ├── uberblit_ycbcr_generic.cpp │ │ │ │ └── uberblit_ycbcr_x86.cpp │ │ ├── h │ │ │ └── vd2 │ │ │ │ ├── Kasumi │ │ │ │ ├── blitter.h │ │ │ │ ├── pixel.h │ │ │ │ ├── pixmap.h │ │ │ │ ├── pixmapops.h │ │ │ │ ├── pixmaputils.h │ │ │ │ ├── region.h │ │ │ │ ├── resample.h │ │ │ │ ├── resample_kernels.h │ │ │ │ ├── tables.h │ │ │ │ ├── text.h │ │ │ │ └── triblt.h │ │ │ │ └── system │ │ │ │ ├── Error.h │ │ │ │ ├── Fraction.h │ │ │ │ ├── VDNamespace.h │ │ │ │ ├── VDQueue.h │ │ │ │ ├── VDRingBuffer.h │ │ │ │ ├── VDScheduler.h │ │ │ │ ├── VDString.h │ │ │ │ ├── atomic.h │ │ │ │ ├── binary.h │ │ │ │ ├── bitmath.h │ │ │ │ ├── cache.h │ │ │ │ ├── cmdline.h │ │ │ │ ├── cpuaccel.h │ │ │ │ ├── date.h │ │ │ │ ├── debug.h │ │ │ │ ├── debugx86.h │ │ │ │ ├── event.h │ │ │ │ ├── file.h │ │ │ │ ├── fileasync.h │ │ │ │ ├── filesys.h │ │ │ │ ├── filewatcher.h │ │ │ │ ├── halffloat.h │ │ │ │ ├── hash.h │ │ │ │ ├── int128.h │ │ │ │ ├── linearalloc.h │ │ │ │ ├── list.h │ │ │ │ ├── log.h │ │ │ │ ├── math.h │ │ │ │ ├── memory.h │ │ │ │ ├── process.h │ │ │ │ ├── profile.h │ │ │ │ ├── progress.h │ │ │ │ ├── protscope.h │ │ │ │ ├── refcount.h │ │ │ │ ├── registry.h │ │ │ │ ├── registrymemory.h │ │ │ │ ├── seh.h │ │ │ │ ├── source │ │ │ │ └── registrymemory.cpp │ │ │ │ ├── strutil.h │ │ │ │ ├── text.h │ │ │ │ ├── thread.h │ │ │ │ ├── thunk.h │ │ │ │ ├── time.h │ │ │ │ ├── tls.h │ │ │ │ ├── unknown.h │ │ │ │ ├── vdalloc.h │ │ │ │ ├── vdstdc.h │ │ │ │ ├── vdstl.h │ │ │ │ ├── vdstl_hash.h │ │ │ │ ├── vdstl_hashmap.h │ │ │ │ ├── vdstl_hashset.h │ │ │ │ ├── vdstl_hashtable.h │ │ │ │ ├── vdstl_vector.h │ │ │ │ ├── vdtypes.h │ │ │ │ ├── vectors.h │ │ │ │ ├── vectors_float.h │ │ │ │ ├── vectors_int.h │ │ │ │ ├── w32assist.h │ │ │ │ ├── win32 │ │ │ │ ├── intrin.h │ │ │ │ └── miniwindows.h │ │ │ │ └── zip.h │ │ └── system │ │ │ ├── h │ │ │ └── stdafx.h │ │ │ ├── source │ │ │ ├── Error.cpp │ │ │ ├── Fraction.cpp │ │ │ ├── VDNamespace.cpp │ │ │ ├── VDScheduler.cpp │ │ │ ├── VDString.cpp │ │ │ ├── a64_cpuaccel.asm │ │ │ ├── a64_fraction.asm │ │ │ ├── a64_int128.asm │ │ │ ├── a64_thunk.asm │ │ │ ├── a_memory.asm │ │ │ ├── a_thunk.asm │ │ │ ├── bitmath.cpp │ │ │ ├── cache.cpp │ │ │ ├── cmdline.cpp │ │ │ ├── cpuaccel.cpp │ │ │ ├── date.cpp │ │ │ ├── debug.cpp │ │ │ ├── debugx86.cpp │ │ │ ├── error_win32.cpp │ │ │ ├── event.cpp │ │ │ ├── file.cpp │ │ │ ├── fileasync.cpp │ │ │ ├── filestream.cpp │ │ │ ├── filesys.cpp │ │ │ ├── filewatcher.cpp │ │ │ ├── halffloat.cpp │ │ │ ├── hash.cpp │ │ │ ├── int128.cpp │ │ │ ├── linearalloc.cpp │ │ │ ├── list.cpp │ │ │ ├── log.cpp │ │ │ ├── math.cpp │ │ │ ├── memory.cpp │ │ │ ├── process.cpp │ │ │ ├── profile.cpp │ │ │ ├── progress.cpp │ │ │ ├── protscope.cpp │ │ │ ├── refcount.cpp │ │ │ ├── registry.cpp │ │ │ ├── stdaccel.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── strutil.cpp │ │ │ ├── text.cpp │ │ │ ├── thread.cpp │ │ │ ├── thunk.cpp │ │ │ ├── time.cpp │ │ │ ├── tls.cpp │ │ │ ├── vdstl.cpp │ │ │ ├── vdstl_hash.cpp │ │ │ ├── vdstl_hashtable.cpp │ │ │ ├── vectors.cpp │ │ │ ├── w32assist.cpp │ │ │ └── zip.cpp │ │ │ ├── system.vcxproj │ │ │ └── system.vcxproj.filters │ ├── ZenLib │ │ ├── License.txt │ │ ├── ZenLib.vcxproj │ │ ├── ZenLib.vcxproj.filters │ │ └── ZenLib │ │ │ ├── BitStream.h │ │ │ ├── BitStream_Fast.h │ │ │ ├── BitStream_LE.h │ │ │ ├── Conf.cpp │ │ │ ├── Conf.h │ │ │ ├── Conf_Internal.h │ │ │ ├── CriticalSection.cpp │ │ │ ├── CriticalSection.h │ │ │ ├── Dir.cpp │ │ │ ├── Dir.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── FileName.cpp │ │ │ ├── FileName.h │ │ │ ├── Format │ │ │ ├── Html │ │ │ │ ├── Html_Handler.cpp │ │ │ │ ├── Html_Handler.h │ │ │ │ ├── Html_Request.cpp │ │ │ │ └── Html_Request.h │ │ │ └── Http │ │ │ │ ├── Http_Cookies.cpp │ │ │ │ ├── Http_Cookies.h │ │ │ │ ├── Http_Handler.cpp │ │ │ │ ├── Http_Handler.h │ │ │ │ ├── Http_Request.cpp │ │ │ │ ├── Http_Request.h │ │ │ │ ├── Http_Utils.cpp │ │ │ │ └── Http_Utils.h │ │ │ ├── HTTP_Client.cpp │ │ │ ├── HTTP_Client.h │ │ │ ├── HTTP_Client │ │ │ ├── HTTPClient.c │ │ │ ├── HTTPClient.h │ │ │ ├── HTTPClientAuth.c │ │ │ ├── HTTPClientAuth.h │ │ │ ├── HTTPClientCommon.h │ │ │ ├── HTTPClientString.c │ │ │ ├── HTTPClientString.h │ │ │ ├── HTTPClientWrapper.c │ │ │ └── HTTPClientWrapper.h │ │ │ ├── InfoMap.cpp │ │ │ ├── InfoMap.h │ │ │ ├── MemoryDebug.cpp │ │ │ ├── MemoryDebug.h │ │ │ ├── MemoryUtils.h │ │ │ ├── OS_Utils.cpp │ │ │ ├── OS_Utils.h │ │ │ ├── PreComp.cpp │ │ │ ├── PreComp.h │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── Trace.h │ │ │ ├── Translation.cpp │ │ │ ├── Translation.h │ │ │ ├── Utils.cpp │ │ │ ├── Utils.h │ │ │ ├── Ztring.cpp │ │ │ ├── Ztring.h │ │ │ ├── ZtringList.cpp │ │ │ ├── ZtringList.h │ │ │ ├── ZtringListList.cpp │ │ │ ├── ZtringListList.h │ │ │ ├── ZtringListListF.cpp │ │ │ ├── ZtringListListF.h │ │ │ ├── int128s.cpp │ │ │ ├── int128s.h │ │ │ ├── int128u.cpp │ │ │ └── int128u.h │ ├── ffmpeg │ │ ├── COPYING.GPLv3 │ │ ├── MAINTAINERS │ │ ├── compat │ │ │ ├── va_copy.h │ │ │ ├── w32dlfcn.h │ │ │ └── w32pthreads.h │ │ ├── config.asm │ │ ├── config.c │ │ ├── config.h │ │ ├── ffmpeg.bat │ │ ├── ffmpeg.mak │ │ ├── ffmpeg.vcxproj │ │ ├── libavcodec │ │ │ ├── 8bps.c │ │ │ ├── aac.h │ │ │ ├── aac_ac3_parser.c │ │ │ ├── aac_ac3_parser.h │ │ │ ├── aac_adtstoasc_bsf.c │ │ │ ├── aac_defines.h │ │ │ ├── aac_parser.c │ │ │ ├── aacadtsdec.c │ │ │ ├── aacadtsdec.h │ │ │ ├── aacdec.c │ │ │ ├── aacdec_template.c │ │ │ ├── aacdectab.h │ │ │ ├── aacps.c │ │ │ ├── aacps.h │ │ │ ├── aacps_float.c │ │ │ ├── aacps_tablegen.h │ │ │ ├── aacpsdata.c │ │ │ ├── aacpsdsp.h │ │ │ ├── aacpsdsp_float.c │ │ │ ├── aacpsdsp_template.c │ │ │ ├── aacsbr.c │ │ │ ├── aacsbr.h │ │ │ ├── aacsbr_tablegen.h │ │ │ ├── aacsbr_tablegen_common.h │ │ │ ├── aacsbr_template.c │ │ │ ├── aacsbrdata.h │ │ │ ├── aactab.c │ │ │ ├── aactab.h │ │ │ ├── ac3.c │ │ │ ├── ac3.h │ │ │ ├── ac3_parser.c │ │ │ ├── ac3_parser.h │ │ │ ├── ac3_parser_internal.h │ │ │ ├── ac3dec.c │ │ │ ├── ac3dec.h │ │ │ ├── ac3dec_data.c │ │ │ ├── ac3dec_data.h │ │ │ ├── ac3dec_float.c │ │ │ ├── ac3dsp.c │ │ │ ├── ac3dsp.h │ │ │ ├── ac3enc.c │ │ │ ├── ac3enc.h │ │ │ ├── ac3enc_float.c │ │ │ ├── ac3enc_opts_template.c │ │ │ ├── ac3enc_template.c │ │ │ ├── ac3tab.c │ │ │ ├── ac3tab.h │ │ │ ├── acelp_filters.c │ │ │ ├── acelp_filters.h │ │ │ ├── acelp_pitch_delay.c │ │ │ ├── acelp_pitch_delay.h │ │ │ ├── acelp_vectors.c │ │ │ ├── acelp_vectors.h │ │ │ ├── adpcm.c │ │ │ ├── adpcm.h │ │ │ ├── adpcm_data.c │ │ │ ├── adpcm_data.h │ │ │ ├── adts_header.c │ │ │ ├── adts_header.h │ │ │ ├── adts_parser.c │ │ │ ├── adts_parser.h │ │ │ ├── adx.c │ │ │ ├── adx.h │ │ │ ├── adx_parser.c │ │ │ ├── adxdec.c │ │ │ ├── aic.c │ │ │ ├── alac.c │ │ │ ├── alac_data.c │ │ │ ├── alac_data.h │ │ │ ├── alacdsp.c │ │ │ ├── alacdsp.h │ │ │ ├── allcodecs.c │ │ │ ├── alsdec.c │ │ │ ├── amr.h │ │ │ ├── amrnbdata.h │ │ │ ├── amrnbdec.c │ │ │ ├── amrwbdata.h │ │ │ ├── amrwbdec.c │ │ │ ├── apedec.c │ │ │ ├── apng.h │ │ │ ├── atrac.c │ │ │ ├── atrac.h │ │ │ ├── atrac3.c │ │ │ ├── atrac3data.h │ │ │ ├── atrac3plus.c │ │ │ ├── atrac3plus.h │ │ │ ├── atrac3plus_data.h │ │ │ ├── atrac3plusdec.c │ │ │ ├── atrac3plusdsp.c │ │ │ ├── audio_frame_queue.h │ │ │ ├── audiodsp.c │ │ │ ├── audiodsp.h │ │ │ ├── avcodec.h │ │ │ ├── avdct.c │ │ │ ├── avdct.h │ │ │ ├── avfft.c │ │ │ ├── avfft.h │ │ │ ├── avpacket.c │ │ │ ├── avpicture.c │ │ │ ├── bgmc.c │ │ │ ├── bgmc.h │ │ │ ├── bink.c │ │ │ ├── binkaudio.c │ │ │ ├── binkdata.h │ │ │ ├── binkdsp.c │ │ │ ├── binkdsp.h │ │ │ ├── bit_depth_template.c │ │ │ ├── bitstream.c │ │ │ ├── bitstream_filters.c │ │ │ ├── blockdsp.c │ │ │ ├── blockdsp.h │ │ │ ├── bsf.c │ │ │ ├── bsf.h │ │ │ ├── bsf_list.c │ │ │ ├── bswapdsp.c │ │ │ ├── bswapdsp.h │ │ │ ├── bytestream.h │ │ │ ├── cabac.c │ │ │ ├── cabac.h │ │ │ ├── cabac_functions.h │ │ │ ├── canopus.c │ │ │ ├── canopus.h │ │ │ ├── cbrt_data.c │ │ │ ├── cbrt_data.h │ │ │ ├── cbrt_data_fixed.c │ │ │ ├── cbrt_tablegen.h │ │ │ ├── celp_filters.c │ │ │ ├── celp_filters.h │ │ │ ├── celp_math.c │ │ │ ├── celp_math.h │ │ │ ├── cfhd.c │ │ │ ├── cfhd.h │ │ │ ├── cfhddata.c │ │ │ ├── chomp_bsf.c │ │ │ ├── cinepak.c │ │ │ ├── cllc.c │ │ │ ├── codec_desc.c │ │ │ ├── codec_list.c │ │ │ ├── cook.c │ │ │ ├── cookdata.h │ │ │ ├── copy_block.h │ │ │ ├── cscd.c │ │ │ ├── dca.c │ │ │ ├── dca.h │ │ │ ├── dca_core.c │ │ │ ├── dca_core.h │ │ │ ├── dca_core_bsf.c │ │ │ ├── dca_exss.c │ │ │ ├── dca_exss.h │ │ │ ├── dca_lbr.c │ │ │ ├── dca_lbr.h │ │ │ ├── dca_parser.c │ │ │ ├── dca_syncwords.h │ │ │ ├── dca_xll.c │ │ │ ├── dca_xll.h │ │ │ ├── dcaadpcm.c │ │ │ ├── dcaadpcm.h │ │ │ ├── dcadata.c │ │ │ ├── dcadata.h │ │ │ ├── dcadct.c │ │ │ ├── dcadct.h │ │ │ ├── dcadec.c │ │ │ ├── dcadec.h │ │ │ ├── dcadsp.c │ │ │ ├── dcadsp.h │ │ │ ├── dcaenc.h │ │ │ ├── dcahuff.c │ │ │ ├── dcahuff.h │ │ │ ├── dcamath.h │ │ │ ├── dct.c │ │ │ ├── dct.h │ │ │ ├── dct32.h │ │ │ ├── dct32_fixed.c │ │ │ ├── dct32_float.c │ │ │ ├── dct32_template.c │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── dirac.c │ │ │ ├── dirac.h │ │ │ ├── dirac_arith.c │ │ │ ├── dirac_arith.h │ │ │ ├── dirac_dwt.c │ │ │ ├── dirac_dwt.h │ │ │ ├── dirac_dwt_template.c │ │ │ ├── dirac_vlc.c │ │ │ ├── dirac_vlc.h │ │ │ ├── diracdec.c │ │ │ ├── diracdsp.c │ │ │ ├── diracdsp.h │ │ │ ├── diractab.c │ │ │ ├── diractab.h │ │ │ ├── dnxhd_parser.c │ │ │ ├── dnxhddata.c │ │ │ ├── dnxhddata.h │ │ │ ├── dnxhddec.c │ │ │ ├── dsd.c │ │ │ ├── dsd.h │ │ │ ├── dsd_tablegen.h │ │ │ ├── dsddec.c │ │ │ ├── dstdec.c │ │ │ ├── dump_extradata_bsf.c │ │ │ ├── dv.c │ │ │ ├── dv.h │ │ │ ├── dv_profile.c │ │ │ ├── dv_profile.h │ │ │ ├── dv_profile_internal.h │ │ │ ├── dv_tablegen.h │ │ │ ├── dvdata.c │ │ │ ├── dvdata.h │ │ │ ├── dvdec.c │ │ │ ├── dxva2.c │ │ │ ├── dxva2.h │ │ │ ├── dxva2_h264.c │ │ │ ├── dxva2_hevc.c │ │ │ ├── dxva2_internal.h │ │ │ ├── dxva2_mpeg2.c │ │ │ ├── dxva2_vc1.c │ │ │ ├── dxva2_vp9.c │ │ │ ├── eac3_data.c │ │ │ ├── eac3_data.h │ │ │ ├── eac3dec.c │ │ │ ├── eac3enc.h │ │ │ ├── elsdec.c │ │ │ ├── elsdec.h │ │ │ ├── encode.c │ │ │ ├── error_resilience.c │ │ │ ├── error_resilience.h │ │ │ ├── exif.c │ │ │ ├── exif.h │ │ │ ├── extract_extradata_bsf.c │ │ │ ├── faandct.c │ │ │ ├── faandct.h │ │ │ ├── faanidct.c │ │ │ ├── faanidct.h │ │ │ ├── faxcompr.h │ │ │ ├── fdctdsp.c │ │ │ ├── fdctdsp.h │ │ │ ├── fft-internal.h │ │ │ ├── fft.h │ │ │ ├── fft_fixed.c │ │ │ ├── fft_fixed_32.c │ │ │ ├── fft_float.c │ │ │ ├── fft_init_table.c │ │ │ ├── fft_table.h │ │ │ ├── fft_template.c │ │ │ ├── ffv1.c │ │ │ ├── ffv1.h │ │ │ ├── ffv1_template.c │ │ │ ├── ffv1dec.c │ │ │ ├── ffv1dec_template.c │ │ │ ├── flac.c │ │ │ ├── flac.h │ │ │ ├── flacdata.c │ │ │ ├── flacdata.h │ │ │ ├── flacdec.c │ │ │ ├── flacdsp.c │ │ │ ├── flacdsp.h │ │ │ ├── flacdsp_lpc_template.c │ │ │ ├── flacdsp_template.c │ │ │ ├── flashsv.c │ │ │ ├── flv.h │ │ │ ├── flvdec.c │ │ │ ├── fmtconvert.c │ │ │ ├── fmtconvert.h │ │ │ ├── frame_thread_encoder.c │ │ │ ├── frame_thread_encoder.h │ │ │ ├── fraps.c │ │ │ ├── g2meet.c │ │ │ ├── get_bits.h │ │ │ ├── golomb.c │ │ │ ├── golomb.h │ │ │ ├── h261.c │ │ │ ├── h261.h │ │ │ ├── h261data.c │ │ │ ├── h261dec.c │ │ │ ├── h263.c │ │ │ ├── h263.h │ │ │ ├── h263_parser.c │ │ │ ├── h263_parser.h │ │ │ ├── h263data.c │ │ │ ├── h263data.h │ │ │ ├── h263dec.c │ │ │ ├── h263dsp.c │ │ │ ├── h263dsp.h │ │ │ ├── h264.h │ │ │ ├── h2645_parse.c │ │ │ ├── h2645_parse.h │ │ │ ├── h264_cabac.c │ │ │ ├── h264_cavlc.c │ │ │ ├── h264_direct.c │ │ │ ├── h264_loopfilter.c │ │ │ ├── h264_mb.c │ │ │ ├── h264_mb_template.c │ │ │ ├── h264_mc_template.c │ │ │ ├── h264_mp4toannexb_bsf.c │ │ │ ├── h264_mvpred.h │ │ │ ├── h264_parse.c │ │ │ ├── h264_parse.h │ │ │ ├── h264_parser.c │ │ │ ├── h264_picture.c │ │ │ ├── h264_ps.c │ │ │ ├── h264_ps.h │ │ │ ├── h264_refs.c │ │ │ ├── h264_sei.c │ │ │ ├── h264_sei.h │ │ │ ├── h264_slice.c │ │ │ ├── h264addpx_template.c │ │ │ ├── h264chroma.c │ │ │ ├── h264chroma.h │ │ │ ├── h264chroma_template.c │ │ │ ├── h264data.c │ │ │ ├── h264data.h │ │ │ ├── h264dec.c │ │ │ ├── h264dec.h │ │ │ ├── h264dsp.c │ │ │ ├── h264dsp.h │ │ │ ├── h264dsp_template.c │ │ │ ├── h264idct.c │ │ │ ├── h264idct.h │ │ │ ├── h264idct_template.c │ │ │ ├── h264pred.c │ │ │ ├── h264pred.h │ │ │ ├── h264pred_template.c │ │ │ ├── h264qpel.c │ │ │ ├── h264qpel.h │ │ │ ├── h264qpel_template.c │ │ │ ├── hap.c │ │ │ ├── hap.h │ │ │ ├── hapdec.c │ │ │ ├── hevc.h │ │ │ ├── hevc_cabac.c │ │ │ ├── hevc_data.c │ │ │ ├── hevc_data.h │ │ │ ├── hevc_filter.c │ │ │ ├── hevc_mp4toannexb_bsf.c │ │ │ ├── hevc_mvs.c │ │ │ ├── hevc_parse.c │ │ │ ├── hevc_parse.h │ │ │ ├── hevc_parser.c │ │ │ ├── hevc_ps.c │ │ │ ├── hevc_ps.h │ │ │ ├── hevc_refs.c │ │ │ ├── hevc_sei.c │ │ │ ├── hevc_sei.h │ │ │ ├── hevcdec.c │ │ │ ├── hevcdec.h │ │ │ ├── hevcdsp.c │ │ │ ├── hevcdsp.h │ │ │ ├── hevcdsp_template.c │ │ │ ├── hevcpred.c │ │ │ ├── hevcpred.h │ │ │ ├── hevcpred_template.c │ │ │ ├── hpel_template.c │ │ │ ├── hpeldsp.c │ │ │ ├── hpeldsp.h │ │ │ ├── hq_hqa.c │ │ │ ├── hq_hqa.h │ │ │ ├── hq_hqadata.c │ │ │ ├── hq_hqadsp.c │ │ │ ├── hq_hqadsp.h │ │ │ ├── hqx.c │ │ │ ├── hqx.h │ │ │ ├── hqxdsp.c │ │ │ ├── hqxdsp.h │ │ │ ├── hqxvlc.c │ │ │ ├── huffman.c │ │ │ ├── huffman.h │ │ │ ├── huffyuv.c │ │ │ ├── huffyuv.h │ │ │ ├── huffyuvdec.c │ │ │ ├── huffyuvdsp.c │ │ │ ├── huffyuvdsp.h │ │ │ ├── huffyuvencdsp.h │ │ │ ├── hwaccel.h │ │ │ ├── hwaccels.h │ │ │ ├── idctdsp.c │ │ │ ├── idctdsp.h │ │ │ ├── imc.c │ │ │ ├── imcdata.h │ │ │ ├── imgconvert.c │ │ │ ├── imx_dump_header_bsf.c │ │ │ ├── indeo3.c │ │ │ ├── indeo3data.h │ │ │ ├── indeo4.c │ │ │ ├── indeo4data.h │ │ │ ├── indeo5.c │ │ │ ├── indeo5data.h │ │ │ ├── intelh263dec.c │ │ │ ├── internal.h │ │ │ ├── intrax8.c │ │ │ ├── intrax8.h │ │ │ ├── intrax8dsp.c │ │ │ ├── intrax8dsp.h │ │ │ ├── intrax8huf.h │ │ │ ├── ituh263dec.c │ │ │ ├── ivi.c │ │ │ ├── ivi.h │ │ │ ├── ivi_dsp.c │ │ │ ├── ivi_dsp.h │ │ │ ├── jpegls.c │ │ │ ├── jpegls.h │ │ │ ├── jpeglsdec.c │ │ │ ├── jpeglsdec.h │ │ │ ├── jpegtables.c │ │ │ ├── jpegtables.h │ │ │ ├── jrevdct.c │ │ │ ├── kbdwin.c │ │ │ ├── kbdwin.h │ │ │ ├── lagarith.c │ │ │ ├── lagarithrac.c │ │ │ ├── lagarithrac.h │ │ │ ├── latm_parser.c │ │ │ ├── libopenjpegdec.c │ │ │ ├── libspeexdec.c │ │ │ ├── log2_tab.c │ │ │ ├── lossless_audiodsp.c │ │ │ ├── lossless_audiodsp.h │ │ │ ├── lossless_videodsp.c │ │ │ ├── lossless_videodsp.h │ │ │ ├── lossless_videoencdsp.h │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── lzw.h │ │ │ ├── magicyuv.c │ │ │ ├── mathops.h │ │ │ ├── mathtables.c │ │ │ ├── mdct15.c │ │ │ ├── mdct15.h │ │ │ ├── mdct_fixed.c │ │ │ ├── mdct_fixed_32.c │ │ │ ├── mdct_float.c │ │ │ ├── mdct_template.c │ │ │ ├── me_cmp.c │ │ │ ├── me_cmp.h │ │ │ ├── metasound.c │ │ │ ├── metasound_data.c │ │ │ ├── metasound_data.h │ │ │ ├── mips │ │ │ │ ├── amrwbdec_mips.h │ │ │ │ └── lsp_mips.h │ │ │ ├── mjpeg.h │ │ │ ├── mjpeg2jpeg_bsf.c │ │ │ ├── mjpeg_parser.c │ │ │ ├── mjpega_dump_header_bsf.c │ │ │ ├── mjpegbdec.c │ │ │ ├── mjpegdec.c │ │ │ ├── mjpegdec.h │ │ │ ├── mjpegenc.h │ │ │ ├── mlp.c │ │ │ ├── mlp.h │ │ │ ├── mlp_parser.c │ │ │ ├── mlp_parser.h │ │ │ ├── mlpdec.c │ │ │ ├── mlpdsp.c │ │ │ ├── mlpdsp.h │ │ │ ├── mlz.c │ │ │ ├── mlz.h │ │ │ ├── motion_est.c │ │ │ ├── motion_est.h │ │ │ ├── motion_est_template.c │ │ │ ├── movsub_bsf.c │ │ │ ├── mp3_header_decompress_bsf.c │ │ │ ├── mpc.c │ │ │ ├── mpc.h │ │ │ ├── mpc7.c │ │ │ ├── mpc7data.h │ │ │ ├── mpc8.c │ │ │ ├── mpc8data.h │ │ │ ├── mpc8huff.h │ │ │ ├── mpcdata.h │ │ │ ├── mpeg12.c │ │ │ ├── mpeg12.h │ │ │ ├── mpeg12data.c │ │ │ ├── mpeg12data.h │ │ │ ├── mpeg12dec.c │ │ │ ├── mpeg12framerate.c │ │ │ ├── mpeg12vlc.h │ │ │ ├── mpeg4_unpack_bframes_bsf.c │ │ │ ├── mpeg4audio.c │ │ │ ├── mpeg4audio.h │ │ │ ├── mpeg4data.h │ │ │ ├── mpeg4video.c │ │ │ ├── mpeg4video.h │ │ │ ├── mpeg4video_parser.c │ │ │ ├── mpeg4video_parser.h │ │ │ ├── mpeg4videodec.c │ │ │ ├── mpeg_er.c │ │ │ ├── mpeg_er.h │ │ │ ├── mpegaudio.c │ │ │ ├── mpegaudio.h │ │ │ ├── mpegaudio_parser.c │ │ │ ├── mpegaudio_tablegen.h │ │ │ ├── mpegaudiodata.c │ │ │ ├── mpegaudiodata.h │ │ │ ├── mpegaudiodec_fixed.c │ │ │ ├── mpegaudiodec_float.c │ │ │ ├── mpegaudiodec_template.c │ │ │ ├── mpegaudiodecheader.c │ │ │ ├── mpegaudiodecheader.h │ │ │ ├── mpegaudiodectab.h │ │ │ ├── mpegaudiodsp.c │ │ │ ├── mpegaudiodsp.h │ │ │ ├── mpegaudiodsp_data.c │ │ │ ├── mpegaudiodsp_fixed.c │ │ │ ├── mpegaudiodsp_float.c │ │ │ ├── mpegaudiodsp_template.c │ │ │ ├── mpegpicture.c │ │ │ ├── mpegpicture.h │ │ │ ├── mpegutils.c │ │ │ ├── mpegutils.h │ │ │ ├── mpegvideo.c │ │ │ ├── mpegvideo.h │ │ │ ├── mpegvideo_motion.c │ │ │ ├── mpegvideo_parser.c │ │ │ ├── mpegvideodata.c │ │ │ ├── mpegvideodata.h │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideodsp.h │ │ │ ├── mpegvideoencdsp.c │ │ │ ├── mpegvideoencdsp.h │ │ │ ├── msmpeg4.c │ │ │ ├── msmpeg4.h │ │ │ ├── msmpeg4data.c │ │ │ ├── msmpeg4data.h │ │ │ ├── msmpeg4dec.c │ │ │ ├── msrle.c │ │ │ ├── msrledec.c │ │ │ ├── msrledec.h │ │ │ ├── mss1.c │ │ │ ├── mss12.c │ │ │ ├── mss12.h │ │ │ ├── mss2.c │ │ │ ├── mss2dsp.c │ │ │ ├── mss2dsp.h │ │ │ ├── mss3.c │ │ │ ├── mss34dsp.c │ │ │ ├── mss34dsp.h │ │ │ ├── mss4.c │ │ │ ├── msvideo1.c │ │ │ ├── nellymoser.c │ │ │ ├── nellymoser.h │ │ │ ├── nellymoserdec.c │ │ │ ├── noise_bsf.c │ │ │ ├── null_bsf.c │ │ │ ├── options.c │ │ │ ├── options_table.h │ │ │ ├── opus.c │ │ │ ├── opus.h │ │ │ ├── opus_celt.c │ │ │ ├── opus_celt.h │ │ │ ├── opus_parser.c │ │ │ ├── opus_pvq.c │ │ │ ├── opus_pvq.h │ │ │ ├── opus_rc.c │ │ │ ├── opus_rc.h │ │ │ ├── opus_silk.c │ │ │ ├── opusdec.c │ │ │ ├── opustab.c │ │ │ ├── opustab.h │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── parser_list.c │ │ │ ├── pcm.c │ │ │ ├── pcm_tablegen.h │ │ │ ├── pel_template.c │ │ │ ├── pixblockdsp.c │ │ │ ├── pixblockdsp.h │ │ │ ├── pixels.h │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngdec.c │ │ │ ├── pngdsp.c │ │ │ ├── pngdsp.h │ │ │ ├── profiles.c │ │ │ ├── profiles.h │ │ │ ├── proresdata.c │ │ │ ├── proresdata.h │ │ │ ├── proresdec.h │ │ │ ├── proresdec2.c │ │ │ ├── proresdsp.c │ │ │ ├── proresdsp.h │ │ │ ├── pthread.c │ │ │ ├── pthread_frame.c │ │ │ ├── pthread_internal.h │ │ │ ├── pthread_slice.c │ │ │ ├── put_bits.h │ │ │ ├── qdm2.c │ │ │ ├── qdm2_tablegen.h │ │ │ ├── qdm2data.h │ │ │ ├── qdmc.c │ │ │ ├── qpel_template.c │ │ │ ├── qpeldsp.c │ │ │ ├── qpeldsp.h │ │ │ ├── qtrle.c │ │ │ ├── r210dec.c │ │ │ ├── ra144.c │ │ │ ├── ra144.h │ │ │ ├── ra144dec.c │ │ │ ├── ra288.c │ │ │ ├── ra288.h │ │ │ ├── ralf.c │ │ │ ├── ralfdata.h │ │ │ ├── rangecoder.c │ │ │ ├── rangecoder.h │ │ │ ├── ratecontrol.h │ │ │ ├── raw.c │ │ │ ├── raw.h │ │ │ ├── rawdec.c │ │ │ ├── rdft.c │ │ │ ├── rdft.h │ │ │ ├── rectangle.h │ │ │ ├── remove_extradata_bsf.c │ │ │ ├── rl.c │ │ │ ├── rl.h │ │ │ ├── rnd_avg.h │ │ │ ├── rpza.c │ │ │ ├── rv10.c │ │ │ ├── rv10.h │ │ │ ├── rv30.c │ │ │ ├── rv30data.h │ │ │ ├── rv30dsp.c │ │ │ ├── rv34.c │ │ │ ├── rv34.h │ │ │ ├── rv34data.h │ │ │ ├── rv34dsp.c │ │ │ ├── rv34dsp.h │ │ │ ├── rv34vlc.h │ │ │ ├── rv40.c │ │ │ ├── rv40data.h │ │ │ ├── rv40dsp.c │ │ │ ├── rv40vlc2.h │ │ │ ├── sbr.h │ │ │ ├── sbrdsp.c │ │ │ ├── sbrdsp.h │ │ │ ├── sbrdsp_template.c │ │ │ ├── shorten.c │ │ │ ├── simple_idct.c │ │ │ ├── simple_idct.h │ │ │ ├── simple_idct_template.c │ │ │ ├── sinewin.c │ │ │ ├── sinewin.h │ │ │ ├── sinewin_tablegen.h │ │ │ ├── sipr.c │ │ │ ├── sipr.h │ │ │ ├── sipr16k.c │ │ │ ├── sipr16kdata.h │ │ │ ├── siprdata.h │ │ │ ├── snappy.c │ │ │ ├── snappy.h │ │ │ ├── snow.c │ │ │ ├── snow.h │ │ │ ├── snow_dwt.c │ │ │ ├── snow_dwt.h │ │ │ ├── snowdata.h │ │ │ ├── sp5x.h │ │ │ ├── sp5xdec.c │ │ │ ├── startcode.c │ │ │ ├── startcode.h │ │ │ ├── svq1.c │ │ │ ├── svq1.h │ │ │ ├── svq13.c │ │ │ ├── svq1_cb.h │ │ │ ├── svq1_vlc.h │ │ │ ├── svq1dec.c │ │ │ ├── svq3.c │ │ │ ├── synth_filter.c │ │ │ ├── synth_filter.h │ │ │ ├── tableprint.h │ │ │ ├── tak.c │ │ │ ├── tak.h │ │ │ ├── tak_parser.c │ │ │ ├── takdec.c │ │ │ ├── takdsp.c │ │ │ ├── takdsp.h │ │ │ ├── texturedsp.c │ │ │ ├── texturedsp.h │ │ │ ├── thread.h │ │ │ ├── tiff.c │ │ │ ├── tiff.h │ │ │ ├── tiff_common.c │ │ │ ├── tiff_common.h │ │ │ ├── tiff_data.c │ │ │ ├── tiff_data.h │ │ │ ├── tpeldsp.c │ │ │ ├── tpeldsp.h │ │ │ ├── truespeech.c │ │ │ ├── truespeech_data.h │ │ │ ├── tscc.c │ │ │ ├── tscc2.c │ │ │ ├── tscc2data.h │ │ │ ├── tta.c │ │ │ ├── ttadata.c │ │ │ ├── ttadata.h │ │ │ ├── ttadsp.c │ │ │ ├── ttadsp.h │ │ │ ├── twinvq.c │ │ │ ├── twinvq.h │ │ │ ├── unary.h │ │ │ ├── utils.c │ │ │ ├── utvideo.c │ │ │ ├── utvideo.h │ │ │ ├── utvideodec.c │ │ │ ├── utvideodsp.c │ │ │ ├── utvideodsp.h │ │ │ ├── v210dec.c │ │ │ ├── v210dec.h │ │ │ ├── v410dec.c │ │ │ ├── vc1.c │ │ │ ├── vc1.h │ │ │ ├── vc1_block.c │ │ │ ├── vc1_common.h │ │ │ ├── vc1_loopfilter.c │ │ │ ├── vc1_mc.c │ │ │ ├── vc1_parser.c │ │ │ ├── vc1_pred.c │ │ │ ├── vc1_pred.h │ │ │ ├── vc1acdata.h │ │ │ ├── vc1data.c │ │ │ ├── vc1data.h │ │ │ ├── vc1dec.c │ │ │ ├── vc1dsp.c │ │ │ ├── vc1dsp.h │ │ │ ├── vdpau_compat.h │ │ │ ├── vdpau_internal.h │ │ │ ├── version.h │ │ │ ├── videodsp.c │ │ │ ├── videodsp.h │ │ │ ├── videodsp_template.c │ │ │ ├── vlc.h │ │ │ ├── vmnc.c │ │ │ ├── vorbis.c │ │ │ ├── vorbis.h │ │ │ ├── vorbis_data.c │ │ │ ├── vorbis_parser.c │ │ │ ├── vorbis_parser.h │ │ │ ├── vorbis_parser_internal.h │ │ │ ├── vorbisdec.c │ │ │ ├── vorbisdsp.c │ │ │ ├── vorbisdsp.h │ │ │ ├── vp3.c │ │ │ ├── vp3_parser.c │ │ │ ├── vp3data.h │ │ │ ├── vp3dsp.c │ │ │ ├── vp3dsp.h │ │ │ ├── vp5.c │ │ │ ├── vp56.c │ │ │ ├── vp56.h │ │ │ ├── vp56data.c │ │ │ ├── vp56data.h │ │ │ ├── vp56dsp.c │ │ │ ├── vp56dsp.h │ │ │ ├── vp56rac.c │ │ │ ├── vp5data.h │ │ │ ├── vp6.c │ │ │ ├── vp6data.h │ │ │ ├── vp6dsp.c │ │ │ ├── vp8.c │ │ │ ├── vp8.h │ │ │ ├── vp8_parser.c │ │ │ ├── vp8data.h │ │ │ ├── vp8dsp.c │ │ │ ├── vp8dsp.h │ │ │ ├── vp9.c │ │ │ ├── vp9.h │ │ │ ├── vp9_mc_template.c │ │ │ ├── vp9_parser.c │ │ │ ├── vp9_raw_reorder_bsf.c │ │ │ ├── vp9_superframe_bsf.c │ │ │ ├── vp9_superframe_split_bsf.c │ │ │ ├── vp9block.c │ │ │ ├── vp9data.c │ │ │ ├── vp9data.h │ │ │ ├── vp9dec.h │ │ │ ├── vp9dsp.c │ │ │ ├── vp9dsp.h │ │ │ ├── vp9dsp_10bpp.c │ │ │ ├── vp9dsp_12bpp.c │ │ │ ├── vp9dsp_8bpp.c │ │ │ ├── vp9dsp_template.c │ │ │ ├── vp9lpf.c │ │ │ ├── vp9mvs.c │ │ │ ├── vp9prob.c │ │ │ ├── vp9recon.c │ │ │ ├── vp9shared.h │ │ │ ├── wavpack.c │ │ │ ├── wavpack.h │ │ │ ├── wma.c │ │ │ ├── wma.h │ │ │ ├── wma_common.c │ │ │ ├── wma_common.h │ │ │ ├── wma_freqs.c │ │ │ ├── wma_freqs.h │ │ │ ├── wmadata.h │ │ │ ├── wmadec.c │ │ │ ├── wmalosslessdec.c │ │ │ ├── wmaprodata.h │ │ │ ├── wmaprodec.c │ │ │ ├── wmavoice.c │ │ │ ├── wmavoice_data.h │ │ │ ├── wmv2.c │ │ │ ├── wmv2.h │ │ │ ├── wmv2data.c │ │ │ ├── wmv2data.h │ │ │ ├── wmv2dec.c │ │ │ ├── wmv2dsp.c │ │ │ ├── wmv2dsp.h │ │ │ ├── x86 │ │ │ │ ├── aacpsdsp.asm │ │ │ │ ├── aacpsdsp_init.c │ │ │ │ ├── ac3dsp.asm │ │ │ │ ├── ac3dsp_downmix.asm │ │ │ │ ├── ac3dsp_init.c │ │ │ │ ├── alacdsp.asm │ │ │ │ ├── alacdsp_init.c │ │ │ │ ├── audiodsp.asm │ │ │ │ ├── audiodsp_init.c │ │ │ │ ├── blockdsp.asm │ │ │ │ ├── blockdsp_init.c │ │ │ │ ├── bswapdsp.asm │ │ │ │ ├── bswapdsp_init.c │ │ │ │ ├── cabac.h │ │ │ │ ├── constants.c │ │ │ │ ├── constants.h │ │ │ │ ├── dcadsp.asm │ │ │ │ ├── dcadsp_init.c │ │ │ │ ├── dct32.asm │ │ │ │ ├── dct_init.c │ │ │ │ ├── dirac_dwt.asm │ │ │ │ ├── dirac_dwt_init.c │ │ │ │ ├── diracdsp.asm │ │ │ │ ├── diracdsp_init.c │ │ │ │ ├── fdct.c │ │ │ │ ├── fdct.h │ │ │ │ ├── fdctdsp_init.c │ │ │ │ ├── fft.asm │ │ │ │ ├── fft.h │ │ │ │ ├── fft_init.c │ │ │ │ ├── flacdsp.asm │ │ │ │ ├── flacdsp_init.c │ │ │ │ ├── fmtconvert.asm │ │ │ │ ├── fmtconvert_init.c │ │ │ │ ├── fpel.asm │ │ │ │ ├── fpel.h │ │ │ │ ├── h263_loopfilter.asm │ │ │ │ ├── h263dsp_init.c │ │ │ │ ├── h264_cabac.c │ │ │ │ ├── h264_chromamc.asm │ │ │ │ ├── h264_chromamc_10bit.asm │ │ │ │ ├── h264_deblock.asm │ │ │ │ ├── h264_deblock_10bit.asm │ │ │ │ ├── h264_idct.asm │ │ │ │ ├── h264_idct_10bit.asm │ │ │ │ ├── h264_intrapred.asm │ │ │ │ ├── h264_intrapred_10bit.asm │ │ │ │ ├── h264_intrapred_init.c │ │ │ │ ├── h264_qpel.c │ │ │ │ ├── h264_qpel_10bit.asm │ │ │ │ ├── h264_qpel_8bit.asm │ │ │ │ ├── h264_weight.asm │ │ │ │ ├── h264_weight_10bit.asm │ │ │ │ ├── h264chroma_init.c │ │ │ │ ├── h264dsp_init.c │ │ │ │ ├── hevc_add_res.asm │ │ │ │ ├── hevc_deblock.asm │ │ │ │ ├── hevc_idct.asm │ │ │ │ ├── hevc_idct_intrinsic.c │ │ │ │ ├── hevc_intra_intrinsic.c │ │ │ │ ├── hevc_mc.asm │ │ │ │ ├── hevc_sao.asm │ │ │ │ ├── hevc_sao_10bit.asm │ │ │ │ ├── hevcdsp.h │ │ │ │ ├── hevcdsp_init.c │ │ │ │ ├── hevcpred.h │ │ │ │ ├── hpeldsp.asm │ │ │ │ ├── hpeldsp.h │ │ │ │ ├── hpeldsp_init.c │ │ │ │ ├── hpeldsp_rnd_template.c │ │ │ │ ├── hpeldsp_vp3.asm │ │ │ │ ├── hpeldsp_vp3_init.c │ │ │ │ ├── huffyuvdsp.asm │ │ │ │ ├── huffyuvdsp_init.c │ │ │ │ ├── huffyuvdsp_template.asm │ │ │ │ ├── idctdsp.asm │ │ │ │ ├── idctdsp.h │ │ │ │ ├── idctdsp_init.c │ │ │ │ ├── imdct36.asm │ │ │ │ ├── inline_asm.h │ │ │ │ ├── lossless_audiodsp.asm │ │ │ │ ├── lossless_audiodsp_init.c │ │ │ │ ├── lossless_videodsp.asm │ │ │ │ ├── lossless_videodsp_init.c │ │ │ │ ├── mathops.h │ │ │ │ ├── mdct15.asm │ │ │ │ ├── mdct15_init.c │ │ │ │ ├── me_cmp.asm │ │ │ │ ├── me_cmp_init.c │ │ │ │ ├── mlpdsp.asm │ │ │ │ ├── mlpdsp_init.c │ │ │ │ ├── mpegaudiodsp.c │ │ │ │ ├── mpegvideo.c │ │ │ │ ├── mpegvideodsp.c │ │ │ │ ├── mpegvideoenc_qns_template.c │ │ │ │ ├── mpegvideoenc_template.c │ │ │ │ ├── mpegvideoencdsp.asm │ │ │ │ ├── mpegvideoencdsp_init.c │ │ │ │ ├── opus_dsp_init.c │ │ │ │ ├── opus_pvq_search.asm │ │ │ │ ├── pixblockdsp.asm │ │ │ │ ├── pixblockdsp_init.c │ │ │ │ ├── pngdsp.asm │ │ │ │ ├── pngdsp_init.c │ │ │ │ ├── proresdsp.asm │ │ │ │ ├── proresdsp_init.c │ │ │ │ ├── qpel.asm │ │ │ │ ├── qpeldsp.asm │ │ │ │ ├── qpeldsp_init.c │ │ │ │ ├── rnd_template.c │ │ │ │ ├── rv34dsp.asm │ │ │ │ ├── rv34dsp_init.c │ │ │ │ ├── rv40dsp.asm │ │ │ │ ├── rv40dsp_init.c │ │ │ │ ├── sbrdsp.asm │ │ │ │ ├── sbrdsp_init.c │ │ │ │ ├── simple_idct.asm │ │ │ │ ├── simple_idct.h │ │ │ │ ├── simple_idct10.asm │ │ │ │ ├── simple_idct10_template.asm │ │ │ │ ├── snowdsp.c │ │ │ │ ├── synth_filter.asm │ │ │ │ ├── synth_filter_init.c │ │ │ │ ├── takdsp.asm │ │ │ │ ├── takdsp_init.c │ │ │ │ ├── ttadsp.asm │ │ │ │ ├── ttadsp_init.c │ │ │ │ ├── utvideodsp.asm │ │ │ │ ├── utvideodsp_init.c │ │ │ │ ├── v210-init.c │ │ │ │ ├── v210.asm │ │ │ │ ├── vc1dsp.h │ │ │ │ ├── vc1dsp_init.c │ │ │ │ ├── vc1dsp_loopfilter.asm │ │ │ │ ├── vc1dsp_mc.asm │ │ │ │ ├── vc1dsp_mmx.c │ │ │ │ ├── videodsp.asm │ │ │ │ ├── videodsp_init.c │ │ │ │ ├── vorbisdsp.asm │ │ │ │ ├── vorbisdsp_init.c │ │ │ │ ├── vp3dsp.asm │ │ │ │ ├── vp3dsp_init.c │ │ │ │ ├── vp56_arith.h │ │ │ │ ├── vp6dsp.asm │ │ │ │ ├── vp6dsp_init.c │ │ │ │ ├── vp8dsp.asm │ │ │ │ ├── vp8dsp_init.c │ │ │ │ ├── vp8dsp_loopfilter.asm │ │ │ │ ├── vp9dsp_init.c │ │ │ │ ├── vp9dsp_init.h │ │ │ │ ├── vp9dsp_init_10bpp.c │ │ │ │ ├── vp9dsp_init_12bpp.c │ │ │ │ ├── vp9dsp_init_16bpp.c │ │ │ │ ├── vp9dsp_init_16bpp_template.c │ │ │ │ ├── vp9intrapred.asm │ │ │ │ ├── vp9intrapred_16bpp.asm │ │ │ │ ├── vp9itxfm.asm │ │ │ │ ├── vp9itxfm_16bpp.asm │ │ │ │ ├── vp9itxfm_template.asm │ │ │ │ ├── vp9lpf.asm │ │ │ │ ├── vp9lpf_16bpp.asm │ │ │ │ ├── vp9mc.asm │ │ │ │ ├── vp9mc_16bpp.asm │ │ │ │ ├── xvididct.asm │ │ │ │ ├── xvididct.h │ │ │ │ └── xvididct_init.c │ │ │ ├── xiph.c │ │ │ ├── xiph.h │ │ │ ├── xvididct.c │ │ │ ├── xvididct.h │ │ │ └── xvmc_internal.h │ │ ├── libavfilter │ │ │ ├── af_aresample.c │ │ │ ├── af_atempo.c │ │ │ ├── af_biquads.c │ │ │ ├── all_channel_layouts.inc │ │ │ ├── allfilters.c │ │ │ ├── audio.c │ │ │ ├── audio.h │ │ │ ├── avfilter.c │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.c │ │ │ ├── bufferqueue.h │ │ │ ├── buffersink.c │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.c │ │ │ ├── buffersrc.h │ │ │ ├── filters.h │ │ │ ├── formats.c │ │ │ ├── formats.h │ │ │ ├── framepool.c │ │ │ ├── framepool.h │ │ │ ├── framequeue.c │ │ │ ├── framequeue.h │ │ │ ├── graphparser.c │ │ │ ├── internal.h │ │ │ ├── pthread.c │ │ │ ├── thread.h │ │ │ ├── version.h │ │ │ ├── video.c │ │ │ └── video.h │ │ ├── libavutil │ │ │ ├── aarch64 │ │ │ │ └── cpu.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.c │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.c │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── bprint.c │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── buffer_internal.h │ │ │ ├── channel_layout.c │ │ │ ├── channel_layout.h │ │ │ ├── colorspace.h │ │ │ ├── common.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpu_internal.h │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── display.c │ │ │ ├── display.h │ │ │ ├── downmix_info.c │ │ │ ├── downmix_info.h │ │ │ ├── dynarray.h │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── eval.c │ │ │ ├── eval.h │ │ │ ├── ffmath.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.c │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── file_open.c │ │ │ ├── fixed_dsp.c │ │ │ ├── fixed_dsp.h │ │ │ ├── float_dsp.c │ │ │ ├── float_dsp.h │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── hwcontext.c │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_dxva2.c │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_internal.h │ │ │ ├── imgutils.c │ │ │ ├── imgutils.h │ │ │ ├── imgutils_internal.h │ │ │ ├── integer.c │ │ │ ├── integer.h │ │ │ ├── internal.h │ │ │ ├── intfloat.h │ │ │ ├── intmath.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.c │ │ │ ├── lfg.h │ │ │ ├── libm.h │ │ │ ├── lls.c │ │ │ ├── lls.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── log2_tab.c │ │ │ ├── lzo.c │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.c │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.c │ │ │ ├── mathematics.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── mem_internal.h │ │ │ ├── mips │ │ │ │ └── asmdefs.h │ │ │ ├── motion_vector.h │ │ │ ├── opt.c │ │ │ ├── opt.h │ │ │ ├── parseutils.c │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.c │ │ │ ├── pixdesc.h │ │ │ ├── pixfmt.h │ │ │ ├── ppc │ │ │ │ ├── cpu.h │ │ │ │ └── util_altivec.h │ │ │ ├── qsort.h │ │ │ ├── random_seed.c │ │ │ ├── random_seed.h │ │ │ ├── rational.c │ │ │ ├── rational.h │ │ │ ├── replaygain.h │ │ │ ├── reverse.c │ │ │ ├── reverse.h │ │ │ ├── samplefmt.c │ │ │ ├── samplefmt.h │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── slicethread.c │ │ │ ├── slicethread.h │ │ │ ├── softfloat.h │ │ │ ├── softfloat_ieee754.h │ │ │ ├── softfloat_tables.h │ │ │ ├── stereo3d.c │ │ │ ├── stereo3d.h │ │ │ ├── thread.h │ │ │ ├── threadmessage.c │ │ │ ├── threadmessage.h │ │ │ ├── time.c │ │ │ ├── time.h │ │ │ ├── time_internal.h │ │ │ ├── timecode.c │ │ │ ├── timecode.h │ │ │ ├── timer.h │ │ │ ├── utils.c │ │ │ ├── version.h │ │ │ ├── wchar_filename.h │ │ │ └── x86 │ │ │ │ ├── asm.h │ │ │ │ ├── bswap.h │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── cpuid.asm │ │ │ │ ├── emms.asm │ │ │ │ ├── emms.h │ │ │ │ ├── fixed_dsp.asm │ │ │ │ ├── fixed_dsp_init.c │ │ │ │ ├── float_dsp.asm │ │ │ │ ├── float_dsp_init.c │ │ │ │ ├── imgutils.asm │ │ │ │ ├── imgutils_init.c │ │ │ │ ├── intmath.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lls.asm │ │ │ │ ├── lls_init.c │ │ │ │ ├── timer.h │ │ │ │ ├── x86inc.asm │ │ │ │ └── x86util.asm │ │ ├── libswresample │ │ │ ├── audioconvert.c │ │ │ ├── audioconvert.h │ │ │ ├── dither.c │ │ │ ├── dither_template.c │ │ │ ├── noise_shaping_data.c │ │ │ ├── options.c │ │ │ ├── rematrix.c │ │ │ ├── rematrix_template.c │ │ │ ├── resample.c │ │ │ ├── resample.h │ │ │ ├── resample_dsp.c │ │ │ ├── resample_template.c │ │ │ ├── soxr_resample.c │ │ │ ├── swresample.c │ │ │ ├── swresample.h │ │ │ ├── swresample_frame.c │ │ │ ├── swresample_internal.h │ │ │ ├── version.h │ │ │ └── x86 │ │ │ │ ├── audio_convert.asm │ │ │ │ ├── audio_convert_init.c │ │ │ │ ├── rematrix.asm │ │ │ │ ├── rematrix_init.c │ │ │ │ ├── resample.asm │ │ │ │ └── resample_init.c │ │ └── libswscale │ │ │ ├── alphablend.c │ │ │ ├── bayer_template.c │ │ │ ├── gamma.c │ │ │ ├── hscale.c │ │ │ ├── hscale_fast_bilinear.c │ │ │ ├── input.c │ │ │ ├── options.c │ │ │ ├── output.c │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb.h │ │ │ ├── rgb2rgb_template.c │ │ │ ├── slice.c │ │ │ ├── swscale.c │ │ │ ├── swscale.h │ │ │ ├── swscale_internal.h │ │ │ ├── swscale_unscaled.c │ │ │ ├── utils.c │ │ │ ├── version.h │ │ │ ├── vscale.c │ │ │ ├── x86 │ │ │ ├── hscale_fast_bilinear_simd.c │ │ │ ├── input.asm │ │ │ ├── output.asm │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_template.c │ │ │ ├── scale.asm │ │ │ ├── swscale.c │ │ │ ├── swscale_template.c │ │ │ ├── yuv2rgb.c │ │ │ └── yuv2rgb_template.c │ │ │ └── yuv2rgb.c │ ├── lcms2 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── include │ │ │ ├── lcms2.h │ │ │ └── lcms2_plugin.h │ │ ├── lcms2.vcxproj │ │ ├── lcms2.vcxproj.filters │ │ ├── precomp.c │ │ └── src │ │ │ ├── cmsalpha.c │ │ │ ├── cmscam02.c │ │ │ ├── cmscgats.c │ │ │ ├── cmscnvrt.c │ │ │ ├── cmserr.c │ │ │ ├── cmsgamma.c │ │ │ ├── cmsgmt.c │ │ │ ├── cmshalf.c │ │ │ ├── cmsintrp.c │ │ │ ├── cmsio0.c │ │ │ ├── cmsio1.c │ │ │ ├── cmslut.c │ │ │ ├── cmsmd5.c │ │ │ ├── cmsmtrx.c │ │ │ ├── cmsnamed.c │ │ │ ├── cmsopt.c │ │ │ ├── cmspack.c │ │ │ ├── cmspcs.c │ │ │ ├── cmsplugin.c │ │ │ ├── cmsps2.c │ │ │ ├── cmssamp.c │ │ │ ├── cmssm.c │ │ │ ├── cmstypes.c │ │ │ ├── cmsvirt.c │ │ │ ├── cmswtpnt.c │ │ │ ├── cmsxform.c │ │ │ └── lcms2_internal.h │ ├── libflac │ │ ├── AUTHORS │ │ ├── COPYING.GPL │ │ ├── include │ │ │ ├── flac │ │ │ │ ├── all.h │ │ │ │ ├── assert.h │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ordinals.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ │ ├── ogg │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ └── share │ │ │ │ ├── alloc.h │ │ │ │ ├── compat.h │ │ │ │ ├── endswap.h │ │ │ │ ├── getopt.h │ │ │ │ ├── grabbag.h │ │ │ │ ├── grabbag │ │ │ │ ├── cuesheet.h │ │ │ │ ├── file.h │ │ │ │ ├── picture.h │ │ │ │ ├── replaygain.h │ │ │ │ └── seektable.h │ │ │ │ ├── macros.h │ │ │ │ ├── private.h │ │ │ │ ├── replaygain_analysis.h │ │ │ │ ├── replaygain_synthesis.h │ │ │ │ ├── safe_str.h │ │ │ │ ├── utf8.h │ │ │ │ ├── win_utf8_io.h │ │ │ │ └── windows_unicode_filenames.h │ │ └── src │ │ │ └── libflac │ │ │ ├── bitmath.c │ │ │ ├── bitreader.c │ │ │ ├── bitwriter.c │ │ │ ├── cpu.c │ │ │ ├── crc.c │ │ │ ├── fixed.c │ │ │ ├── fixed_intrin_sse2.c │ │ │ ├── fixed_intrin_ssse3.c │ │ │ ├── float.c │ │ │ ├── format.c │ │ │ ├── ia32 │ │ │ ├── cpu_asm.nasm │ │ │ ├── fixed_asm.nasm │ │ │ ├── lpc_asm.nasm │ │ │ └── nasm.h │ │ │ ├── include │ │ │ ├── private │ │ │ │ ├── all.h │ │ │ │ ├── bitmath.h │ │ │ │ ├── bitreader.h │ │ │ │ ├── bitwriter.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── fixed.h │ │ │ │ ├── float.h │ │ │ │ ├── format.h │ │ │ │ ├── lpc.h │ │ │ │ ├── macros.h │ │ │ │ ├── md5.h │ │ │ │ ├── memory.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ ├── ogg_helper.h │ │ │ │ ├── ogg_mapping.h │ │ │ │ ├── stream_encoder.h │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ └── window.h │ │ │ └── protected │ │ │ │ ├── all.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ │ ├── libflac.vcxproj │ │ │ ├── libflac.vcxproj.filters │ │ │ ├── lpc.c │ │ │ ├── lpc_intrin_avx2.c │ │ │ ├── lpc_intrin_sse.c │ │ │ ├── lpc_intrin_sse2.c │ │ │ ├── lpc_intrin_sse41.c │ │ │ ├── md5.c │ │ │ ├── memory.c │ │ │ ├── metadata_iterators.c │ │ │ ├── metadata_object.c │ │ │ ├── ogg │ │ │ ├── bitwise.c │ │ │ └── framing.c │ │ │ ├── ogg_decoder_aspect.c │ │ │ ├── ogg_encoder_aspect.c │ │ │ ├── ogg_helper.c │ │ │ ├── ogg_mapping.c │ │ │ ├── stream_decoder.c │ │ │ ├── stream_encoder.c │ │ │ ├── stream_encoder_framing.c │ │ │ ├── stream_encoder_intrin_avx2.c │ │ │ ├── stream_encoder_intrin_sse2.c │ │ │ ├── stream_encoder_intrin_ssse3.c │ │ │ ├── window.c │ │ │ └── windows_unicode_filenames.c │ ├── libpng │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── filter_sse2_intrinsics.c │ │ ├── intel_init.c │ │ ├── libpng.vcxproj │ │ ├── libpng.vcxproj.filters │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ └── precomp.c │ ├── openjpeg │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── bio.c │ │ ├── bio.h │ │ ├── cio.c │ │ ├── cio.h │ │ ├── dwt.c │ │ ├── dwt.h │ │ ├── event.c │ │ ├── event.h │ │ ├── function_list.c │ │ ├── function_list.h │ │ ├── image.c │ │ ├── image.h │ │ ├── invert.c │ │ ├── invert.h │ │ ├── j2k.c │ │ ├── j2k.h │ │ ├── jp2.c │ │ ├── jp2.h │ │ ├── mct.c │ │ ├── mct.h │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqc_inl.h │ │ ├── openjpeg.c │ │ ├── openjpeg.h │ │ ├── openjpeg.vcxproj │ │ ├── openjpeg.vcxproj.filters │ │ ├── opj_clock.c │ │ ├── opj_clock.h │ │ ├── opj_codec.h │ │ ├── opj_common.h │ │ ├── opj_config.h │ │ ├── opj_config_private.h │ │ ├── opj_includes.h │ │ ├── opj_intmath.h │ │ ├── opj_inttypes.h │ │ ├── opj_malloc.c │ │ ├── opj_malloc.h │ │ ├── opj_stdint.h │ │ ├── pi.c │ │ ├── pi.h │ │ ├── sparse_array.c │ │ ├── sparse_array.h │ │ ├── t1.c │ │ ├── t1.h │ │ ├── t1_luts.h │ │ ├── t2.c │ │ ├── t2.h │ │ ├── tcd.c │ │ ├── tcd.h │ │ ├── tgt.c │ │ ├── tgt.h │ │ ├── thread.c │ │ ├── thread.h │ │ └── tls_keys.h │ ├── rapidjson │ │ └── include │ │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ ├── soxr │ │ ├── AUTHORS │ │ ├── COPYING.LGPL │ │ ├── LICENCE │ │ ├── NEWS │ │ ├── README │ │ ├── aliases.h │ │ ├── avfft32.c │ │ ├── avfft32s.c │ │ ├── ccrw2.h │ │ ├── cr-core.c │ │ ├── cr.c │ │ ├── cr.h │ │ ├── cr32.c │ │ ├── cr32s.c │ │ ├── cr64.c │ │ ├── cr64s.c │ │ ├── data-io.c │ │ ├── data-io.h │ │ ├── dbesi0.c │ │ ├── dev32s.h │ │ ├── dev64s.h │ │ ├── fft4g.c │ │ ├── fft4g.h │ │ ├── fft4g32.c │ │ ├── fft4g32s.c │ │ ├── fft4g64.c │ │ ├── fft4g_cache.h │ │ ├── fifo.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── half-coefs.h │ │ ├── half-fir.h │ │ ├── internal.h │ │ ├── math-wrap.h │ │ ├── pffft-avx.h │ │ ├── pffft-wrap.c │ │ ├── pffft.c │ │ ├── pffft.h │ │ ├── pffft32.c │ │ ├── pffft32s.c │ │ ├── pffft64s.c │ │ ├── poly-fir.h │ │ ├── poly-fir0.h │ │ ├── rdft.h │ │ ├── rdft_t.h │ │ ├── rint-clip.h │ │ ├── rint.h │ │ ├── samplerate.h │ │ ├── soxr-config.h │ │ ├── soxr-lsr.c │ │ ├── soxr-lsr.h │ │ ├── soxr.c │ │ ├── soxr.h │ │ ├── soxr.vcxproj │ │ ├── soxr.vcxproj.filters │ │ ├── std-types.h │ │ ├── util-simd.c │ │ ├── util32s.c │ │ ├── util32s.h │ │ ├── util64s.c │ │ ├── util64s.h │ │ ├── vr-coefs.c │ │ ├── vr-coefs.h │ │ └── vr32.c │ ├── speex │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_header.h │ │ ├── speex_stereo.h │ │ └── speex_types.h │ ├── ui │ │ ├── CmdUI │ │ │ ├── CmdUI.cpp │ │ │ ├── CmdUI.h │ │ │ ├── CmdUI.vcxproj │ │ │ ├── CmdUI.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── LCDUI │ │ │ ├── LCDAnimatedBitmap.cpp │ │ │ ├── LCDAnimatedBitmap.h │ │ │ ├── LCDBase.cpp │ │ │ ├── LCDBase.h │ │ │ ├── LCDBitmap.cpp │ │ │ ├── LCDBitmap.h │ │ │ ├── LCDCollection.cpp │ │ │ ├── LCDCollection.h │ │ │ ├── LCDColorProgressBar.cpp │ │ │ ├── LCDColorProgressBar.h │ │ │ ├── LCDColorText.cpp │ │ │ ├── LCDColorText.h │ │ │ ├── LCDConnection.cpp │ │ │ ├── LCDConnection.h │ │ │ ├── LCDGfxBase.cpp │ │ │ ├── LCDGfxBase.h │ │ │ ├── LCDGfxColor.cpp │ │ │ ├── LCDGfxColor.h │ │ │ ├── LCDGfxMono.cpp │ │ │ ├── LCDGfxMono.h │ │ │ ├── LCDIcon.cpp │ │ │ ├── LCDIcon.h │ │ │ ├── LCDOutput.cpp │ │ │ ├── LCDOutput.h │ │ │ ├── LCDPage.cpp │ │ │ ├── LCDPage.h │ │ │ ├── LCDPaginateText.cpp │ │ │ ├── LCDPaginateText.h │ │ │ ├── LCDPopup.cpp │ │ │ ├── LCDPopup.h │ │ │ ├── LCDProgressBar.cpp │ │ │ ├── LCDProgressBar.h │ │ │ ├── LCDScrollingText.cpp │ │ │ ├── LCDScrollingText.h │ │ │ ├── LCDSkinnedProgressBar.cpp │ │ │ ├── LCDSkinnedProgressBar.h │ │ │ ├── LCDStreamingText.cpp │ │ │ ├── LCDStreamingText.h │ │ │ ├── LCDText.cpp │ │ │ ├── LCDText.h │ │ │ ├── LCDUI.h │ │ │ ├── LCDUI.vcxproj │ │ │ ├── LCDUI.vcxproj.filters │ │ │ └── stdafx.cpp │ │ ├── ResizableLib │ │ │ ├── Artistic-License.txt │ │ │ ├── ResizableDialog.cpp │ │ │ ├── ResizableDialog.h │ │ │ ├── ResizableGrip.cpp │ │ │ ├── ResizableGrip.h │ │ │ ├── ResizableLayout.cpp │ │ │ ├── ResizableLayout.h │ │ │ ├── ResizableLib.vcxproj │ │ │ ├── ResizableLib.vcxproj.filters │ │ │ ├── ResizableMinMax.cpp │ │ │ ├── ResizableMinMax.h │ │ │ ├── ResizableMsgSupport.h │ │ │ ├── ResizableMsgSupport.inl │ │ │ ├── ResizablePage.cpp │ │ │ ├── ResizablePage.h │ │ │ ├── ResizableSheet.cpp │ │ │ ├── ResizableSheet.h │ │ │ ├── ResizableState.cpp │ │ │ ├── ResizableState.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── TreePropSheet │ │ │ ├── PropPageFrame.cpp │ │ │ ├── PropPageFrame.h │ │ │ ├── PropPageFrameDefault.cpp │ │ │ ├── PropPageFrameDefault.h │ │ │ ├── TreePropSheet.cpp │ │ │ ├── TreePropSheet.h │ │ │ ├── TreePropSheet.vcxproj │ │ │ ├── TreePropSheet.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── sizecbar │ │ │ ├── scbarcf.cpp │ │ │ ├── scbarcf.h │ │ │ ├── scbarg.cpp │ │ │ ├── scbarg.h │ │ │ ├── sizecbar.cpp │ │ │ ├── sizecbar.h │ │ │ ├── sizecbar.vcxproj │ │ │ ├── sizecbar.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ └── zlib │ │ ├── ChangeLog │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zlib.vcxproj │ │ ├── zlib.vcxproj.filters │ │ ├── zutil.c │ │ └── zutil.h ├── Shaders │ ├── OnePassResizers │ │ ├── downscaler_simple.hlsl │ │ ├── resizer_bicubic06.hlsl │ │ ├── resizer_bicubic08.hlsl │ │ ├── resizer_bicubic10.hlsl │ │ ├── resizer_bicubic_base.hlsl │ │ ├── resizer_bilinear.hlsl │ │ ├── resizer_bspline4.hlsl │ │ ├── resizer_catmull4.hlsl │ │ ├── resizer_mitchell4.hlsl │ │ ├── resizer_nearest.hlsl │ │ └── resizer_smootherstep.hlsl │ ├── Resizers │ │ ├── downscaler.hlsl │ │ ├── downscaler_box.hlsl │ │ ├── downscaler_filters.hlsl │ │ ├── downscaler_simple.hlsl │ │ ├── resizer_bicubic06_x.hlsl │ │ ├── resizer_bicubic06_y.hlsl │ │ ├── resizer_bicubic08_x.hlsl │ │ ├── resizer_bicubic08_y.hlsl │ │ ├── resizer_bicubic10_x.hlsl │ │ ├── resizer_bicubic10_y.hlsl │ │ ├── resizer_bicubic_base_x.hlsl │ │ ├── resizer_bicubic_base_y.hlsl │ │ ├── resizer_bspline4_x.hlsl │ │ ├── resizer_bspline4_y.hlsl │ │ ├── resizer_catmull4_x.hlsl │ │ ├── resizer_catmull4_y.hlsl │ │ ├── resizer_lanczos2_x.hlsl │ │ ├── resizer_lanczos2_y.hlsl │ │ ├── resizer_lanczos3_x.hlsl │ │ ├── resizer_lanczos3_y.hlsl │ │ ├── resizer_mitchell4_x.hlsl │ │ └── resizer_mitchell4_y.hlsl │ ├── Shaders.vcxproj │ ├── Shaders.vcxproj.filters │ ├── Transformation │ │ ├── chroma_422_correction.hlsl │ │ ├── colorspace_gamut_conversion.hlsl │ │ ├── conv_matrix.hlsl │ │ ├── final_pass.hlsl │ │ ├── halfoverunder_to_interlace.hlsl │ │ ├── hdr_tone_mapping.hlsl │ │ ├── hlg_correction.hlsl │ │ ├── st2084_correction.hlsl │ │ └── ycgco_correction.hlsl │ ├── compile_shaders.cmd │ └── readme.txt ├── SubPic │ ├── CoordGeom.cpp │ ├── CoordGeom.h │ ├── DX9SubPic.cpp │ ├── DX9SubPic.h │ ├── ISubPic.h │ ├── ISubRender.h │ ├── MemSubPic.cpp │ ├── MemSubPic.h │ ├── SubPic.vcxproj │ ├── SubPic.vcxproj.filters │ ├── SubPicAllocatorPresenterImpl.cpp │ ├── SubPicAllocatorPresenterImpl.h │ ├── SubPicImpl.cpp │ ├── SubPicImpl.h │ ├── SubPicProviderImpl.cpp │ ├── SubPicProviderImpl.h │ ├── SubPicQueueImpl.cpp │ ├── SubPicQueueImpl.h │ ├── XySubPicProvider.cpp │ ├── XySubPicProvider.h │ ├── XySubPicQueueImpl.cpp │ ├── XySubPicQueueImpl.h │ ├── stdafx.cpp │ └── stdafx.h ├── Subtitles │ ├── BaseSub.cpp │ ├── BaseSub.h │ ├── CCDecoder.cpp │ ├── CCDecoder.h │ ├── ColorConvert.cpp │ ├── ColorConvert.h │ ├── CompositionObject.cpp │ ├── CompositionObject.h │ ├── DVBSub.cpp │ ├── DVBSub.h │ ├── Ellipse.cpp │ ├── Ellipse.h │ ├── HdmvSub.cpp │ ├── HdmvSub.h │ ├── RTS.cpp │ ├── RTS.h │ ├── Rasterizer.cpp │ ├── Rasterizer.h │ ├── RealTextParser.cpp │ ├── RealTextParser.h │ ├── RenderedHdmvSubtitle.cpp │ ├── RenderedHdmvSubtitle.h │ ├── RenderingCache.cpp │ ├── RenderingCache.h │ ├── STS.cpp │ ├── STS.h │ ├── SeparableFilter.h │ ├── SubtitleHelpers.cpp │ ├── SubtitleHelpers.h │ ├── SubtitleInputPin.cpp │ ├── SubtitleInputPin.h │ ├── Subtitles.vcxproj │ ├── Subtitles.vcxproj.filters │ ├── SupSubFile.cpp │ ├── SupSubFile.h │ ├── TextFile.cpp │ ├── TextFile.h │ ├── USFSubtitles.cpp │ ├── USFSubtitles.h │ ├── VobSubFile.cpp │ ├── VobSubFile.h │ ├── VobSubFileRipper.cpp │ ├── VobSubFileRipper.h │ ├── VobSubImage.cpp │ ├── VobSubImage.h │ ├── XSUBSubtitle.cpp │ ├── XSUBSubtitle.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── unrar.h ├── YASM.bat ├── YASM.props ├── YASM.targets ├── YASM.xml ├── apps │ ├── MPCBEShellExt │ │ ├── ConfigDlg.cpp │ │ ├── ConfigDlg.h │ │ ├── MPCBEContextMenu.cpp │ │ ├── MPCBEContextMenu.h │ │ ├── MPCBEContextMenu.rgs │ │ ├── MPCBEShellExt.cpp │ │ ├── MPCBEShellExt.def │ │ ├── MPCBEShellExt.idl │ │ ├── MPCBEShellExt.rc │ │ ├── MPCBEShellExt.rgs │ │ ├── MPCBEShellExt.vcxproj │ │ ├── MPCBEShellExt.vcxproj.filters │ │ ├── dllmain.cpp │ │ ├── dllmain.h │ │ ├── res │ │ │ ├── film_add.bmp │ │ │ └── film_go.bmp │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── MPCTestAPI │ │ ├── HScrollListBox.cpp │ │ ├── HScrollListBox.h │ │ ├── MPCTestAPI.cpp │ │ ├── MPCTestAPI.exe.manifest │ │ ├── MPCTestAPI.h │ │ ├── MPCTestAPI.rc │ │ ├── MPCTestAPI.vcxproj │ │ ├── MPCTestAPI.vcxproj.filters │ │ ├── MPCTestAPIDlg.cpp │ │ ├── MPCTestAPIDlg.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mpciconlib │ │ ├── icons │ │ │ ├── 3g2.ico │ │ │ ├── 3gp.ico │ │ │ ├── 3gp2.ico │ │ │ ├── 3gpp.ico │ │ │ ├── aac.ico │ │ │ ├── ac3.ico │ │ │ ├── aif.ico │ │ │ ├── aifc.ico │ │ │ ├── aiff.ico │ │ │ ├── alac.ico │ │ │ ├── amr.ico │ │ │ ├── amv.ico │ │ │ ├── aob.ico │ │ │ ├── ape.ico │ │ │ ├── apl.ico │ │ │ ├── asf.ico │ │ │ ├── au.ico │ │ │ ├── avi.ico │ │ │ ├── bik.ico │ │ │ ├── cda.ico │ │ │ ├── d2v.ico │ │ │ ├── dat.ico │ │ │ ├── default_audio.ico │ │ │ ├── default_video.ico │ │ │ ├── divx.ico │ │ │ ├── dsa.ico │ │ │ ├── dsm.ico │ │ │ ├── dss.ico │ │ │ ├── dsv.ico │ │ │ ├── dts.ico │ │ │ ├── evo.ico │ │ │ ├── f4v.ico │ │ │ ├── flac.ico │ │ │ ├── flc.ico │ │ │ ├── fli.ico │ │ │ ├── flic.ico │ │ │ ├── flv.ico │ │ │ ├── hdmov.ico │ │ │ ├── icon.ico │ │ │ ├── ifo.ico │ │ │ ├── ivf.ico │ │ │ ├── m1a.ico │ │ │ ├── m1v.ico │ │ │ ├── m2a.ico │ │ │ ├── m2p.ico │ │ │ ├── m2t.ico │ │ │ ├── m2ts.ico │ │ │ ├── m2v.ico │ │ │ ├── m4a.ico │ │ │ ├── m4b.ico │ │ │ ├── m4v.ico │ │ │ ├── mid.ico │ │ │ ├── midi.ico │ │ │ ├── mka.ico │ │ │ ├── mkv.ico │ │ │ ├── mlp.ico │ │ │ ├── mov.ico │ │ │ ├── mp2.ico │ │ │ ├── mp2v.ico │ │ │ ├── mp3.ico │ │ │ ├── mp4.ico │ │ │ ├── mp4v.ico │ │ │ ├── mpa.ico │ │ │ ├── mpc.ico │ │ │ ├── mpe.ico │ │ │ ├── mpeg.ico │ │ │ ├── mpg.ico │ │ │ ├── mpv2.ico │ │ │ ├── mpv4.ico │ │ │ ├── mts.ico │ │ │ ├── ofr.ico │ │ │ ├── ofs.ico │ │ │ ├── oga.ico │ │ │ ├── ogg.ico │ │ │ ├── ogm.ico │ │ │ ├── ogv.ico │ │ │ ├── opus.ico │ │ │ ├── playlist.ico │ │ │ ├── pva.ico │ │ │ ├── ra.ico │ │ │ ├── ram.ico │ │ │ ├── ratdvd.ico │ │ │ ├── rec.ico │ │ │ ├── rm.ico │ │ │ ├── rmi.ico │ │ │ ├── rmm.ico │ │ │ ├── rmvb.ico │ │ │ ├── roq.ico │ │ │ ├── rp.ico │ │ │ ├── rpm.ico │ │ │ ├── rt.ico │ │ │ ├── smi.ico │ │ │ ├── smil.ico │ │ │ ├── smk.ico │ │ │ ├── snd.ico │ │ │ ├── swf.ico │ │ │ ├── tak.ico │ │ │ ├── tp.ico │ │ │ ├── trp.ico │ │ │ ├── ts.ico │ │ │ ├── tta.ico │ │ │ ├── vob.ico │ │ │ ├── wav.ico │ │ │ ├── webm.ico │ │ │ ├── wm.ico │ │ │ ├── wma.ico │ │ │ ├── wmp.ico │ │ │ ├── wmv.ico │ │ │ └── wv.ico │ │ ├── mpciconlib.cpp │ │ ├── mpciconlib.rc │ │ ├── mpciconlib.vcxproj │ │ ├── mpciconlib.vcxproj.filters │ │ └── resource.h │ ├── mpcresources │ │ ├── common.pl │ │ ├── mpcresources.vcxproj │ │ ├── mpcresources.vcxproj.filters │ │ ├── mplayerc.br.rc │ │ ├── mplayerc.by.rc │ │ ├── mplayerc.ca.rc │ │ ├── mplayerc.cz.rc │ │ ├── mplayerc.de.rc │ │ ├── mplayerc.el.rc │ │ ├── mplayerc.es.rc │ │ ├── mplayerc.eu.rc │ │ ├── mplayerc.fr.rc │ │ ├── mplayerc.he.rc │ │ ├── mplayerc.hu.rc │ │ ├── mplayerc.hy.rc │ │ ├── mplayerc.it.rc │ │ ├── mplayerc.ja.rc │ │ ├── mplayerc.kr.rc │ │ ├── mplayerc.nl.rc │ │ ├── mplayerc.pl.rc │ │ ├── mplayerc.ro.rc │ │ ├── mplayerc.ru.rc │ │ ├── mplayerc.sc.rc │ │ ├── mplayerc.sk.rc │ │ ├── mplayerc.sv.rc │ │ ├── mplayerc.tc.rc │ │ ├── mplayerc.tr.rc │ │ ├── mplayerc.ua.rc │ │ ├── patch.bat │ │ ├── patch.pl │ │ ├── rcfile.bat │ │ ├── rcfile.pl │ │ ├── rcstrings.bat │ │ ├── rcstrings.pl │ │ ├── sync.bat │ │ └── text │ │ │ ├── mplayerc.br.rc.txt │ │ │ ├── mplayerc.by.rc.txt │ │ │ ├── mplayerc.ca.rc.txt │ │ │ ├── mplayerc.cz.rc.txt │ │ │ ├── mplayerc.de.rc.txt │ │ │ ├── mplayerc.el.rc.txt │ │ │ ├── mplayerc.es.rc.txt │ │ │ ├── mplayerc.eu.rc.txt │ │ │ ├── mplayerc.fr.rc.txt │ │ │ ├── mplayerc.he.rc.txt │ │ │ ├── mplayerc.hu.rc.txt │ │ │ ├── mplayerc.hy.rc.txt │ │ │ ├── mplayerc.it.rc.txt │ │ │ ├── mplayerc.ja.rc.txt │ │ │ ├── mplayerc.kr.rc.txt │ │ │ ├── mplayerc.nl.rc.txt │ │ │ ├── mplayerc.pl.rc.txt │ │ │ ├── mplayerc.rc.txt │ │ │ ├── mplayerc.ro.rc.txt │ │ │ ├── mplayerc.ru.rc.txt │ │ │ ├── mplayerc.sc.rc.txt │ │ │ ├── mplayerc.sk.rc.txt │ │ │ ├── mplayerc.sv.rc.txt │ │ │ ├── mplayerc.tc.rc.txt │ │ │ ├── mplayerc.tr.rc.txt │ │ │ └── mplayerc.ua.rc.txt │ └── mplayerc │ │ ├── AboutDlg.cpp │ │ ├── AboutDlg.h │ │ ├── AppSettings.cpp │ │ ├── AppSettings.h │ │ ├── AuthDlg.cpp │ │ ├── AuthDlg.h │ │ ├── BaseGraph.cpp │ │ ├── BaseGraph.h │ │ ├── CShockwaveFlash.cpp │ │ ├── CShockwaveFlash.h │ │ ├── CmdLineHelpDlg.cpp │ │ ├── CmdLineHelpDlg.h │ │ ├── ColorControl.cpp │ │ ├── ColorControl.h │ │ ├── ComPropertyPage.cpp │ │ ├── ComPropertyPage.h │ │ ├── Content.cpp │ │ ├── Content.h │ │ ├── DIB.h │ │ ├── DVBChannel.cpp │ │ ├── DVBChannel.h │ │ ├── DeinterlacerFilter.cpp │ │ ├── DeinterlacerFilter.h │ │ ├── DiskImage.cpp │ │ ├── DiskImage.h │ │ ├── EditWithButton.cpp │ │ ├── EditWithButton.h │ │ ├── FGFilter.cpp │ │ ├── FGFilter.h │ │ ├── FGManager.cpp │ │ ├── FGManager.h │ │ ├── FGManagerBDA.cpp │ │ ├── FGManagerBDA.h │ │ ├── FakeFilterMapper2.cpp │ │ ├── FakeFilterMapper2.h │ │ ├── FavoriteAddDlg.cpp │ │ ├── FavoriteAddDlg.h │ │ ├── FavoriteOrganizeDlg.cpp │ │ ├── FavoriteOrganizeDlg.h │ │ ├── FileDropTarget.cpp │ │ ├── FileDropTarget.h │ │ ├── FilterEnum.h │ │ ├── FloatEdit.cpp │ │ ├── FloatEdit.h │ │ ├── FullscreenWnd.cpp │ │ ├── FullscreenWnd.h │ │ ├── GoToDlg.cpp │ │ ├── GoToDlg.h │ │ ├── ISDb.cpp │ │ ├── ISDb.h │ │ ├── Ifo.cpp │ │ ├── Ifo.h │ │ ├── ItemPropertiesDlg.cpp │ │ ├── ItemPropertiesDlg.h │ │ ├── KeyProvider.cpp │ │ ├── KeyProvider.h │ │ ├── LcdSupport.cpp │ │ ├── LcdSupport.h │ │ ├── LineNumberEdit.cpp │ │ ├── LineNumberEdit.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── MediaFormats.cpp │ │ ├── MediaFormats.h │ │ ├── MediaTypesDlg.cpp │ │ ├── MediaTypesDlg.h │ │ ├── MiniDump.cpp │ │ ├── MiniDump.h │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Mpeg2SectionData.cpp │ │ ├── Mpeg2SectionData.h │ │ ├── MultiMonitor.cpp │ │ ├── MultiMonitor.h │ │ ├── OSD.cpp │ │ ├── OSD.h │ │ ├── OpenDlg.cpp │ │ ├── OpenDlg.h │ │ ├── OpenImage.h │ │ ├── PPageAccelTbl.cpp │ │ ├── PPageAccelTbl.h │ │ ├── PPageAudio.cpp │ │ ├── PPageAudio.h │ │ ├── PPageBase.cpp │ │ ├── PPageBase.h │ │ ├── PPageCapture.cpp │ │ ├── PPageCapture.h │ │ ├── PPageColor.cpp │ │ ├── PPageColor.h │ │ ├── PPageDVD.cpp │ │ ├── PPageDVD.h │ │ ├── PPageExternalFilters.cpp │ │ ├── PPageExternalFilters.h │ │ ├── PPageFileInfoClip.cpp │ │ ├── PPageFileInfoClip.h │ │ ├── PPageFileInfoDetails.cpp │ │ ├── PPageFileInfoDetails.h │ │ ├── PPageFileInfoRes.cpp │ │ ├── PPageFileInfoRes.h │ │ ├── PPageFileInfoSheet.cpp │ │ ├── PPageFileInfoSheet.h │ │ ├── PPageFileMediaInfo.cpp │ │ ├── PPageFileMediaInfo.h │ │ ├── PPageFiltersPriority.cpp │ │ ├── PPageFiltersPriority.h │ │ ├── PPageFormats.cpp │ │ ├── PPageFormats.h │ │ ├── PPageFullscreen.cpp │ │ ├── PPageFullscreen.h │ │ ├── PPageInterface.cpp │ │ ├── PPageInterface.h │ │ ├── PPageInternalFilters.cpp │ │ ├── PPageInternalFilters.h │ │ ├── PPageLogo.cpp │ │ ├── PPageLogo.h │ │ ├── PPageMisc.cpp │ │ ├── PPageMisc.h │ │ ├── PPagePlayback.cpp │ │ ├── PPagePlayback.h │ │ ├── PPagePlayer.cpp │ │ ├── PPagePlayer.h │ │ ├── PPageSheet.cpp │ │ ├── PPageSheet.h │ │ ├── PPageSoundProcessing.cpp │ │ ├── PPageSoundProcessing.h │ │ ├── PPageSubRend.cpp │ │ ├── PPageSubRend.h │ │ ├── PPageSubStyle.cpp │ │ ├── PPageSubStyle.h │ │ ├── PPageSubtitles.cpp │ │ ├── PPageSubtitles.h │ │ ├── PPageSync.cpp │ │ ├── PPageSync.h │ │ ├── PPageVideo.cpp │ │ ├── PPageVideo.h │ │ ├── PPageWebServer.cpp │ │ ├── PPageWebServer.h │ │ ├── PPageYouTube.cpp │ │ ├── PPageYouTube.h │ │ ├── PlayerBar.cpp │ │ ├── PlayerBar.h │ │ ├── PlayerCaptureBar.cpp │ │ ├── PlayerCaptureBar.h │ │ ├── PlayerChildView.cpp │ │ ├── PlayerChildView.h │ │ ├── PlayerFlyBar.cpp │ │ ├── PlayerFlyBar.h │ │ ├── PlayerInfoBar.cpp │ │ ├── PlayerInfoBar.h │ │ ├── PlayerListCtrl.cpp │ │ ├── PlayerListCtrl.h │ │ ├── PlayerNavigationBar.cpp │ │ ├── PlayerNavigationBar.h │ │ ├── PlayerPlaylistBar.cpp │ │ ├── PlayerPlaylistBar.h │ │ ├── PlayerPreView.cpp │ │ ├── PlayerPreView.h │ │ ├── PlayerSeekBar.cpp │ │ ├── PlayerSeekBar.h │ │ ├── PlayerShaderEditorBar.cpp │ │ ├── PlayerShaderEditorBar.h │ │ ├── PlayerStatusBar.cpp │ │ ├── PlayerStatusBar.h │ │ ├── PlayerSubresyncBar.cpp │ │ ├── PlayerSubresyncBar.h │ │ ├── PlayerToolBar.cpp │ │ ├── PlayerToolBar.h │ │ ├── PlayerVolumeCtrl.cpp │ │ ├── PlayerVolumeCtrl.h │ │ ├── PlayerYouTube.cpp │ │ ├── PlayerYouTube.h │ │ ├── PnSPresetsDlg.cpp │ │ ├── PnSPresetsDlg.h │ │ ├── PngImage.cpp │ │ ├── PngImage.h │ │ ├── RateControl.cpp │ │ ├── RateControl.h │ │ ├── RegFilterChooserDlg.cpp │ │ ├── RegFilterChooserDlg.h │ │ ├── SaveDlg.cpp │ │ ├── SaveDlg.h │ │ ├── SaveImageDialog.cpp │ │ ├── SaveImageDialog.h │ │ ├── SaveTextFileDialog.cpp │ │ ├── SaveTextFileDialog.h │ │ ├── SelectMediaType.cpp │ │ ├── SelectMediaType.h │ │ ├── SettingsDefines.h │ │ ├── ShaderAutoCompleteDlg.cpp │ │ ├── ShaderAutoCompleteDlg.h │ │ ├── ShaderCombineDlg.cpp │ │ ├── ShaderCombineDlg.h │ │ ├── ShaderEditorDlg.cpp │ │ ├── ShaderEditorDlg.h │ │ ├── ShaderNewDlg.cpp │ │ ├── ShaderNewDlg.h │ │ ├── ShockwaveGraph.cpp │ │ ├── ShockwaveGraph.h │ │ ├── StaticLink.cpp │ │ ├── StaticLink.h │ │ ├── StatusLabel.cpp │ │ ├── StatusLabel.h │ │ ├── SubtitleDlDlg.cpp │ │ ├── SubtitleDlDlg.h │ │ ├── TextPassThruFilter.cpp │ │ ├── TextPassThruFilter.h │ │ ├── ThumbsTaskDlg.cpp │ │ ├── ThumbsTaskDlg.h │ │ ├── TunerScanDlg.cpp │ │ ├── TunerScanDlg.h │ │ ├── UpdateChecker.cpp │ │ ├── UpdateChecker.h │ │ ├── WebClient.cpp │ │ ├── WebClient.h │ │ ├── WebServer.cpp │ │ ├── WebServer.h │ │ ├── WinHotkeyCtrl.cpp │ │ ├── WinHotkeyCtrl.h │ │ ├── mpc-be.vcxproj │ │ ├── mpc-be.vcxproj.filters │ │ ├── mpcapi.h │ │ ├── mplayerc.cpp │ │ ├── mplayerc.h │ │ ├── mplayerc.rc │ │ ├── res │ │ ├── Icon_114.ico │ │ ├── Icon_116.ico │ │ ├── Icon_41.ico │ │ ├── Toolbarw7.png │ │ ├── audio.png │ │ ├── empty.hlsl │ │ ├── flybar.png │ │ ├── gpu.png │ │ ├── gpu_125.png │ │ ├── gpu_150.png │ │ ├── gpu_175.png │ │ ├── gpu_200.png │ │ ├── gpu_225.png │ │ ├── gpu_250.png │ │ ├── gpu_300.png │ │ ├── gpu_350.png │ │ ├── icon.ico │ │ ├── logo.0.png │ │ ├── logo.1.png │ │ ├── mono.bmp │ │ ├── mpc-be.exe.manifest.conf │ │ ├── mpc-be.exe.manifest.template │ │ ├── mplayerc.rc2 │ │ ├── noaudio.bmp │ │ ├── onoff_144.bmp │ │ ├── onoff_96.bmp │ │ ├── stereo.bmp │ │ ├── streamtypes.bmp │ │ ├── tb_pause_16.ico │ │ ├── tb_play_16.ico │ │ ├── tb_stop_16.ico │ │ ├── toolbar.bmp │ │ ├── toolbar.png │ │ ├── toolbar_125.png │ │ ├── toolbar_150.png │ │ ├── toolbar_175.png │ │ ├── toolbar_200.png │ │ ├── toolbar_225.png │ │ ├── toolbar_250.png │ │ ├── toolbar_300.png │ │ ├── toolbar_350.png │ │ └── web │ │ │ ├── 1pix.gif │ │ │ ├── 404.html │ │ │ ├── bottomside.png │ │ │ ├── browser.html │ │ │ ├── controlback.png │ │ │ ├── controlbuttondecrate.png │ │ │ ├── controlbuttonincrate.png │ │ │ ├── controlbuttonpause.png │ │ │ ├── controlbuttonplay.png │ │ │ ├── controlbuttonskipback.png │ │ │ ├── controlbuttonskipforward.png │ │ │ ├── controlbuttonstep.png │ │ │ ├── controlbuttonstop.png │ │ │ ├── controls.html │ │ │ ├── controlvolumebar.png │ │ │ ├── controlvolumegrip.png │ │ │ ├── controlvolumeoff.png │ │ │ ├── controlvolumeon.png │ │ │ ├── default.css │ │ │ ├── favicon.png │ │ │ ├── headerback.png │ │ │ ├── headerclose.png │ │ │ ├── headericon.png │ │ │ ├── index.html │ │ │ ├── info.html │ │ │ ├── leftbottomside.png │ │ │ ├── leftside.png │ │ │ ├── player.html │ │ │ ├── rightbottomside.png │ │ │ ├── rightside.png │ │ │ ├── seekbargrip.png │ │ │ ├── seekbarleft.png │ │ │ ├── seekbarmid.png │ │ │ ├── seekbarright.png │ │ │ ├── sliderback.png │ │ │ ├── sliderbar.gif │ │ │ ├── slidergrip.gif │ │ │ ├── variables.html │ │ │ ├── vbg.png │ │ │ └── vbs.png │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── vkCodes.cpp │ │ └── vkCodes.h ├── common.props ├── filters │ ├── Lock.h │ ├── filters.h │ ├── filters │ │ ├── FilterInterfacesImpl.h │ │ ├── Filters.cpp │ │ ├── Filters.h │ │ ├── Filters.vcxproj │ │ ├── Filters.vcxproj.filters │ │ ├── InternalPropertyPage.cpp │ │ ├── InternalPropertyPage.h │ │ ├── ffmpeg_fix.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── muxer │ │ ├── BaseMuxer │ │ │ ├── BaseMuxer.cpp │ │ │ ├── BaseMuxer.h │ │ │ ├── BaseMuxer.vcxproj │ │ │ ├── BaseMuxer.vcxproj.filters │ │ │ ├── BaseMuxerInputPin.cpp │ │ │ ├── BaseMuxerInputPin.h │ │ │ ├── BaseMuxerOutputPin.cpp │ │ │ ├── BaseMuxerOutputPin.h │ │ │ ├── BaseMuxerRelatedPin.cpp │ │ │ ├── BaseMuxerRelatedPin.h │ │ │ ├── BitStream.cpp │ │ │ ├── BitStream.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── DSMMuxer │ │ │ ├── DSMMuxer.cpp │ │ │ ├── DSMMuxer.def │ │ │ ├── DSMMuxer.h │ │ │ ├── DSMMuxer.rc │ │ │ ├── DSMMuxer.vcxproj │ │ │ ├── DSMMuxer.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MatroskaMuxer │ │ │ ├── MatroskaFile.cpp │ │ │ ├── MatroskaFile.h │ │ │ ├── MatroskaMuxer.cpp │ │ │ ├── MatroskaMuxer.def │ │ │ ├── MatroskaMuxer.h │ │ │ ├── MatroskaMuxer.rc │ │ │ ├── MatroskaMuxer.vcxproj │ │ │ ├── MatroskaMuxer.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── WavDest │ │ │ ├── WavDest.cpp │ │ │ ├── WavDest.def │ │ │ ├── WavDest.h │ │ │ ├── WavDest.rc │ │ │ ├── WavDest.vcxproj │ │ │ ├── WavDest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── parser │ │ ├── AudioSplitter │ │ │ ├── AMRFile.cpp │ │ │ ├── AMRFile.h │ │ │ ├── APEFile.cpp │ │ │ ├── APEFile.h │ │ │ ├── AudioFile.cpp │ │ │ ├── AudioFile.h │ │ │ ├── AudioSplitter.cpp │ │ │ ├── AudioSplitter.def │ │ │ ├── AudioSplitter.h │ │ │ ├── AudioSplitter.rc │ │ │ ├── AudioSplitter.vcxproj │ │ │ ├── AudioSplitter.vcxproj.filters │ │ │ ├── DFFFile.cpp │ │ │ ├── DFFFile.h │ │ │ ├── DSFFile.cpp │ │ │ ├── DSFFile.h │ │ │ ├── DTSHDFile.cpp │ │ │ ├── DTSHDFile.h │ │ │ ├── TAKFile.cpp │ │ │ ├── TAKFile.h │ │ │ ├── TTAFile.cpp │ │ │ ├── TTAFile.h │ │ │ ├── WAVFile.cpp │ │ │ ├── WAVFile.h │ │ │ ├── WavPackFile.cpp │ │ │ ├── WavPackFile.h │ │ │ ├── Wave64File.cpp │ │ │ ├── Wave64File.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── AviSplitter │ │ │ ├── AviFile.cpp │ │ │ ├── AviFile.h │ │ │ ├── AviSplitter.cpp │ │ │ ├── AviSplitter.def │ │ │ ├── AviSplitter.h │ │ │ ├── AviSplitter.rc │ │ │ ├── AviSplitter.vcxproj │ │ │ ├── AviSplitter.vcxproj.filters │ │ │ ├── AviSplitterSettingsWnd.cpp │ │ │ ├── AviSplitterSettingsWnd.h │ │ │ ├── IAviSplitter.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── BaseSplitter │ │ │ ├── AsyncReader.cpp │ │ │ ├── AsyncReader.h │ │ │ ├── BaseSplitter.cpp │ │ │ ├── BaseSplitter.h │ │ │ ├── BaseSplitter.vcxproj │ │ │ ├── BaseSplitter.vcxproj.filters │ │ │ ├── BaseSplitterFile.cpp │ │ │ ├── BaseSplitterFile.h │ │ │ ├── BaseSplitterFileEx.cpp │ │ │ ├── BaseSplitterFileEx.h │ │ │ ├── BaseSplitterInputPin.cpp │ │ │ ├── BaseSplitterInputPin.h │ │ │ ├── BaseSplitterOutputPin.cpp │ │ │ ├── BaseSplitterOutputPin.h │ │ │ ├── BaseSplitterParserOutputPin.cpp │ │ │ ├── BaseSplitterParserOutputPin.h │ │ │ ├── FrameDuration.cpp │ │ │ ├── FrameDuration.h │ │ │ ├── MultiFiles.cpp │ │ │ ├── MultiFiles.h │ │ │ ├── Teletext.cpp │ │ │ ├── Teletext.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── BinkSplitter │ │ │ ├── BinkSplitter.cpp │ │ │ ├── BinkSplitter.def │ │ │ ├── BinkSplitter.h │ │ │ ├── BinkSplitter.rc │ │ │ ├── BinkSplitter.vcxproj │ │ │ ├── BinkSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── DSMSplitter │ │ │ ├── DSMSplitter.cpp │ │ │ ├── DSMSplitter.def │ │ │ ├── DSMSplitter.h │ │ │ ├── DSMSplitter.rc │ │ │ ├── DSMSplitter.vcxproj │ │ │ ├── DSMSplitter.vcxproj.filters │ │ │ ├── DSMSplitterFile.cpp │ │ │ ├── DSMSplitterFile.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── FLVSplitter │ │ │ ├── FLVSplitter.cpp │ │ │ ├── FLVSplitter.def │ │ │ ├── FLVSplitter.h │ │ │ ├── FLVSplitter.rc │ │ │ ├── FLVSplitter.vcxproj │ │ │ ├── FLVSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MP4Splitter │ │ │ ├── Ap4AsyncReaderStream.cpp │ │ │ ├── Ap4AsyncReaderStream.h │ │ │ ├── MP4Splitter.cpp │ │ │ ├── MP4Splitter.def │ │ │ ├── MP4Splitter.h │ │ │ ├── MP4Splitter.rc │ │ │ ├── MP4Splitter.vcxproj │ │ │ ├── MP4Splitter.vcxproj.filters │ │ │ ├── MP4SplitterFile.cpp │ │ │ ├── MP4SplitterFile.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MatroskaSplitter │ │ │ ├── IMatroskaSplitter.h │ │ │ ├── MatroskaFile.cpp │ │ │ ├── MatroskaFile.h │ │ │ ├── MatroskaSplitter.cpp │ │ │ ├── MatroskaSplitter.def │ │ │ ├── MatroskaSplitter.h │ │ │ ├── MatroskaSplitter.rc │ │ │ ├── MatroskaSplitter.vcxproj │ │ │ ├── MatroskaSplitter.vcxproj.filters │ │ │ ├── MatroskaSplitterSettingsWnd.cpp │ │ │ ├── MatroskaSplitterSettingsWnd.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MpaSplitter │ │ │ ├── MpaSplitter.cpp │ │ │ ├── MpaSplitter.def │ │ │ ├── MpaSplitter.h │ │ │ ├── MpaSplitter.rc │ │ │ ├── MpaSplitter.vcxproj │ │ │ ├── MpaSplitter.vcxproj.filters │ │ │ ├── MpaSplitterFile.cpp │ │ │ ├── MpaSplitterFile.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MpegSplitter │ │ │ ├── IMpegSplitter.h │ │ │ ├── MpegSplitter.cpp │ │ │ ├── MpegSplitter.def │ │ │ ├── MpegSplitter.h │ │ │ ├── MpegSplitter.rc │ │ │ ├── MpegSplitter.vcxproj │ │ │ ├── MpegSplitter.vcxproj.filters │ │ │ ├── MpegSplitterFile.cpp │ │ │ ├── MpegSplitterFile.h │ │ │ ├── MpegSplitterSettingsWnd.cpp │ │ │ ├── MpegSplitterSettingsWnd.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MusePackSplitter │ │ │ ├── MusePackSplitter.cpp │ │ │ ├── MusePackSplitter.def │ │ │ ├── MusePackSplitter.h │ │ │ ├── MusePackSplitter.rc │ │ │ ├── MusePackSplitter.vcxproj │ │ │ ├── MusePackSplitter.vcxproj.filters │ │ │ ├── bits.cpp │ │ │ ├── bits.h │ │ │ ├── mpc_file.cpp │ │ │ ├── mpc_file.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── OggSplitter │ │ │ ├── OggFile.cpp │ │ │ ├── OggFile.h │ │ │ ├── OggSplitter.cpp │ │ │ ├── OggSplitter.def │ │ │ ├── OggSplitter.h │ │ │ ├── OggSplitter.rc │ │ │ ├── OggSplitter.vcxproj │ │ │ ├── OggSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── RawVideoSplitter │ │ │ ├── RawVideoSplitter.cpp │ │ │ ├── RawVideoSplitter.def │ │ │ ├── RawVideoSplitter.h │ │ │ ├── RawVideoSplitter.rc │ │ │ ├── RawVideoSplitter.vcxproj │ │ │ ├── RawVideoSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── RealMediaSplitter │ │ │ ├── RealMediaSplitter.cpp │ │ │ ├── RealMediaSplitter.def │ │ │ ├── RealMediaSplitter.h │ │ │ ├── RealMediaSplitter.rc │ │ │ ├── RealMediaSplitter.vcxproj │ │ │ ├── RealMediaSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── RoQSplitter │ │ │ ├── RoQSplitter.cpp │ │ │ ├── RoQSplitter.def │ │ │ ├── RoQSplitter.h │ │ │ ├── RoQSplitter.rc │ │ │ ├── RoQSplitter.vcxproj │ │ │ ├── RoQSplitter.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── StreamDriveThru │ │ │ ├── StreamDriveThru.cpp │ │ │ ├── StreamDriveThru.def │ │ │ ├── StreamDriveThru.h │ │ │ ├── StreamDriveThru.rc │ │ │ ├── StreamDriveThru.vcxproj │ │ │ ├── StreamDriveThru.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── reader │ │ ├── CDDAReader │ │ │ ├── CDDAReader.cpp │ │ │ ├── CDDAReader.def │ │ │ ├── CDDAReader.h │ │ │ ├── CDDAReader.rc │ │ │ ├── CDDAReader.vcxproj │ │ │ ├── CDDAReader.vcxproj.filters │ │ │ ├── CDDAReaderSettingsWnd.cpp │ │ │ ├── CDDAReaderSettingsWnd.h │ │ │ ├── ICDDAReader.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CDXAReader │ │ │ ├── CDXAReader.cpp │ │ │ ├── CDXAReader.def │ │ │ ├── CDXAReader.h │ │ │ ├── CDXAReader.rc │ │ │ ├── CDXAReader.vcxproj │ │ │ ├── CDXAReader.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── UDPReader │ │ │ ├── UDPReader.cpp │ │ │ ├── UDPReader.def │ │ │ ├── UDPReader.h │ │ │ ├── UDPReader.rc │ │ │ ├── UDPReader.vcxproj │ │ │ ├── UDPReader.vcxproj.filters │ │ │ ├── UDPStream.cpp │ │ │ ├── UDPStream.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── VTSReader │ │ │ ├── IVTSReader.h │ │ │ ├── VTSReader.cpp │ │ │ ├── VTSReader.def │ │ │ ├── VTSReader.h │ │ │ ├── VTSReader.rc │ │ │ ├── VTSReader.vcxproj │ │ │ ├── VTSReader.vcxproj.filters │ │ │ ├── VTSReaderSettingsWnd.cpp │ │ │ ├── VTSReaderSettingsWnd.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── renderer │ │ ├── MpcAudioRenderer │ │ │ ├── AudioDevice.cpp │ │ │ ├── AudioDevice.h │ │ │ ├── Filter.cpp │ │ │ ├── Filter.h │ │ │ ├── IMpcAudioRenderer.h │ │ │ ├── MpcAudioRenderer.cpp │ │ │ ├── MpcAudioRenderer.def │ │ │ ├── MpcAudioRenderer.h │ │ │ ├── MpcAudioRenderer.rc │ │ │ ├── MpcAudioRenderer.vcxproj │ │ │ ├── MpcAudioRenderer.vcxproj.filters │ │ │ ├── MpcAudioRendererSettingsWnd.cpp │ │ │ ├── MpcAudioRendererSettingsWnd.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── SyncClock │ │ │ ├── ISyncClock.h │ │ │ ├── SyncClock.cpp │ │ │ ├── SyncClock.h │ │ │ ├── SyncClock.vcxproj │ │ │ ├── SyncClock.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── VideoRenderers │ │ │ ├── AllocatorCommon.cpp │ │ │ ├── AllocatorCommon.h │ │ │ ├── CPUUsage.cpp │ │ │ ├── CPUUsage.h │ │ │ ├── D3DFont.cpp │ │ │ ├── D3DFont.h │ │ │ ├── D3DHook.cpp │ │ │ ├── D3DHook.h │ │ │ ├── DX9AllocatorPresenter.cpp │ │ │ ├── DX9AllocatorPresenter.h │ │ │ ├── DX9RenderingEngine.cpp │ │ │ ├── DX9RenderingEngine.h │ │ │ ├── DXRAllocatorPresenter.cpp │ │ │ ├── DXRAllocatorPresenter.h │ │ │ ├── Dither.cpp │ │ │ ├── Dither.h │ │ │ ├── EVRAllocatorPresenter.cpp │ │ │ ├── EVRAllocatorPresenter.h │ │ │ ├── FocusThread.cpp │ │ │ ├── FocusThread.h │ │ │ ├── GPUUsage.cpp │ │ │ ├── GPUUsage.h │ │ │ ├── IPinHook.cpp │ │ │ ├── IPinHook.h │ │ │ ├── Include │ │ │ ├── d3dkmt.h │ │ │ ├── d3dukmdt.h │ │ │ └── d3dumddi.h │ │ │ ├── MacrovisionKicker.cpp │ │ │ ├── MacrovisionKicker.h │ │ │ ├── MemUsage.cpp │ │ │ ├── MemUsage.h │ │ │ ├── OuterEVR.cpp │ │ │ ├── OuterEVR.h │ │ │ ├── PixelShaderCompiler.cpp │ │ │ ├── PixelShaderCompiler.h │ │ │ ├── RenderersSettings.cpp │ │ │ ├── RenderersSettings.h │ │ │ ├── SyncAllocatorPresenter.h │ │ │ ├── SyncRenderer.cpp │ │ │ ├── SyncRenderer.h │ │ │ ├── Utils.cpp │ │ │ ├── Utils.h │ │ │ ├── Variables.h │ │ │ ├── VideoRenderers.vcxproj │ │ │ ├── VideoRenderers.vcxproj.filters │ │ │ ├── madVRAllocatorPresenter.cpp │ │ │ ├── madVRAllocatorPresenter.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── source │ │ ├── BaseSource │ │ │ ├── BaseSource.cpp │ │ │ ├── BaseSource.h │ │ │ ├── BaseSource.vcxproj │ │ │ ├── BaseSource.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── DTSAC3Source │ │ │ ├── DTSAC3Source.cpp │ │ │ ├── DTSAC3Source.def │ │ │ ├── DTSAC3Source.h │ │ │ ├── DTSAC3Source.rc │ │ │ ├── DTSAC3Source.vcxproj │ │ │ ├── DTSAC3Source.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── FLACSource │ │ │ ├── FLACSource.cpp │ │ │ ├── FLACSource.def │ │ │ ├── FLACSource.h │ │ │ ├── FLACSource.rc │ │ │ ├── FLACSource.vcxproj │ │ │ ├── FLACSource.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── FLICSource │ │ │ ├── FLICSource.cpp │ │ │ ├── FLICSource.def │ │ │ ├── FLICSource.h │ │ │ ├── FLICSource.rc │ │ │ ├── FLICSource.vcxproj │ │ │ ├── FLICSource.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── ShoutcastSource │ │ │ ├── ShoutcastSource.cpp │ │ │ ├── ShoutcastSource.def │ │ │ ├── ShoutcastSource.h │ │ │ ├── ShoutcastSource.rc │ │ │ ├── ShoutcastSource.vcxproj │ │ │ ├── ShoutcastSource.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── SubtitleSource │ │ │ ├── SubtitleSource.cpp │ │ │ ├── SubtitleSource.def │ │ │ ├── SubtitleSource.h │ │ │ ├── SubtitleSource.rc │ │ │ ├── SubtitleSource.vcxproj │ │ │ ├── SubtitleSource.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── switcher │ │ └── AudioSwitcher │ │ │ ├── AudioNormalizer.cpp │ │ │ ├── AudioNormalizer.h │ │ │ ├── AudioSwitcher.cpp │ │ │ ├── AudioSwitcher.def │ │ │ ├── AudioSwitcher.h │ │ │ ├── AudioSwitcher.rc │ │ │ ├── AudioSwitcher.vcxproj │ │ │ ├── AudioSwitcher.vcxproj.filters │ │ │ ├── IAudioSwitcherFilter.h │ │ │ ├── StreamSwitcher.cpp │ │ │ ├── StreamSwitcher.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ └── transform │ │ ├── AVI2AC3Filter │ │ ├── AVI2AC3Filter.cpp │ │ ├── AVI2AC3Filter.def │ │ ├── AVI2AC3Filter.h │ │ ├── AVI2AC3Filter.rc │ │ ├── AVI2AC3Filter.vcxproj │ │ ├── AVI2AC3Filter.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── BaseVideoFilter │ │ ├── BaseVideoFilter.cpp │ │ ├── BaseVideoFilter.h │ │ ├── BaseVideoFilter.vcxproj │ │ ├── BaseVideoFilter.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── BufferFilter │ │ ├── BufferFilter.cpp │ │ ├── BufferFilter.def │ │ ├── BufferFilter.h │ │ ├── BufferFilter.rc │ │ ├── BufferFilter.vcxproj │ │ ├── BufferFilter.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── DeCSSFilter │ │ ├── CSSauth.cpp │ │ ├── CSSauth.h │ │ ├── CSSscramble.cpp │ │ ├── CSSscramble.h │ │ ├── DeCSSFilter.cpp │ │ ├── DeCSSFilter.def │ │ ├── DeCSSFilter.h │ │ ├── DeCSSFilter.rc │ │ ├── DeCSSFilter.vcxproj │ │ ├── DeCSSFilter.vcxproj.filters │ │ ├── DeCSSFilterStatic.vcxproj │ │ ├── DeCSSFilterStatic.vcxproj.filters │ │ ├── IfoFile.cpp │ │ ├── IfoFile.h │ │ ├── VobDec.cpp │ │ ├── VobDec.h │ │ ├── VobFile.cpp │ │ ├── VobFile.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── udf.cpp │ │ └── udf.h │ │ ├── MPCVideoDec │ │ ├── DXVADecoder │ │ │ ├── DXVA2Decoder.cpp │ │ │ ├── DXVA2Decoder.h │ │ │ ├── DXVAAllocator.cpp │ │ │ ├── DXVAAllocator.h │ │ │ ├── MediaSampleSideData.cpp │ │ │ ├── MediaSampleSideData.h │ │ │ └── stdafx.h │ │ ├── FormatConverter.cpp │ │ ├── FormatConverter.h │ │ ├── IMPCVideoDec.h │ │ ├── MPCVideoDec.cpp │ │ ├── MPCVideoDec.def │ │ ├── MPCVideoDec.h │ │ ├── MPCVideoDec.rc │ │ ├── MPCVideoDec.vcxproj │ │ ├── MPCVideoDec.vcxproj.filters │ │ ├── MPCVideoDecSettingsWnd.cpp │ │ ├── MPCVideoDecSettingsWnd.h │ │ ├── MSDKDecoder │ │ │ ├── AnnexBConverter.cpp │ │ │ ├── AnnexBConverter.h │ │ │ ├── ByteParser.cpp │ │ │ ├── ByteParser.h │ │ │ ├── MSDKDecoder.cpp │ │ │ ├── MSDKDecoder.h │ │ │ ├── growarray.h │ │ │ ├── include │ │ │ │ ├── mfxcommon.h │ │ │ │ ├── mfxdefs.h │ │ │ │ ├── mfxmvc.h │ │ │ │ ├── mfxsession.h │ │ │ │ ├── mfxstructures.h │ │ │ │ ├── mfxvideo.h │ │ │ │ └── mfxvstructures.h │ │ │ └── stdafx.h │ │ ├── ffmpegContext.cpp │ │ ├── ffmpegContext.h │ │ ├── pixconv_functions.cpp │ │ ├── pixconv_sse2_templates.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── MpaDecFilter │ │ ├── AC3Encoder.cpp │ │ ├── AC3Encoder.h │ │ ├── AudioDecoders.cpp │ │ ├── AudioDecoders.h │ │ ├── FFAudioDecoder.cpp │ │ ├── FFAudioDecoder.h │ │ ├── IMpaDecFilter.h │ │ ├── MpaDecFilter.cpp │ │ ├── MpaDecFilter.def │ │ ├── MpaDecFilter.h │ │ ├── MpaDecFilter.rc │ │ ├── MpaDecFilter.vcxproj │ │ ├── MpaDecFilter.vcxproj.filters │ │ ├── MpaDecFilterSettingsWnd.cpp │ │ ├── MpaDecFilterSettingsWnd.h │ │ ├── PaddedBuffer.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── Mpeg2DecFilter │ │ ├── IMpeg2DecFilter.h │ │ ├── Mpeg2DecFilter.cpp │ │ ├── Mpeg2DecFilter.def │ │ ├── Mpeg2DecFilter.h │ │ ├── Mpeg2DecFilter.rc │ │ ├── Mpeg2DecFilter.vcxproj │ │ ├── Mpeg2DecFilter.vcxproj.filters │ │ ├── Mpeg2DecFilterSettingsWnd.cpp │ │ ├── Mpeg2DecFilterSettingsWnd.h │ │ ├── attributes.h │ │ ├── idct_sse2.cpp │ │ ├── libmpeg2.cpp │ │ ├── libmpeg2.h │ │ ├── mc_sse2.cpp │ │ ├── resource.h │ │ ├── simd.h │ │ ├── simd_common.h │ │ ├── simd_instructions.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ └── VSFilter │ │ ├── AvgLines.cpp │ │ ├── AvgLines.h │ │ ├── Copy.cpp │ │ ├── DirectVobSub.cpp │ │ ├── DirectVobSub.h │ │ ├── DirectVobSubFilter.cpp │ │ ├── DirectVobSubFilter.h │ │ ├── DirectVobSubPropPage.cpp │ │ ├── DirectVobSubPropPage.h │ │ ├── IDirectVobSub.h │ │ ├── Scale2x.cpp │ │ ├── Scale2x.h │ │ ├── StyleEditorDialog.cpp │ │ ├── StyleEditorDialog.h │ │ ├── Systray.cpp │ │ ├── Systray.h │ │ ├── TextInputPin.cpp │ │ ├── TextInputPin.h │ │ ├── VSFilter.cpp │ │ ├── VSFilter.def │ │ ├── VSFilter.h │ │ ├── VSFilter.rc │ │ ├── VSFilter.vcxproj │ │ ├── VSFilter.vcxproj.filters │ │ ├── csri.h │ │ ├── csriapi.cpp │ │ ├── plugins.cpp │ │ ├── res │ │ ├── VSFilter.ico │ │ ├── VSFilter.manifest │ │ └── VSFilter.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── vfr.cpp │ │ └── vfr.h └── platform.props ├── update_gcc.bat └── update_version.bat /MPCBEShellExt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/MPCBEShellExt.sln -------------------------------------------------------------------------------- /MPCTestAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/MPCTestAPI.sln -------------------------------------------------------------------------------- /contrib/sign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/contrib/sign.cmd -------------------------------------------------------------------------------- /distrib/DirectX/x64/d3dx9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/DirectX/x64/d3dx9_43.dll -------------------------------------------------------------------------------- /distrib/DirectX/x86/d3dx9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/DirectX/x86/d3dx9_43.dll -------------------------------------------------------------------------------- /distrib/Languages/Basque.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Basque.isl -------------------------------------------------------------------------------- /distrib/Languages/Belarusian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Belarusian.isl -------------------------------------------------------------------------------- /distrib/Languages/German.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/German.isl -------------------------------------------------------------------------------- /distrib/Languages/Korean.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Korean.isl -------------------------------------------------------------------------------- /distrib/Languages/Romanian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Romanian.isl -------------------------------------------------------------------------------- /distrib/Languages/Slovak.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Slovak.isl -------------------------------------------------------------------------------- /distrib/Languages/Swedish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Languages/Swedish.isl -------------------------------------------------------------------------------- /distrib/Shaders/contour.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/contour.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/denoise.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/denoise.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/edge sharpen.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/edge sharpen.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/emboss.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/emboss.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/grayscale.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/grayscale.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/invert.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/invert.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/letterbox.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/letterbox.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/nightvision.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/nightvision.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/procamp.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/procamp.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/sharpen.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/sharpen.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/sphere.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/sphere.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/spotlight.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/spotlight.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/threshold.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/threshold.hlsl -------------------------------------------------------------------------------- /distrib/Shaders/wave.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/Shaders/wave.hlsl -------------------------------------------------------------------------------- /distrib/WizardImageFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/WizardImageFile.bmp -------------------------------------------------------------------------------- /distrib/WizardSmallImageFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/WizardSmallImageFile.bmp -------------------------------------------------------------------------------- /distrib/custom_messages.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/custom_messages.iss -------------------------------------------------------------------------------- /distrib/mpc-be_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/distrib/mpc-be_setup.iss -------------------------------------------------------------------------------- /docs/Authors mpc-hc team.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Authors mpc-hc team.txt -------------------------------------------------------------------------------- /docs/Authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Authors.txt -------------------------------------------------------------------------------- /docs/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/COPYING.txt -------------------------------------------------------------------------------- /docs/Changelog.Rus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Changelog.Rus.txt -------------------------------------------------------------------------------- /docs/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Changelog.txt -------------------------------------------------------------------------------- /docs/Compilation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Compilation.txt -------------------------------------------------------------------------------- /docs/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Readme.txt -------------------------------------------------------------------------------- /docs/Release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/Release.txt -------------------------------------------------------------------------------- /docs/custom_code/Little-CMS.txt: -------------------------------------------------------------------------------- 1 | * lcms2.h -------------------------------------------------------------------------------- /docs/custom_code/VirtualDub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/custom_code/VirtualDub.txt -------------------------------------------------------------------------------- /docs/custom_code/ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/docs/custom_code/ffmpeg.txt -------------------------------------------------------------------------------- /docs/custom_code/soxr.txt: -------------------------------------------------------------------------------- 1 | * fft4g.c -------------------------------------------------------------------------------- /include/FilterInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/FilterInterfaces.h -------------------------------------------------------------------------------- /include/HighDPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/HighDPI.h -------------------------------------------------------------------------------- /include/IBitRateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IBitRateInfo.h -------------------------------------------------------------------------------- /include/IBufferControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IBufferControl.h -------------------------------------------------------------------------------- /include/IBufferInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IBufferInfo.h -------------------------------------------------------------------------------- /include/IChapterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IChapterInfo.h -------------------------------------------------------------------------------- /include/IFilterVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IFilterVersion.h -------------------------------------------------------------------------------- /include/IKeyFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IKeyFrameInfo.h -------------------------------------------------------------------------------- /include/IMediaSample3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IMediaSample3D.h -------------------------------------------------------------------------------- /include/IMediaSideData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/IMediaSideData.h -------------------------------------------------------------------------------- /include/ITrackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/ITrackInfo.h -------------------------------------------------------------------------------- /include/LAVVideoSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/LAVVideoSettings.h -------------------------------------------------------------------------------- /include/MediaOffset3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/MediaOffset3D.h -------------------------------------------------------------------------------- /include/SubRenderIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/SubRenderIntf.h -------------------------------------------------------------------------------- /include/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/Utf8.h -------------------------------------------------------------------------------- /include/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/Version.h -------------------------------------------------------------------------------- /include/Version_rev.h.in: -------------------------------------------------------------------------------- 1 | #define MPC_VERSION_REV $WCREV$ 2 | -------------------------------------------------------------------------------- /include/adl/adl_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/adl/adl_defines.h -------------------------------------------------------------------------------- /include/adl/adl_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/adl/adl_sdk.h -------------------------------------------------------------------------------- /include/adl/adl_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/adl/adl_structures.h -------------------------------------------------------------------------------- /include/avisynth/avisynth1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/avisynth/avisynth1.h -------------------------------------------------------------------------------- /include/avisynth/avisynth25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/avisynth/avisynth25.h -------------------------------------------------------------------------------- /include/basestruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/basestruct.h -------------------------------------------------------------------------------- /include/detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/detours/detours.h -------------------------------------------------------------------------------- /include/dsm/dsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dsm/dsm.h -------------------------------------------------------------------------------- /include/dx/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3d.h -------------------------------------------------------------------------------- /include/dx/d3dcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dcaps.h -------------------------------------------------------------------------------- /include/dx/d3dtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dtypes.h -------------------------------------------------------------------------------- /include/dx/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9.h -------------------------------------------------------------------------------- /include/dx/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9anim.h -------------------------------------------------------------------------------- /include/dx/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9core.h -------------------------------------------------------------------------------- /include/dx/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9effect.h -------------------------------------------------------------------------------- /include/dx/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9math.h -------------------------------------------------------------------------------- /include/dx/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9math.inl -------------------------------------------------------------------------------- /include/dx/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9mesh.h -------------------------------------------------------------------------------- /include/dx/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9shader.h -------------------------------------------------------------------------------- /include/dx/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9shape.h -------------------------------------------------------------------------------- /include/dx/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9tex.h -------------------------------------------------------------------------------- /include/dx/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/dx/d3dx9xof.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/lglcd/lglcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/lglcd/lglcd.h -------------------------------------------------------------------------------- /include/libdivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/libdivide.h -------------------------------------------------------------------------------- /include/moreuuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/moreuuids.h -------------------------------------------------------------------------------- /include/mpc_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/mpc_defines.h -------------------------------------------------------------------------------- /include/mvrInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/mvrInterfaces.h -------------------------------------------------------------------------------- /include/stdafx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/stdafx_common.h -------------------------------------------------------------------------------- /include/stdafx_common_dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/stdafx_common_dshow.h -------------------------------------------------------------------------------- /include/vd2/VDXFrame/Unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/vd2/VDXFrame/Unknown.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdaudiofilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/vd2/plugin/vdaudiofilt.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/vd2/plugin/vdplugin.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdvideofilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/vd2/plugin/vdvideofilt.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdvideoutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/vd2/plugin/vdvideoutil.h -------------------------------------------------------------------------------- /include/winddk/devioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/winddk/devioctl.h -------------------------------------------------------------------------------- /include/winddk/ntddcdrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/winddk/ntddcdrm.h -------------------------------------------------------------------------------- /include/winddk/ntddcdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/winddk/ntddcdvd.h -------------------------------------------------------------------------------- /include/winddk/ntdddisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/winddk/ntdddisk.h -------------------------------------------------------------------------------- /include/winddk/ntddstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/include/winddk/ntddstor.h -------------------------------------------------------------------------------- /lib/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib/detours.lib -------------------------------------------------------------------------------- /lib/lgLcd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib/lgLcd.lib -------------------------------------------------------------------------------- /lib/libmfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib/libmfx.lib -------------------------------------------------------------------------------- /lib/libspeex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib/libspeex.a -------------------------------------------------------------------------------- /lib64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib64/detours.lib -------------------------------------------------------------------------------- /lib64/lgLcd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib64/lgLcd.lib -------------------------------------------------------------------------------- /lib64/libmfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib64/libmfx.lib -------------------------------------------------------------------------------- /lib64/libspeex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/lib64/libspeex.a -------------------------------------------------------------------------------- /mpc-be.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/mpc-be.sln -------------------------------------------------------------------------------- /mpciconlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/mpciconlib.sln -------------------------------------------------------------------------------- /mpcresources.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/mpcresources.sln -------------------------------------------------------------------------------- /src/AudioTools/AudioHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/AudioHelper.cpp -------------------------------------------------------------------------------- /src/AudioTools/AudioHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/AudioHelper.h -------------------------------------------------------------------------------- /src/AudioTools/AudioTools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/AudioTools.vcxproj -------------------------------------------------------------------------------- /src/AudioTools/BassRedirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/BassRedirect.cpp -------------------------------------------------------------------------------- /src/AudioTools/BassRedirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/BassRedirect.h -------------------------------------------------------------------------------- /src/AudioTools/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/Mixer.cpp -------------------------------------------------------------------------------- /src/AudioTools/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/Mixer.h -------------------------------------------------------------------------------- /src/AudioTools/SampleFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/SampleFormat.cpp -------------------------------------------------------------------------------- /src/AudioTools/SampleFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/SampleFormat.h -------------------------------------------------------------------------------- /src/AudioTools/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/stdafx.cpp -------------------------------------------------------------------------------- /src/AudioTools/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/AudioTools/stdafx.h -------------------------------------------------------------------------------- /src/DSUtil/ApeTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ApeTag.cpp -------------------------------------------------------------------------------- /src/DSUtil/ApeTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ApeTag.h -------------------------------------------------------------------------------- /src/DSUtil/AudioParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/AudioParser.cpp -------------------------------------------------------------------------------- /src/DSUtil/AudioParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/AudioParser.h -------------------------------------------------------------------------------- /src/DSUtil/AudioTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/AudioTools.cpp -------------------------------------------------------------------------------- /src/DSUtil/AudioTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/AudioTools.h -------------------------------------------------------------------------------- /src/DSUtil/CPUInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/CPUInfo.cpp -------------------------------------------------------------------------------- /src/DSUtil/CPUInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/CPUInfo.h -------------------------------------------------------------------------------- /src/DSUtil/CUE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/CUE.cpp -------------------------------------------------------------------------------- /src/DSUtil/CUE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/CUE.h -------------------------------------------------------------------------------- /src/DSUtil/D3D9Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/D3D9Helper.cpp -------------------------------------------------------------------------------- /src/DSUtil/D3D9Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/D3D9Helper.h -------------------------------------------------------------------------------- /src/DSUtil/DSMPropertyBag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSMPropertyBag.cpp -------------------------------------------------------------------------------- /src/DSUtil/DSMPropertyBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSMPropertyBag.h -------------------------------------------------------------------------------- /src/DSUtil/DSUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSUtil.cpp -------------------------------------------------------------------------------- /src/DSUtil/DSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSUtil.h -------------------------------------------------------------------------------- /src/DSUtil/DSUtil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSUtil.vcxproj -------------------------------------------------------------------------------- /src/DSUtil/DSUtil.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DSUtil.vcxproj.filters -------------------------------------------------------------------------------- /src/DSUtil/DXVAState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DXVAState.cpp -------------------------------------------------------------------------------- /src/DSUtil/DXVAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/DXVAState.h -------------------------------------------------------------------------------- /src/DSUtil/FileHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FileHandle.cpp -------------------------------------------------------------------------------- /src/DSUtil/FileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FileHandle.h -------------------------------------------------------------------------------- /src/DSUtil/FileVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FileVersion.h -------------------------------------------------------------------------------- /src/DSUtil/FileVersionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FileVersionInfo.cpp -------------------------------------------------------------------------------- /src/DSUtil/FileVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FileVersionInfo.h -------------------------------------------------------------------------------- /src/DSUtil/FontInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FontInstaller.cpp -------------------------------------------------------------------------------- /src/DSUtil/FontInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/FontInstaller.h -------------------------------------------------------------------------------- /src/DSUtil/GUIDString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/GUIDString.cpp -------------------------------------------------------------------------------- /src/DSUtil/GUIDString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/GUIDString.h -------------------------------------------------------------------------------- /src/DSUtil/GolombBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/GolombBuffer.cpp -------------------------------------------------------------------------------- /src/DSUtil/GolombBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/GolombBuffer.h -------------------------------------------------------------------------------- /src/DSUtil/H264Nalu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/H264Nalu.cpp -------------------------------------------------------------------------------- /src/DSUtil/H264Nalu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/H264Nalu.h -------------------------------------------------------------------------------- /src/DSUtil/HTTPAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/HTTPAsync.cpp -------------------------------------------------------------------------------- /src/DSUtil/HTTPAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/HTTPAsync.h -------------------------------------------------------------------------------- /src/DSUtil/HdmvClipInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/HdmvClipInfo.cpp -------------------------------------------------------------------------------- /src/DSUtil/HdmvClipInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/HdmvClipInfo.h -------------------------------------------------------------------------------- /src/DSUtil/ID3Tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ID3Tag.cpp -------------------------------------------------------------------------------- /src/DSUtil/ID3Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ID3Tag.h -------------------------------------------------------------------------------- /src/DSUtil/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Log.h -------------------------------------------------------------------------------- /src/DSUtil/MFCHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MFCHelper.cpp -------------------------------------------------------------------------------- /src/DSUtil/MFCHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MFCHelper.h -------------------------------------------------------------------------------- /src/DSUtil/MPCSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MPCSocket.cpp -------------------------------------------------------------------------------- /src/DSUtil/MPCSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MPCSocket.h -------------------------------------------------------------------------------- /src/DSUtil/MediaDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MediaDescription.cpp -------------------------------------------------------------------------------- /src/DSUtil/MediaDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MediaDescription.h -------------------------------------------------------------------------------- /src/DSUtil/MediaTypeEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MediaTypeEx.cpp -------------------------------------------------------------------------------- /src/DSUtil/MediaTypeEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/MediaTypeEx.h -------------------------------------------------------------------------------- /src/DSUtil/Mpeg2Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Mpeg2Def.h -------------------------------------------------------------------------------- /src/DSUtil/NullRenderers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/NullRenderers.cpp -------------------------------------------------------------------------------- /src/DSUtil/NullRenderers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/NullRenderers.h -------------------------------------------------------------------------------- /src/DSUtil/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Packet.cpp -------------------------------------------------------------------------------- /src/DSUtil/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Packet.h -------------------------------------------------------------------------------- /src/DSUtil/ResampleRGB32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ResampleRGB32.cpp -------------------------------------------------------------------------------- /src/DSUtil/ResampleRGB32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ResampleRGB32.h -------------------------------------------------------------------------------- /src/DSUtil/SharedInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/SharedInclude.h -------------------------------------------------------------------------------- /src/DSUtil/SimpleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/SimpleBuffer.h -------------------------------------------------------------------------------- /src/DSUtil/SysVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/SysVersion.h -------------------------------------------------------------------------------- /src/DSUtil/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Utils.cpp -------------------------------------------------------------------------------- /src/DSUtil/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/Utils.h -------------------------------------------------------------------------------- /src/DSUtil/VideoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/VideoParser.cpp -------------------------------------------------------------------------------- /src/DSUtil/VideoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/VideoParser.h -------------------------------------------------------------------------------- /src/DSUtil/WinAPIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/WinAPIUtils.cpp -------------------------------------------------------------------------------- /src/DSUtil/WinAPIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/WinAPIUtils.h -------------------------------------------------------------------------------- /src/DSUtil/deinterlace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/deinterlace.cpp -------------------------------------------------------------------------------- /src/DSUtil/ff_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/ff_log.h -------------------------------------------------------------------------------- /src/DSUtil/std_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/std_helper.h -------------------------------------------------------------------------------- /src/DSUtil/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/stdafx.cpp -------------------------------------------------------------------------------- /src/DSUtil/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/stdafx.h -------------------------------------------------------------------------------- /src/DSUtil/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/text.cpp -------------------------------------------------------------------------------- /src/DSUtil/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/text.h -------------------------------------------------------------------------------- /src/DSUtil/vd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/vd.cpp -------------------------------------------------------------------------------- /src/DSUtil/vd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/vd.h -------------------------------------------------------------------------------- /src/DSUtil/vd_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/vd_asm.cpp -------------------------------------------------------------------------------- /src/DSUtil/vd_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/DSUtil/vd_asm.h -------------------------------------------------------------------------------- /src/ExtLib/AsyncReader/asyncio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/AsyncReader/asyncio.h -------------------------------------------------------------------------------- /src/ExtLib/AsyncReader/asyncrdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/AsyncReader/asyncrdr.h -------------------------------------------------------------------------------- /src/ExtLib/AsyncReader/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/AsyncReader/stdafx.cpp -------------------------------------------------------------------------------- /src/ExtLib/AsyncReader/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/AsyncReader/stdafx.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/amextra.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/amfilter.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/cache.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/checkbmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/checkbmi.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/combase.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/cprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/cprop.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/cprop.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/ctlutil.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/ddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/ddmm.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/ddmm.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/dllsetup.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/dxmperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/dxmperf.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/fourcc.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/measure.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/msgthrd.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/mtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/mtype.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/mtype.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/outputq.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/perflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/perflog.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/pstream.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/pullpin.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/refclock.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/reftime.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/renbase.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/schedule.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/seekpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/seekpt.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/seekpt.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/source.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/source.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // precompiled headers support 2 | 3 | #include "streams.h" 4 | -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/streams.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/strmctl.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/sysclock.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/transfrm.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/transip.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/videoctl.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/vtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/vtrans.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/vtrans.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/winctrl.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/winutil.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/wxdebug.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/wxlist.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/wxlist.h -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/wxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/wxutil.cpp -------------------------------------------------------------------------------- /src/ExtLib/BaseClasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/BaseClasses/wxutil.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Bento4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Bento4.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Array.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Atom.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Debug.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4File.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4List.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Movie.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Track.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Types.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/Core/Ap4Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/Core/Ap4Utils.h -------------------------------------------------------------------------------- /src/ExtLib/Bento4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/LICENSE.txt -------------------------------------------------------------------------------- /src/ExtLib/Bento4/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/Bento4/precomp.cpp -------------------------------------------------------------------------------- /src/ExtLib/MediaInfo/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/MediaInfo/License.html -------------------------------------------------------------------------------- /src/ExtLib/MediaInfo/MediaInfo/Export/Export_reVTMD.h: -------------------------------------------------------------------------------- 1 | // reVTMD is disabled due to its non-compatible licensing. 2 | -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/License.txt -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Conf.cpp -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Conf.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Dir.cpp -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Dir.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/File.cpp -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/File.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Thread.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Trace.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Utils.h -------------------------------------------------------------------------------- /src/ExtLib/ZenLib/ZenLib/Ztring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ZenLib/ZenLib/Ztring.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/COPYING.GPLv3 -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/MAINTAINERS -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/config.asm -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/config.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/config.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/ffmpeg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/ffmpeg.bat -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/ffmpeg.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/ffmpeg.mak -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/ffmpeg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/ffmpeg.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavcodec/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavcodec/dv.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavcodec/dv.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavcodec/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavcodec/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavcodec/rl.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavcodec/rl.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/cpu.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/cpu.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/crc.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/crc.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lfg.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lfg.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lls.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lls.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/log.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/log.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lzo.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/lzo.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/md5.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/md5.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/mem.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/mem.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/opt.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/opt.h -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/sha.c -------------------------------------------------------------------------------- /src/ExtLib/ffmpeg/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ffmpeg/libavutil/sha.h -------------------------------------------------------------------------------- /src/ExtLib/lcms2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/AUTHORS -------------------------------------------------------------------------------- /src/ExtLib/lcms2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/COPYING -------------------------------------------------------------------------------- /src/ExtLib/lcms2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/ChangeLog -------------------------------------------------------------------------------- /src/ExtLib/lcms2/include/lcms2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/include/lcms2.h -------------------------------------------------------------------------------- /src/ExtLib/lcms2/lcms2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/lcms2.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/lcms2/precomp.c: -------------------------------------------------------------------------------- 1 | // precompiled headers support 2 | 3 | #include "lcms2_internal.h" 4 | -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsalpha.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmscam02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmscam02.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmscgats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmscgats.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmscnvrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmscnvrt.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmserr.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsgamma.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsgmt.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmshalf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmshalf.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsintrp.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsio0.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsio1.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmslut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmslut.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsmd5.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsmtrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsmtrx.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsnamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsnamed.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsopt.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmspack.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmspcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmspcs.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsplugin.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsps2.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmssamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmssamp.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmssm.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmstypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmstypes.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsvirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsvirt.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmswtpnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmswtpnt.c -------------------------------------------------------------------------------- /src/ExtLib/lcms2/src/cmsxform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/lcms2/src/cmsxform.c -------------------------------------------------------------------------------- /src/ExtLib/libflac/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libflac/AUTHORS -------------------------------------------------------------------------------- /src/ExtLib/libflac/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libflac/COPYING.GPL -------------------------------------------------------------------------------- /src/ExtLib/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/ANNOUNCE -------------------------------------------------------------------------------- /src/ExtLib/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/CHANGES -------------------------------------------------------------------------------- /src/ExtLib/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/LICENSE -------------------------------------------------------------------------------- /src/ExtLib/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/README -------------------------------------------------------------------------------- /src/ExtLib/libpng/intel_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/intel_init.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/libpng.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/libpng.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/png.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/png.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngconf.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngdebug.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngerror.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngget.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pnginfo.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pnglibconf.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngmem.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngpread.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngpriv.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngread.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngrio.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngrtran.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngrutil.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngset.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngstruct.h -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngtrans.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngwio.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngwrite.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngwtran.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/libpng/pngwutil.c -------------------------------------------------------------------------------- /src/ExtLib/libpng/precomp.c: -------------------------------------------------------------------------------- 1 | // precompiled headers support 2 | 3 | #include "pngpriv.h" 4 | -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/AUTHORS -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/LICENSE -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/bio.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/bio.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/cio.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/cio.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/dwt.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/dwt.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/event.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/event.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/image.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/image.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/invert.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/invert.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/j2k.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/j2k.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/jp2.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/jp2.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/mct.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/mct.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/mqc.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/mqc.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/mqc_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/mqc_inl.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/openjpeg.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/openjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/openjpeg.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_clock.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_clock.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_codec.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_common.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_config.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_intmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_intmath.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_malloc.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_malloc.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/opj_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/opj_stdint.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/pi.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/pi.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/t1.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/t1.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/t1_luts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/t1_luts.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/t2.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/t2.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/tcd.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/tcd.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/tgt.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/tgt.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/thread.c -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/thread.h -------------------------------------------------------------------------------- /src/ExtLib/openjpeg/tls_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/openjpeg/tls_keys.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/AUTHORS: -------------------------------------------------------------------------------- 1 | Rob Sykes 2 | -------------------------------------------------------------------------------- /src/ExtLib/soxr/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/COPYING.LGPL -------------------------------------------------------------------------------- /src/ExtLib/soxr/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/LICENCE -------------------------------------------------------------------------------- /src/ExtLib/soxr/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/NEWS -------------------------------------------------------------------------------- /src/ExtLib/soxr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/README -------------------------------------------------------------------------------- /src/ExtLib/soxr/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/aliases.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/avfft32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/avfft32.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/avfft32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/avfft32s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/ccrw2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/ccrw2.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr-core.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr32.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr32s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr64.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/cr64s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/cr64s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/data-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/data-io.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/data-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/data-io.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/dbesi0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/dbesi0.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/dev32s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/dev32s.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/dev64s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/dev64s.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g32.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g32s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g64.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/fft4g_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fft4g_cache.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/fifo.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/filter.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/filter.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/half-coefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/half-coefs.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/half-fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/half-fir.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/internal.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/math-wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/math-wrap.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft-avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft-avx.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft-wrap.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft32.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft32s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/pffft64s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/pffft64s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/poly-fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/poly-fir.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/poly-fir0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/poly-fir0.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/rdft.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/rdft_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/rdft_t.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/rint-clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/rint-clip.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/rint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/rint.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/samplerate.h: -------------------------------------------------------------------------------- 1 | #include "soxr-lsr.h" 2 | -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr-config.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr-lsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr-lsr.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr-lsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr-lsr.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/soxr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/soxr.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/soxr/std-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/std-types.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/util-simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/util-simd.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/util32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/util32s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/util32s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/util32s.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/util64s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/util64s.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/util64s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/util64s.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/vr-coefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/vr-coefs.c -------------------------------------------------------------------------------- /src/ExtLib/soxr/vr-coefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/vr-coefs.h -------------------------------------------------------------------------------- /src/ExtLib/soxr/vr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/soxr/vr32.c -------------------------------------------------------------------------------- /src/ExtLib/speex/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/AUTHORS -------------------------------------------------------------------------------- /src/ExtLib/speex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/COPYING -------------------------------------------------------------------------------- /src/ExtLib/speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/speex.h -------------------------------------------------------------------------------- /src/ExtLib/speex/speex_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/speex_bits.h -------------------------------------------------------------------------------- /src/ExtLib/speex/speex_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/speex_header.h -------------------------------------------------------------------------------- /src/ExtLib/speex/speex_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/speex_stereo.h -------------------------------------------------------------------------------- /src/ExtLib/speex/speex_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/speex/speex_types.h -------------------------------------------------------------------------------- /src/ExtLib/ui/CmdUI/CmdUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/CmdUI/CmdUI.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/CmdUI/CmdUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/CmdUI/CmdUI.h -------------------------------------------------------------------------------- /src/ExtLib/ui/CmdUI/CmdUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/CmdUI/CmdUI.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/ui/CmdUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/CmdUI/stdafx.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/CmdUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/CmdUI/stdafx.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDBase.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDBase.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDBitmap.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDBitmap.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDGfxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDGfxBase.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDGfxColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDGfxColor.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDGfxMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDGfxMono.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDIcon.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDIcon.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDOutput.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDOutput.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDPage.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDPage.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDPopup.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDPopup.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDText.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDText.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDUI.h -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/LCDUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/LCDUI.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/ui/LCDUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/LCDUI/stdafx.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/scbarcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/scbarcf.h -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/scbarg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/scbarg.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/scbarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/scbarg.h -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/sizecbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/sizecbar.h -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/stdafx.cpp -------------------------------------------------------------------------------- /src/ExtLib/ui/sizecbar/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/ui/sizecbar/stdafx.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/ChangeLog -------------------------------------------------------------------------------- /src/ExtLib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/README -------------------------------------------------------------------------------- /src/ExtLib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/adler32.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/compress.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/crc32.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/crc32.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/deflate.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/deflate.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/gzclose.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/gzguts.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/gzlib.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/gzread.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/infback.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inffast.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inffast.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inffixed.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inflate.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inflate.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inftrees.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/inftrees.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/trees.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/trees.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/uncompr.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/zconf.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/zlib.h -------------------------------------------------------------------------------- /src/ExtLib/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /src/ExtLib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/zutil.c -------------------------------------------------------------------------------- /src/ExtLib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/ExtLib/zlib/zutil.h -------------------------------------------------------------------------------- /src/Shaders/OnePassResizers/resizer_bicubic06.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.6 2 | 3 | #include "resizer_bicubic_base.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/OnePassResizers/resizer_bicubic08.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.8 2 | 3 | #include "resizer_bicubic_base.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/OnePassResizers/resizer_bicubic10.hlsl: -------------------------------------------------------------------------------- 1 | #define A -1.0 2 | 3 | #include "resizer_bicubic_base.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic06_x.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.6 2 | 3 | #include "resizer_bicubic_base_x.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic06_y.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.6 2 | 3 | #include "resizer_bicubic_base_y.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic08_x.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.8 2 | 3 | #include "resizer_bicubic_base_x.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic08_y.hlsl: -------------------------------------------------------------------------------- 1 | #define A -0.8 2 | 3 | #include "resizer_bicubic_base_y.hlsl" 4 | -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic10_x.hlsl: -------------------------------------------------------------------------------- 1 | #define A -1.0 2 | 3 | #include "resizer_bicubic_base_x.hlsl" -------------------------------------------------------------------------------- /src/Shaders/Resizers/resizer_bicubic10_y.hlsl: -------------------------------------------------------------------------------- 1 | #define A -1.0 2 | 3 | #include "resizer_bicubic_base_y.hlsl" -------------------------------------------------------------------------------- /src/Shaders/Shaders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Shaders/Shaders.vcxproj -------------------------------------------------------------------------------- /src/Shaders/compile_shaders.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Shaders/compile_shaders.cmd -------------------------------------------------------------------------------- /src/Shaders/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Shaders/readme.txt -------------------------------------------------------------------------------- /src/SubPic/CoordGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/CoordGeom.cpp -------------------------------------------------------------------------------- /src/SubPic/CoordGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/CoordGeom.h -------------------------------------------------------------------------------- /src/SubPic/DX9SubPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/DX9SubPic.cpp -------------------------------------------------------------------------------- /src/SubPic/DX9SubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/DX9SubPic.h -------------------------------------------------------------------------------- /src/SubPic/ISubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/ISubPic.h -------------------------------------------------------------------------------- /src/SubPic/ISubRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/ISubRender.h -------------------------------------------------------------------------------- /src/SubPic/MemSubPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/MemSubPic.cpp -------------------------------------------------------------------------------- /src/SubPic/MemSubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/MemSubPic.h -------------------------------------------------------------------------------- /src/SubPic/SubPic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPic.vcxproj -------------------------------------------------------------------------------- /src/SubPic/SubPic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPic.vcxproj.filters -------------------------------------------------------------------------------- /src/SubPic/SubPicImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicImpl.cpp -------------------------------------------------------------------------------- /src/SubPic/SubPicImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicImpl.h -------------------------------------------------------------------------------- /src/SubPic/SubPicProviderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicProviderImpl.cpp -------------------------------------------------------------------------------- /src/SubPic/SubPicProviderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicProviderImpl.h -------------------------------------------------------------------------------- /src/SubPic/SubPicQueueImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicQueueImpl.cpp -------------------------------------------------------------------------------- /src/SubPic/SubPicQueueImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/SubPicQueueImpl.h -------------------------------------------------------------------------------- /src/SubPic/XySubPicProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/XySubPicProvider.cpp -------------------------------------------------------------------------------- /src/SubPic/XySubPicProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/XySubPicProvider.h -------------------------------------------------------------------------------- /src/SubPic/XySubPicQueueImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/XySubPicQueueImpl.cpp -------------------------------------------------------------------------------- /src/SubPic/XySubPicQueueImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/XySubPicQueueImpl.h -------------------------------------------------------------------------------- /src/SubPic/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/stdafx.cpp -------------------------------------------------------------------------------- /src/SubPic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/SubPic/stdafx.h -------------------------------------------------------------------------------- /src/Subtitles/BaseSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/BaseSub.cpp -------------------------------------------------------------------------------- /src/Subtitles/BaseSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/BaseSub.h -------------------------------------------------------------------------------- /src/Subtitles/CCDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/CCDecoder.cpp -------------------------------------------------------------------------------- /src/Subtitles/CCDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/CCDecoder.h -------------------------------------------------------------------------------- /src/Subtitles/ColorConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/ColorConvert.cpp -------------------------------------------------------------------------------- /src/Subtitles/ColorConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/ColorConvert.h -------------------------------------------------------------------------------- /src/Subtitles/CompositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/CompositionObject.h -------------------------------------------------------------------------------- /src/Subtitles/DVBSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/DVBSub.cpp -------------------------------------------------------------------------------- /src/Subtitles/DVBSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/DVBSub.h -------------------------------------------------------------------------------- /src/Subtitles/Ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/Ellipse.cpp -------------------------------------------------------------------------------- /src/Subtitles/Ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/Ellipse.h -------------------------------------------------------------------------------- /src/Subtitles/HdmvSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/HdmvSub.cpp -------------------------------------------------------------------------------- /src/Subtitles/HdmvSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/HdmvSub.h -------------------------------------------------------------------------------- /src/Subtitles/RTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RTS.cpp -------------------------------------------------------------------------------- /src/Subtitles/RTS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RTS.h -------------------------------------------------------------------------------- /src/Subtitles/Rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/Rasterizer.cpp -------------------------------------------------------------------------------- /src/Subtitles/Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/Rasterizer.h -------------------------------------------------------------------------------- /src/Subtitles/RealTextParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RealTextParser.cpp -------------------------------------------------------------------------------- /src/Subtitles/RealTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RealTextParser.h -------------------------------------------------------------------------------- /src/Subtitles/RenderingCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RenderingCache.cpp -------------------------------------------------------------------------------- /src/Subtitles/RenderingCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/RenderingCache.h -------------------------------------------------------------------------------- /src/Subtitles/STS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/STS.cpp -------------------------------------------------------------------------------- /src/Subtitles/STS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/STS.h -------------------------------------------------------------------------------- /src/Subtitles/SeparableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SeparableFilter.h -------------------------------------------------------------------------------- /src/Subtitles/SubtitleHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SubtitleHelpers.cpp -------------------------------------------------------------------------------- /src/Subtitles/SubtitleHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SubtitleHelpers.h -------------------------------------------------------------------------------- /src/Subtitles/SubtitleInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SubtitleInputPin.h -------------------------------------------------------------------------------- /src/Subtitles/Subtitles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/Subtitles.vcxproj -------------------------------------------------------------------------------- /src/Subtitles/SupSubFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SupSubFile.cpp -------------------------------------------------------------------------------- /src/Subtitles/SupSubFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/SupSubFile.h -------------------------------------------------------------------------------- /src/Subtitles/TextFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/TextFile.cpp -------------------------------------------------------------------------------- /src/Subtitles/TextFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/TextFile.h -------------------------------------------------------------------------------- /src/Subtitles/USFSubtitles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/USFSubtitles.cpp -------------------------------------------------------------------------------- /src/Subtitles/USFSubtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/USFSubtitles.h -------------------------------------------------------------------------------- /src/Subtitles/VobSubFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/VobSubFile.cpp -------------------------------------------------------------------------------- /src/Subtitles/VobSubFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/VobSubFile.h -------------------------------------------------------------------------------- /src/Subtitles/VobSubFileRipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/VobSubFileRipper.h -------------------------------------------------------------------------------- /src/Subtitles/VobSubImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/VobSubImage.cpp -------------------------------------------------------------------------------- /src/Subtitles/VobSubImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/VobSubImage.h -------------------------------------------------------------------------------- /src/Subtitles/XSUBSubtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/XSUBSubtitle.cpp -------------------------------------------------------------------------------- /src/Subtitles/XSUBSubtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/XSUBSubtitle.h -------------------------------------------------------------------------------- /src/Subtitles/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/stdafx.cpp -------------------------------------------------------------------------------- /src/Subtitles/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/stdafx.h -------------------------------------------------------------------------------- /src/Subtitles/unrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/Subtitles/unrar.h -------------------------------------------------------------------------------- /src/YASM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/YASM.bat -------------------------------------------------------------------------------- /src/YASM.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/YASM.props -------------------------------------------------------------------------------- /src/YASM.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/YASM.targets -------------------------------------------------------------------------------- /src/YASM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/YASM.xml -------------------------------------------------------------------------------- /src/apps/MPCBEShellExt/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCBEShellExt/dllmain.h -------------------------------------------------------------------------------- /src/apps/MPCBEShellExt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCBEShellExt/resource.h -------------------------------------------------------------------------------- /src/apps/MPCBEShellExt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCBEShellExt/stdafx.cpp -------------------------------------------------------------------------------- /src/apps/MPCBEShellExt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCBEShellExt/stdafx.h -------------------------------------------------------------------------------- /src/apps/MPCTestAPI/MPCTestAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCTestAPI/MPCTestAPI.h -------------------------------------------------------------------------------- /src/apps/MPCTestAPI/MPCTestAPI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCTestAPI/MPCTestAPI.rc -------------------------------------------------------------------------------- /src/apps/MPCTestAPI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCTestAPI/resource.h -------------------------------------------------------------------------------- /src/apps/MPCTestAPI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCTestAPI/stdafx.cpp -------------------------------------------------------------------------------- /src/apps/MPCTestAPI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/MPCTestAPI/stdafx.h -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/3g2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/3g2.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/3gp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/3gp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/aac.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/aac.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ac3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ac3.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/aif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/aif.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/amr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/amr.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/amv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/amv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/aob.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/aob.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ape.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ape.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/apl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/apl.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/asf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/asf.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/au.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/au.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/avi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/avi.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/bik.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/bik.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/cda.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/cda.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/d2v.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/d2v.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dat.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dsa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dsa.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dsm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dsm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dss.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dss.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dsv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dsv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/dts.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/dts.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/evo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/evo.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/f4v.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/f4v.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/flc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/flc.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/fli.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/fli.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/flv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/flv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ifo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ifo.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ivf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ivf.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m1a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m1a.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m1v.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m1v.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m2a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m2a.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m2p.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m2p.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m2t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m2t.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m2v.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m2v.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m4a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m4a.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m4b.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m4b.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/m4v.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/m4v.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mid.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mka.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mka.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mkv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mkv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mlp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mlp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mov.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mov.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mp2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mp2.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mp3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mp3.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mp4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mp4.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mpa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mpa.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mpc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mpc.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mpe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mpe.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mpg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mpg.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/mts.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/mts.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ofr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ofr.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ofs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ofs.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/oga.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/oga.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ogg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ogg.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ogm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ogm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ogv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ogv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/pva.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/pva.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ra.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ra.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ram.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ram.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rec.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rec.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rmi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rmi.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rmm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rmm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/roq.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/roq.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rpm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rpm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/rt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/rt.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/smi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/smi.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/smk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/smk.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/snd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/snd.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/swf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/swf.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/tak.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/tak.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/tp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/tp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/trp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/trp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/ts.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/ts.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/tta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/tta.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/vob.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/vob.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wav.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wm.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wma.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wma.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wmp.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wmv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wmv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/icons/wv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/icons/wv.ico -------------------------------------------------------------------------------- /src/apps/mpciconlib/mpciconlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/mpciconlib.rc -------------------------------------------------------------------------------- /src/apps/mpciconlib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpciconlib/resource.h -------------------------------------------------------------------------------- /src/apps/mpcresources/common.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/common.pl -------------------------------------------------------------------------------- /src/apps/mpcresources/patch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/patch.bat -------------------------------------------------------------------------------- /src/apps/mpcresources/patch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/patch.pl -------------------------------------------------------------------------------- /src/apps/mpcresources/rcfile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/rcfile.bat -------------------------------------------------------------------------------- /src/apps/mpcresources/rcfile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/rcfile.pl -------------------------------------------------------------------------------- /src/apps/mpcresources/sync.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mpcresources/sync.bat -------------------------------------------------------------------------------- /src/apps/mplayerc/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AboutDlg.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AboutDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AppSettings.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AppSettings.h -------------------------------------------------------------------------------- /src/apps/mplayerc/AuthDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AuthDlg.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/AuthDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/AuthDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/BaseGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/BaseGraph.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/BaseGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/BaseGraph.h -------------------------------------------------------------------------------- /src/apps/mplayerc/ColorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/ColorControl.h -------------------------------------------------------------------------------- /src/apps/mplayerc/Content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Content.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/Content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Content.h -------------------------------------------------------------------------------- /src/apps/mplayerc/DIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/DIB.h -------------------------------------------------------------------------------- /src/apps/mplayerc/DVBChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/DVBChannel.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/DVBChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/DVBChannel.h -------------------------------------------------------------------------------- /src/apps/mplayerc/DiskImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/DiskImage.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/DiskImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/DiskImage.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FGFilter.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/FGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FGFilter.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FGManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FGManager.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/FGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FGManager.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FGManagerBDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FGManagerBDA.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FilterEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FilterEnum.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FloatEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FloatEdit.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/FloatEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FloatEdit.h -------------------------------------------------------------------------------- /src/apps/mplayerc/FullscreenWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/FullscreenWnd.h -------------------------------------------------------------------------------- /src/apps/mplayerc/GoToDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/GoToDlg.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/GoToDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/GoToDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/ISDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/ISDb.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/ISDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/ISDb.h -------------------------------------------------------------------------------- /src/apps/mplayerc/Ifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Ifo.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/Ifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Ifo.h -------------------------------------------------------------------------------- /src/apps/mplayerc/KeyProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/KeyProvider.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/KeyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/KeyProvider.h -------------------------------------------------------------------------------- /src/apps/mplayerc/LcdSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/LcdSupport.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/LcdSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/LcdSupport.h -------------------------------------------------------------------------------- /src/apps/mplayerc/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MainFrm.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MainFrm.h -------------------------------------------------------------------------------- /src/apps/mplayerc/MediaFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MediaFormats.h -------------------------------------------------------------------------------- /src/apps/mplayerc/MediaTypesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MediaTypesDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/MiniDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MiniDump.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/MiniDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MiniDump.h -------------------------------------------------------------------------------- /src/apps/mplayerc/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Misc.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/Misc.h -------------------------------------------------------------------------------- /src/apps/mplayerc/MultiMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/MultiMonitor.h -------------------------------------------------------------------------------- /src/apps/mplayerc/OSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/OSD.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/OSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/OSD.h -------------------------------------------------------------------------------- /src/apps/mplayerc/OpenDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/OpenDlg.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/OpenDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/OpenDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/OpenImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/OpenImage.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageAccelTbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageAccelTbl.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageAudio.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageAudio.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageBase.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageBase.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageCapture.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageColor.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageColor.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageDVD.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageDVD.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageFormats.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageLogo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageLogo.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageLogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageLogo.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageMisc.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageMisc.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPagePlayback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPagePlayback.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPagePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPagePlayer.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPagePlayer.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSheet.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSheet.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSubRend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSubRend.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSubStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSubStyle.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSync.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageSync.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageVideo.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageVideo.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PPageYouTube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PPageYouTube.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerBar.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerBar.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerFlyBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerFlyBar.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerInfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerInfoBar.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerPreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerPreView.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerSeekBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerSeekBar.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerToolBar.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PlayerYouTube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PlayerYouTube.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PnSPresetsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PnSPresetsDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/PngImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PngImage.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/PngImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/PngImage.h -------------------------------------------------------------------------------- /src/apps/mplayerc/RateControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/RateControl.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/RateControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/RateControl.h -------------------------------------------------------------------------------- /src/apps/mplayerc/SaveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/SaveDlg.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/SaveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/SaveDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/ShaderNewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/ShaderNewDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/StaticLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/StaticLink.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/StaticLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/StaticLink.h -------------------------------------------------------------------------------- /src/apps/mplayerc/StatusLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/StatusLabel.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/StatusLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/StatusLabel.h -------------------------------------------------------------------------------- /src/apps/mplayerc/SubtitleDlDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/SubtitleDlDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/ThumbsTaskDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/ThumbsTaskDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/TunerScanDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/TunerScanDlg.h -------------------------------------------------------------------------------- /src/apps/mplayerc/UpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/UpdateChecker.h -------------------------------------------------------------------------------- /src/apps/mplayerc/WebClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/WebClient.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/WebClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/WebClient.h -------------------------------------------------------------------------------- /src/apps/mplayerc/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/WebServer.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/WebServer.h -------------------------------------------------------------------------------- /src/apps/mplayerc/WinHotkeyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/WinHotkeyCtrl.h -------------------------------------------------------------------------------- /src/apps/mplayerc/mpc-be.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/mpc-be.vcxproj -------------------------------------------------------------------------------- /src/apps/mplayerc/mpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/mpcapi.h -------------------------------------------------------------------------------- /src/apps/mplayerc/mplayerc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/mplayerc.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/mplayerc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/mplayerc.h -------------------------------------------------------------------------------- /src/apps/mplayerc/mplayerc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/mplayerc.rc -------------------------------------------------------------------------------- /src/apps/mplayerc/res/Icon_41.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/Icon_41.ico -------------------------------------------------------------------------------- /src/apps/mplayerc/res/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/audio.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/empty.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/empty.hlsl -------------------------------------------------------------------------------- /src/apps/mplayerc/res/flybar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/flybar.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_125.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_150.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_175.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_200.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_225.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_250.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_300.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/gpu_350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/gpu_350.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/icon.ico -------------------------------------------------------------------------------- /src/apps/mplayerc/res/logo.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/logo.0.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/logo.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/logo.1.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/mono.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/mono.bmp -------------------------------------------------------------------------------- /src/apps/mplayerc/res/noaudio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/noaudio.bmp -------------------------------------------------------------------------------- /src/apps/mplayerc/res/stereo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/stereo.bmp -------------------------------------------------------------------------------- /src/apps/mplayerc/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/toolbar.bmp -------------------------------------------------------------------------------- /src/apps/mplayerc/res/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/toolbar.png -------------------------------------------------------------------------------- /src/apps/mplayerc/res/web/vbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/res/web/vbg.png -------------------------------------------------------------------------------- /src/apps/mplayerc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/resource.h -------------------------------------------------------------------------------- /src/apps/mplayerc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/stdafx.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/stdafx.h -------------------------------------------------------------------------------- /src/apps/mplayerc/vkCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/vkCodes.cpp -------------------------------------------------------------------------------- /src/apps/mplayerc/vkCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/apps/mplayerc/vkCodes.h -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/common.props -------------------------------------------------------------------------------- /src/filters/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/Lock.h -------------------------------------------------------------------------------- /src/filters/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/filters.h -------------------------------------------------------------------------------- /src/filters/filters/Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/filters/Filters.cpp -------------------------------------------------------------------------------- /src/filters/filters/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/filters/Filters.h -------------------------------------------------------------------------------- /src/filters/filters/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/filters/stdafx.cpp -------------------------------------------------------------------------------- /src/filters/filters/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/filters/filters/stdafx.h -------------------------------------------------------------------------------- /src/platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/src/platform.props -------------------------------------------------------------------------------- /update_gcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/update_gcc.bat -------------------------------------------------------------------------------- /update_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinChaffin/MPC-BE/HEAD/update_version.bat --------------------------------------------------------------------------------