├── .clang-format ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.txt ├── COPYING ├── LAVFilters.iss ├── LAVFilters.sln ├── README.md ├── common ├── DSUtilLite │ ├── BaseDSPropPage.cpp │ ├── BaseDSPropPage.h │ ├── BaseTrayIcon.cpp │ ├── BaseTrayIcon.h │ ├── ByteParser.cpp │ ├── ByteParser.h │ ├── CueSheet.cpp │ ├── CueSheet.h │ ├── DSMResourceBag.cpp │ ├── DSMResourceBag.h │ ├── DSUtilLite.vcxproj │ ├── DSUtilLite.vcxproj.filters │ ├── DShowUtil.cpp │ ├── DShowUtil.h │ ├── DeCSS │ │ ├── CSSauth.cpp │ │ ├── CSSauth.h │ │ ├── CSSscramble.cpp │ │ ├── CSSscramble.h │ │ ├── DeCSSInputPin.cpp │ │ └── DeCSSInputPin.h │ ├── FloatingAverage.h │ ├── FontInstaller.cpp │ ├── FontInstaller.h │ ├── H264Nalu.cpp │ ├── H264Nalu.h │ ├── MediaSampleSideData.cpp │ ├── MediaSampleSideData.h │ ├── PopupMenu.cpp │ ├── PopupMenu.h │ ├── SynchronizedQueue.h │ ├── filterreg.cpp │ ├── gpu_memcpy_sse4.h │ ├── growarray.h │ ├── lavf_log.h │ ├── locale.cpp │ ├── rand_sse.h │ ├── registry.cpp │ ├── registry.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── timer.h ├── baseclasses │ ├── amextra.cpp │ ├── amextra.h │ ├── amfilter.cpp │ ├── amfilter.h │ ├── amvideo.cpp │ ├── arithutil.cpp │ ├── baseclasses.vcxproj │ ├── baseclasses.vcxproj.filters │ ├── 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 │ ├── 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 ├── common.props ├── genversion.bat ├── includes │ ├── ILAVPinInfo.h │ ├── IMediaSideDataFFmpeg.h │ ├── LAVSplitterSettingsInternal.h │ ├── SubRenderIntf.h │ ├── common_defines.h │ ├── moreuuids.h │ └── version.h ├── platform.props └── version.sh ├── decoder ├── LAVAudio │ ├── AudioSettingsProp.cpp │ ├── AudioSettingsProp.h │ ├── Bitstream.cpp │ ├── BitstreamMAT.cpp │ ├── BitstreamParser.cpp │ ├── BitstreamParser.h │ ├── LAVAudio.cpp │ ├── LAVAudio.def │ ├── LAVAudio.h │ ├── LAVAudio.manifest │ ├── LAVAudio.rc │ ├── LAVAudio.rc2 │ ├── LAVAudio.vcxproj │ ├── LAVAudio.vcxproj.filters │ ├── Media.cpp │ ├── Media.h │ ├── PostProcessor.cpp │ ├── PostProcessor.h │ ├── dllmain.cpp │ ├── parser │ │ ├── dts.cpp │ │ ├── dts.h │ │ └── parser.h │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h └── LAVVideo │ ├── CCOutputPin.cpp │ ├── CCOutputPin.h │ ├── DecodeManager.cpp │ ├── DecodeManager.h │ ├── Filtering.cpp │ ├── LAVPixFmtConverter.cpp │ ├── LAVPixFmtConverter.h │ ├── LAVVideo.cpp │ ├── LAVVideo.def │ ├── LAVVideo.h │ ├── LAVVideo.manifest │ ├── LAVVideo.rc │ ├── LAVVideo.rc2 │ ├── LAVVideo.vcxproj │ ├── LAVVideo.vcxproj.filters │ ├── Media.cpp │ ├── Media.h │ ├── VideoInputPin.cpp │ ├── VideoInputPin.h │ ├── VideoOutputPin.cpp │ ├── VideoOutputPin.h │ ├── VideoSettingsProp.cpp │ ├── VideoSettingsProp.h │ ├── decoders │ ├── DecBase.h │ ├── ILAVDecoder.h │ ├── avcodec.cpp │ ├── avcodec.h │ ├── cuvid.cpp │ ├── cuvid.h │ ├── cuvid │ │ ├── dynlink_cuda.h │ │ ├── dynlink_cuda_cuda.h │ │ ├── dynlink_cuda_d3d.h │ │ ├── dynlink_cuviddec.h │ │ └── dynlink_nvcuvid.h │ ├── d3d11 │ │ ├── D3D11SurfaceAllocator.cpp │ │ └── D3D11SurfaceAllocator.h │ ├── d3d11va.cpp │ ├── d3d11va.h │ ├── dxva2 │ │ ├── DXVA2SurfaceAllocator.cpp │ │ ├── DXVA2SurfaceAllocator.h │ │ ├── dxva_common.cpp │ │ └── dxva_common.h │ ├── dxva2dec.cpp │ ├── dxva2dec.h │ ├── msdk_mvc.cpp │ ├── msdk_mvc.h │ ├── mvc │ │ ├── include │ │ │ ├── mfxcommon.h │ │ │ ├── mfxdefs.h │ │ │ ├── mfxmvc.h │ │ │ ├── mfxsession.h │ │ │ ├── mfxstructures.h │ │ │ ├── mfxvideo.h │ │ │ └── mfxvstructures.h │ │ ├── lib32 │ │ │ └── libmfx.lib │ │ └── lib64 │ │ │ └── libmfx.lib │ ├── pixfmt.cpp │ ├── quicksync.cpp │ ├── quicksync.h │ ├── wmv9mft.cpp │ └── wmv9mft.h │ ├── dllmain.cpp │ ├── parsers │ ├── AnnexBConverter.cpp │ ├── AnnexBConverter.h │ ├── H264SequenceParser.cpp │ ├── H264SequenceParser.h │ ├── HEVCSequenceParser.cpp │ ├── HEVCSequenceParser.h │ ├── MPEG2HeaderParser.cpp │ ├── MPEG2HeaderParser.h │ ├── VC1HeaderParser.cpp │ └── VC1HeaderParser.h │ ├── pixconv │ ├── convert_direct.cpp │ ├── convert_generic.cpp │ ├── interleave.cpp │ ├── pixconv.cpp │ ├── pixconv_internal.h │ ├── pixconv_sse2_templates.h │ ├── rgb2rgb_unscaled.cpp │ ├── yuv2rgb.cpp │ ├── yuv2yuv_unscaled.cpp │ ├── yuv420_yuy2.cpp │ └── yuv444_ayuv.cpp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── subtitles │ ├── LAVSubtitleConsumer.cpp │ ├── LAVSubtitleConsumer.h │ ├── LAVSubtitleFrame.cpp │ ├── LAVSubtitleFrame.h │ ├── LAVSubtitleProvider.cpp │ ├── LAVSubtitleProvider.h │ ├── LAVVideoSubtitleInputPin.cpp │ ├── LAVVideoSubtitleInputPin.h │ ├── SubRenderOptionsImpl.cpp │ ├── SubRenderOptionsImpl.h │ └── blend │ └── blend_generic.cpp ├── demuxer ├── Demuxers │ ├── BDDemuxer.cpp │ ├── BDDemuxer.h │ ├── BaseDemuxer.cpp │ ├── BaseDemuxer.h │ ├── Demuxers.vcxproj │ ├── Demuxers.vcxproj.filters │ ├── ExtradataParser.cpp │ ├── ExtradataParser.h │ ├── LAVFAudioHelper.cpp │ ├── LAVFAudioHelper.h │ ├── LAVFDemuxer.cpp │ ├── LAVFDemuxer.h │ ├── LAVFInputFormats.cpp │ ├── LAVFStreamInfo.cpp │ ├── LAVFStreamInfo.h │ ├── LAVFUtils.cpp │ ├── LAVFUtils.h │ ├── LAVFVideoHelper.cpp │ ├── LAVFVideoHelper.h │ ├── Packet.cpp │ ├── Packet.h │ ├── StreamInfo.cpp │ ├── StreamInfo.h │ ├── stdafx.cpp │ └── stdafx.h └── LAVSplitter │ ├── InputPin.cpp │ ├── InputPin.h │ ├── LAVSplitter.cpp │ ├── LAVSplitter.def │ ├── LAVSplitter.h │ ├── LAVSplitter.manifest │ ├── LAVSplitter.rc │ ├── LAVSplitter.rc2 │ ├── LAVSplitter.vcxproj │ ├── LAVSplitter.vcxproj.filters │ ├── LAVSplitterTrayIcon.cpp │ ├── LAVSplitterTrayIcon.h │ ├── OutputPin.cpp │ ├── OutputPin.h │ ├── PacketAllocator.cpp │ ├── PacketAllocator.h │ ├── PacketQueue.cpp │ ├── PacketQueue.h │ ├── SettingsProp.cpp │ ├── SettingsProp.h │ ├── StreamParser.cpp │ ├── StreamParser.h │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── include ├── IBitRateInfo.h ├── IBufferInfo.h ├── ID3DVideoMemoryConfiguration.h ├── IDSMResourceBag.h ├── IGraphRebuildDelegate.h ├── IKeyFrameInfo.h ├── ILAVDynamicAllocator.h ├── IMediaSample3D.h ├── IMediaSideData.h ├── IPinSegmentEx.h ├── ISpecifyPropertyPages2.h ├── IStreamSourceControl.h ├── ITrackInfo.h ├── IURLSourceFilterLAV.h ├── LAVAudioSettings.h ├── LAVSplitterSettings.h ├── LAVVideoSettings.h └── README.txt ├── resources ├── LAVFilters.Dependencies.manifest ├── blue.ico ├── red.ico └── white.ico └── thirdparty ├── 32 ├── include │ ├── avisynth │ │ ├── avisynth.h │ │ ├── avisynth_c.h │ │ └── avs │ │ │ ├── alignment.h │ │ │ ├── arch.h │ │ │ ├── capi.h │ │ │ ├── config.h │ │ │ ├── cpuid.h │ │ │ ├── filesystem.h │ │ │ ├── minmax.h │ │ │ ├── posix.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ └── win.h │ ├── dav1d │ │ ├── common.h │ │ ├── data.h │ │ ├── dav1d.h │ │ ├── headers.h │ │ ├── picture.h │ │ └── version.h │ ├── gmp.h │ ├── gnutls │ │ ├── abstract.h │ │ ├── compat.h │ │ ├── crypto.h │ │ ├── dtls.h │ │ ├── gnutls.h │ │ ├── ocsp.h │ │ ├── openpgp.h │ │ ├── pkcs11.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── self-test.h │ │ ├── socket.h │ │ ├── system-keys.h │ │ ├── tpm.h │ │ ├── urls.h │ │ ├── x509-ext.h │ │ └── x509.h │ ├── libxml2 │ │ └── libxml │ │ │ ├── HTMLparser.h │ │ │ ├── HTMLtree.h │ │ │ ├── SAX.h │ │ │ ├── SAX2.h │ │ │ ├── c14n.h │ │ │ ├── catalog.h │ │ │ ├── chvalid.h │ │ │ ├── debugXML.h │ │ │ ├── dict.h │ │ │ ├── encoding.h │ │ │ ├── entities.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── list.h │ │ │ ├── nanoftp.h │ │ │ ├── nanohttp.h │ │ │ ├── parser.h │ │ │ ├── parserInternals.h │ │ │ ├── pattern.h │ │ │ ├── relaxng.h │ │ │ ├── schemasInternals.h │ │ │ ├── schematron.h │ │ │ ├── threads.h │ │ │ ├── tree.h │ │ │ ├── uri.h │ │ │ ├── valid.h │ │ │ ├── xinclude.h │ │ │ ├── xlink.h │ │ │ ├── xmlIO.h │ │ │ ├── xmlautomata.h │ │ │ ├── xmlerror.h │ │ │ ├── xmlexports.h │ │ │ ├── xmlmemory.h │ │ │ ├── xmlmodule.h │ │ │ ├── xmlreader.h │ │ │ ├── xmlregexp.h │ │ │ ├── xmlsave.h │ │ │ ├── xmlschemas.h │ │ │ ├── xmlschemastypes.h │ │ │ ├── xmlstring.h │ │ │ ├── xmlunicode.h │ │ │ ├── xmlversion.h │ │ │ ├── xmlwriter.h │ │ │ ├── xpath.h │ │ │ ├── xpathInternals.h │ │ │ └── xpointer.h │ ├── nettle │ │ ├── aes.h │ │ ├── arcfour.h │ │ ├── arctwo.h │ │ ├── asn1.h │ │ ├── balloon.h │ │ ├── base16.h │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── blowfish.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast128.h │ │ ├── cbc.h │ │ ├── ccm.h │ │ ├── cfb.h │ │ ├── chacha-poly1305.h │ │ ├── chacha.h │ │ ├── cmac.h │ │ ├── ctr.h │ │ ├── curve25519.h │ │ ├── curve448.h │ │ ├── des.h │ │ ├── dsa-compat.h │ │ ├── dsa.h │ │ ├── eax.h │ │ ├── ecc-curve.h │ │ ├── ecc.h │ │ ├── ecdsa.h │ │ ├── eddsa.h │ │ ├── gcm.h │ │ ├── gostdsa.h │ │ ├── gosthash94.h │ │ ├── hkdf.h │ │ ├── hmac.h │ │ ├── knuth-lfib.h │ │ ├── macros.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5-compat.h │ │ ├── md5.h │ │ ├── memops.h │ │ ├── memxor.h │ │ ├── nettle-meta.h │ │ ├── nettle-types.h │ │ ├── nist-keywrap.h │ │ ├── ocb.h │ │ ├── pbkdf2.h │ │ ├── pgp.h │ │ ├── pkcs1.h │ │ ├── poly1305.h │ │ ├── pss-mgf1.h │ │ ├── pss.h │ │ ├── realloc.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── salsa20.h │ │ ├── serpent.h │ │ ├── sexp.h │ │ ├── sha.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── sha3.h │ │ ├── siv-cmac.h │ │ ├── siv-gcm.h │ │ ├── sm3.h │ │ ├── sm4.h │ │ ├── streebog.h │ │ ├── twofish.h │ │ ├── umac.h │ │ ├── version.h │ │ ├── xts.h │ │ └── yarrow.h │ ├── opencore-amrnb │ │ ├── interf_dec.h │ │ └── interf_enc.h │ ├── opencore-amrwb │ │ ├── dec_if.h │ │ └── if_rom.h │ └── speex │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_header.h │ │ ├── speex_stereo.h │ │ └── speex_types.h └── lib │ ├── libdav1d.a │ ├── libgmp.a │ ├── libgnutls.a │ ├── libhogweed.a │ ├── libnettle.a │ ├── libopencore-amrnb.a │ ├── libopencore-amrwb.a │ ├── libspeex.a │ ├── libxml2.a │ └── pkgconfig │ ├── dav1d.pc │ ├── gmp.pc │ ├── gnutls.pc │ ├── hogweed.pc │ ├── libxml-2.0.pc │ ├── nettle.pc │ ├── opencore-amrnb.pc │ ├── opencore-amrwb.pc │ └── speex.pc ├── 64 ├── include │ ├── avisynth │ │ ├── avisynth.h │ │ ├── avisynth_c.h │ │ └── avs │ │ │ ├── alignment.h │ │ │ ├── arch.h │ │ │ ├── capi.h │ │ │ ├── config.h │ │ │ ├── cpuid.h │ │ │ ├── filesystem.h │ │ │ ├── minmax.h │ │ │ ├── posix.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ └── win.h │ ├── dav1d │ │ ├── common.h │ │ ├── data.h │ │ ├── dav1d.h │ │ ├── headers.h │ │ ├── picture.h │ │ └── version.h │ ├── gmp.h │ ├── gnutls │ │ ├── abstract.h │ │ ├── compat.h │ │ ├── crypto.h │ │ ├── dtls.h │ │ ├── gnutls.h │ │ ├── ocsp.h │ │ ├── openpgp.h │ │ ├── pkcs11.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── self-test.h │ │ ├── socket.h │ │ ├── system-keys.h │ │ ├── tpm.h │ │ ├── urls.h │ │ ├── x509-ext.h │ │ └── x509.h │ ├── libxml2 │ │ └── libxml │ │ │ ├── HTMLparser.h │ │ │ ├── HTMLtree.h │ │ │ ├── SAX.h │ │ │ ├── SAX2.h │ │ │ ├── c14n.h │ │ │ ├── catalog.h │ │ │ ├── chvalid.h │ │ │ ├── debugXML.h │ │ │ ├── dict.h │ │ │ ├── encoding.h │ │ │ ├── entities.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── list.h │ │ │ ├── nanoftp.h │ │ │ ├── nanohttp.h │ │ │ ├── parser.h │ │ │ ├── parserInternals.h │ │ │ ├── pattern.h │ │ │ ├── relaxng.h │ │ │ ├── schemasInternals.h │ │ │ ├── schematron.h │ │ │ ├── threads.h │ │ │ ├── tree.h │ │ │ ├── uri.h │ │ │ ├── valid.h │ │ │ ├── xinclude.h │ │ │ ├── xlink.h │ │ │ ├── xmlIO.h │ │ │ ├── xmlautomata.h │ │ │ ├── xmlerror.h │ │ │ ├── xmlexports.h │ │ │ ├── xmlmemory.h │ │ │ ├── xmlmodule.h │ │ │ ├── xmlreader.h │ │ │ ├── xmlregexp.h │ │ │ ├── xmlsave.h │ │ │ ├── xmlschemas.h │ │ │ ├── xmlschemastypes.h │ │ │ ├── xmlstring.h │ │ │ ├── xmlunicode.h │ │ │ ├── xmlversion.h │ │ │ ├── xmlwriter.h │ │ │ ├── xpath.h │ │ │ ├── xpathInternals.h │ │ │ └── xpointer.h │ ├── nettle │ │ ├── aes.h │ │ ├── arcfour.h │ │ ├── arctwo.h │ │ ├── asn1.h │ │ ├── balloon.h │ │ ├── base16.h │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── blowfish.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast128.h │ │ ├── cbc.h │ │ ├── ccm.h │ │ ├── cfb.h │ │ ├── chacha-poly1305.h │ │ ├── chacha.h │ │ ├── cmac.h │ │ ├── ctr.h │ │ ├── curve25519.h │ │ ├── curve448.h │ │ ├── des.h │ │ ├── dsa-compat.h │ │ ├── dsa.h │ │ ├── eax.h │ │ ├── ecc-curve.h │ │ ├── ecc.h │ │ ├── ecdsa.h │ │ ├── eddsa.h │ │ ├── gcm.h │ │ ├── gostdsa.h │ │ ├── gosthash94.h │ │ ├── hkdf.h │ │ ├── hmac.h │ │ ├── knuth-lfib.h │ │ ├── macros.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5-compat.h │ │ ├── md5.h │ │ ├── memops.h │ │ ├── memxor.h │ │ ├── nettle-meta.h │ │ ├── nettle-types.h │ │ ├── nist-keywrap.h │ │ ├── ocb.h │ │ ├── pbkdf2.h │ │ ├── pgp.h │ │ ├── pkcs1.h │ │ ├── poly1305.h │ │ ├── pss-mgf1.h │ │ ├── pss.h │ │ ├── realloc.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── salsa20.h │ │ ├── serpent.h │ │ ├── sexp.h │ │ ├── sha.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── sha3.h │ │ ├── siv-cmac.h │ │ ├── siv-gcm.h │ │ ├── sm3.h │ │ ├── sm4.h │ │ ├── streebog.h │ │ ├── twofish.h │ │ ├── umac.h │ │ ├── version.h │ │ ├── xts.h │ │ └── yarrow.h │ ├── opencore-amrnb │ │ ├── interf_dec.h │ │ └── interf_enc.h │ ├── opencore-amrwb │ │ ├── dec_if.h │ │ └── if_rom.h │ └── speex │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_header.h │ │ ├── speex_stereo.h │ │ └── speex_types.h └── lib │ ├── libdav1d.a │ ├── libgmp.a │ ├── libgnutls.a │ ├── libhogweed.a │ ├── libnettle.a │ ├── libopencore-amrnb.a │ ├── libopencore-amrwb.a │ ├── libspeex.a │ ├── libxml2.a │ └── pkgconfig │ ├── dav1d.pc │ ├── gmp.pc │ ├── gnutls.pc │ ├── hogweed.pc │ ├── libxml-2.0.pc │ ├── nettle.pc │ ├── opencore-amrnb.pc │ ├── opencore-amrwb.pc │ └── speex.pc ├── build instructions.txt ├── contrib ├── 7za.exe └── cv2pdb.exe └── versions.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/COPYING -------------------------------------------------------------------------------- /LAVFilters.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/LAVFilters.iss -------------------------------------------------------------------------------- /LAVFilters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/LAVFilters.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/README.md -------------------------------------------------------------------------------- /common/DSUtilLite/BaseDSPropPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/BaseDSPropPage.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/BaseDSPropPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/BaseDSPropPage.h -------------------------------------------------------------------------------- /common/DSUtilLite/BaseTrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/BaseTrayIcon.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/BaseTrayIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/BaseTrayIcon.h -------------------------------------------------------------------------------- /common/DSUtilLite/ByteParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/ByteParser.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/ByteParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/ByteParser.h -------------------------------------------------------------------------------- /common/DSUtilLite/CueSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/CueSheet.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/CueSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/CueSheet.h -------------------------------------------------------------------------------- /common/DSUtilLite/DSMResourceBag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DSMResourceBag.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/DSMResourceBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DSMResourceBag.h -------------------------------------------------------------------------------- /common/DSUtilLite/DSUtilLite.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DSUtilLite.vcxproj -------------------------------------------------------------------------------- /common/DSUtilLite/DSUtilLite.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DSUtilLite.vcxproj.filters -------------------------------------------------------------------------------- /common/DSUtilLite/DShowUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DShowUtil.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/DShowUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DShowUtil.h -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/CSSauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/CSSauth.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/CSSauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/CSSauth.h -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/CSSscramble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/CSSscramble.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/CSSscramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/CSSscramble.h -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/DeCSSInputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/DeCSSInputPin.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/DeCSS/DeCSSInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/DeCSS/DeCSSInputPin.h -------------------------------------------------------------------------------- /common/DSUtilLite/FloatingAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/FloatingAverage.h -------------------------------------------------------------------------------- /common/DSUtilLite/FontInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/FontInstaller.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/FontInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/FontInstaller.h -------------------------------------------------------------------------------- /common/DSUtilLite/H264Nalu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/H264Nalu.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/H264Nalu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/H264Nalu.h -------------------------------------------------------------------------------- /common/DSUtilLite/MediaSampleSideData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/MediaSampleSideData.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/MediaSampleSideData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/MediaSampleSideData.h -------------------------------------------------------------------------------- /common/DSUtilLite/PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/PopupMenu.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/PopupMenu.h -------------------------------------------------------------------------------- /common/DSUtilLite/SynchronizedQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/SynchronizedQueue.h -------------------------------------------------------------------------------- /common/DSUtilLite/filterreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/filterreg.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/gpu_memcpy_sse4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/gpu_memcpy_sse4.h -------------------------------------------------------------------------------- /common/DSUtilLite/growarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/growarray.h -------------------------------------------------------------------------------- /common/DSUtilLite/lavf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/lavf_log.h -------------------------------------------------------------------------------- /common/DSUtilLite/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/locale.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/rand_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/rand_sse.h -------------------------------------------------------------------------------- /common/DSUtilLite/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/registry.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/registry.h -------------------------------------------------------------------------------- /common/DSUtilLite/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/stdafx.cpp -------------------------------------------------------------------------------- /common/DSUtilLite/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/stdafx.h -------------------------------------------------------------------------------- /common/DSUtilLite/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/DSUtilLite/timer.h -------------------------------------------------------------------------------- /common/baseclasses/amextra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/amextra.cpp -------------------------------------------------------------------------------- /common/baseclasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/amextra.h -------------------------------------------------------------------------------- /common/baseclasses/amfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/amfilter.cpp -------------------------------------------------------------------------------- /common/baseclasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/amfilter.h -------------------------------------------------------------------------------- /common/baseclasses/amvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/amvideo.cpp -------------------------------------------------------------------------------- /common/baseclasses/arithutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/arithutil.cpp -------------------------------------------------------------------------------- /common/baseclasses/baseclasses.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/baseclasses.vcxproj -------------------------------------------------------------------------------- /common/baseclasses/baseclasses.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/baseclasses.vcxproj.filters -------------------------------------------------------------------------------- /common/baseclasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/cache.h -------------------------------------------------------------------------------- /common/baseclasses/checkbmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/checkbmi.h -------------------------------------------------------------------------------- /common/baseclasses/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/combase.cpp -------------------------------------------------------------------------------- /common/baseclasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/combase.h -------------------------------------------------------------------------------- /common/baseclasses/cprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/cprop.cpp -------------------------------------------------------------------------------- /common/baseclasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/cprop.h -------------------------------------------------------------------------------- /common/baseclasses/ctlutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/ctlutil.cpp -------------------------------------------------------------------------------- /common/baseclasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/ctlutil.h -------------------------------------------------------------------------------- /common/baseclasses/ddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/ddmm.cpp -------------------------------------------------------------------------------- /common/baseclasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/ddmm.h -------------------------------------------------------------------------------- /common/baseclasses/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/dllentry.cpp -------------------------------------------------------------------------------- /common/baseclasses/dllsetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/dllsetup.cpp -------------------------------------------------------------------------------- /common/baseclasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/dllsetup.h -------------------------------------------------------------------------------- /common/baseclasses/dxmperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/dxmperf.h -------------------------------------------------------------------------------- /common/baseclasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/fourcc.h -------------------------------------------------------------------------------- /common/baseclasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/measure.h -------------------------------------------------------------------------------- /common/baseclasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/msgthrd.h -------------------------------------------------------------------------------- /common/baseclasses/mtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/mtype.cpp -------------------------------------------------------------------------------- /common/baseclasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/mtype.h -------------------------------------------------------------------------------- /common/baseclasses/outputq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/outputq.cpp -------------------------------------------------------------------------------- /common/baseclasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/outputq.h -------------------------------------------------------------------------------- /common/baseclasses/perflog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/perflog.cpp -------------------------------------------------------------------------------- /common/baseclasses/perflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/perflog.h -------------------------------------------------------------------------------- /common/baseclasses/perfstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/perfstruct.h -------------------------------------------------------------------------------- /common/baseclasses/pstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/pstream.cpp -------------------------------------------------------------------------------- /common/baseclasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/pstream.h -------------------------------------------------------------------------------- /common/baseclasses/pullpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/pullpin.cpp -------------------------------------------------------------------------------- /common/baseclasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/pullpin.h -------------------------------------------------------------------------------- /common/baseclasses/refclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/refclock.cpp -------------------------------------------------------------------------------- /common/baseclasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/refclock.h -------------------------------------------------------------------------------- /common/baseclasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/reftime.h -------------------------------------------------------------------------------- /common/baseclasses/renbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/renbase.cpp -------------------------------------------------------------------------------- /common/baseclasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/renbase.h -------------------------------------------------------------------------------- /common/baseclasses/schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/schedule.cpp -------------------------------------------------------------------------------- /common/baseclasses/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/schedule.h -------------------------------------------------------------------------------- /common/baseclasses/seekpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/seekpt.cpp -------------------------------------------------------------------------------- /common/baseclasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/seekpt.h -------------------------------------------------------------------------------- /common/baseclasses/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/source.cpp -------------------------------------------------------------------------------- /common/baseclasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/source.h -------------------------------------------------------------------------------- /common/baseclasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/streams.h -------------------------------------------------------------------------------- /common/baseclasses/strmctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/strmctl.cpp -------------------------------------------------------------------------------- /common/baseclasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/strmctl.h -------------------------------------------------------------------------------- /common/baseclasses/sysclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/sysclock.cpp -------------------------------------------------------------------------------- /common/baseclasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/sysclock.h -------------------------------------------------------------------------------- /common/baseclasses/transfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/transfrm.cpp -------------------------------------------------------------------------------- /common/baseclasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/transfrm.h -------------------------------------------------------------------------------- /common/baseclasses/transip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/transip.cpp -------------------------------------------------------------------------------- /common/baseclasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/transip.h -------------------------------------------------------------------------------- /common/baseclasses/videoctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/videoctl.cpp -------------------------------------------------------------------------------- /common/baseclasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/videoctl.h -------------------------------------------------------------------------------- /common/baseclasses/vtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/vtrans.cpp -------------------------------------------------------------------------------- /common/baseclasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/vtrans.h -------------------------------------------------------------------------------- /common/baseclasses/winctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/winctrl.cpp -------------------------------------------------------------------------------- /common/baseclasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/winctrl.h -------------------------------------------------------------------------------- /common/baseclasses/winutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/winutil.cpp -------------------------------------------------------------------------------- /common/baseclasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/winutil.h -------------------------------------------------------------------------------- /common/baseclasses/wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxdebug.cpp -------------------------------------------------------------------------------- /common/baseclasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxdebug.h -------------------------------------------------------------------------------- /common/baseclasses/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxlist.cpp -------------------------------------------------------------------------------- /common/baseclasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxlist.h -------------------------------------------------------------------------------- /common/baseclasses/wxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxutil.cpp -------------------------------------------------------------------------------- /common/baseclasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/baseclasses/wxutil.h -------------------------------------------------------------------------------- /common/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/common.props -------------------------------------------------------------------------------- /common/genversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/genversion.bat -------------------------------------------------------------------------------- /common/includes/ILAVPinInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/ILAVPinInfo.h -------------------------------------------------------------------------------- /common/includes/IMediaSideDataFFmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/IMediaSideDataFFmpeg.h -------------------------------------------------------------------------------- /common/includes/LAVSplitterSettingsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/LAVSplitterSettingsInternal.h -------------------------------------------------------------------------------- /common/includes/SubRenderIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/SubRenderIntf.h -------------------------------------------------------------------------------- /common/includes/common_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/common_defines.h -------------------------------------------------------------------------------- /common/includes/moreuuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/moreuuids.h -------------------------------------------------------------------------------- /common/includes/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/includes/version.h -------------------------------------------------------------------------------- /common/platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/platform.props -------------------------------------------------------------------------------- /common/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/common/version.sh -------------------------------------------------------------------------------- /decoder/LAVAudio/AudioSettingsProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/AudioSettingsProp.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/AudioSettingsProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/AudioSettingsProp.h -------------------------------------------------------------------------------- /decoder/LAVAudio/Bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/Bitstream.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/BitstreamMAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/BitstreamMAT.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/BitstreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/BitstreamParser.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/BitstreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/BitstreamParser.h -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.def -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.h -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.manifest -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.rc -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.rc2 -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.vcxproj -------------------------------------------------------------------------------- /decoder/LAVAudio/LAVAudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/LAVAudio.vcxproj.filters -------------------------------------------------------------------------------- /decoder/LAVAudio/Media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/Media.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/Media.h -------------------------------------------------------------------------------- /decoder/LAVAudio/PostProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/PostProcessor.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/PostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/PostProcessor.h -------------------------------------------------------------------------------- /decoder/LAVAudio/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/dllmain.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/parser/dts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/parser/dts.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/parser/dts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/parser/dts.h -------------------------------------------------------------------------------- /decoder/LAVAudio/parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/parser/parser.h -------------------------------------------------------------------------------- /decoder/LAVAudio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/resource.h -------------------------------------------------------------------------------- /decoder/LAVAudio/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/stdafx.cpp -------------------------------------------------------------------------------- /decoder/LAVAudio/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVAudio/stdafx.h -------------------------------------------------------------------------------- /decoder/LAVVideo/CCOutputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/CCOutputPin.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/CCOutputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/CCOutputPin.h -------------------------------------------------------------------------------- /decoder/LAVVideo/DecodeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/DecodeManager.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/DecodeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/DecodeManager.h -------------------------------------------------------------------------------- /decoder/LAVVideo/Filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/Filtering.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVPixFmtConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVPixFmtConverter.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVPixFmtConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVPixFmtConverter.h -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.def -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.h -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.manifest -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.rc -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.rc2 -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.vcxproj -------------------------------------------------------------------------------- /decoder/LAVVideo/LAVVideo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/LAVVideo.vcxproj.filters -------------------------------------------------------------------------------- /decoder/LAVVideo/Media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/Media.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/Media.h -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoInputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoInputPin.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoInputPin.h -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoOutputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoOutputPin.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoOutputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoOutputPin.h -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoSettingsProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoSettingsProp.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/VideoSettingsProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/VideoSettingsProp.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/DecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/DecBase.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/ILAVDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/ILAVDecoder.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/avcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/avcodec.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/avcodec.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid/dynlink_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid/dynlink_cuda.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid/dynlink_cuda_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid/dynlink_cuda_cuda.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid/dynlink_cuda_d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid/dynlink_cuda_d3d.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid/dynlink_cuviddec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid/dynlink_cuviddec.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/cuvid/dynlink_nvcuvid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/cuvid/dynlink_nvcuvid.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/d3d11/D3D11SurfaceAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/d3d11/D3D11SurfaceAllocator.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/d3d11/D3D11SurfaceAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/d3d11/D3D11SurfaceAllocator.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/d3d11va.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/d3d11va.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/d3d11va.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2/DXVA2SurfaceAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2/DXVA2SurfaceAllocator.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2/DXVA2SurfaceAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2/DXVA2SurfaceAllocator.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2/dxva_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2/dxva_common.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2/dxva_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2/dxva_common.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2dec.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/dxva2dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/dxva2dec.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/msdk_mvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/msdk_mvc.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/msdk_mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/msdk_mvc.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxcommon.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxdefs.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxmvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxmvc.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxsession.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxstructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxstructures.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxvideo.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/include/mfxvstructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/include/mfxvstructures.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/lib32/libmfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/lib32/libmfx.lib -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/mvc/lib64/libmfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/mvc/lib64/libmfx.lib -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/pixfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/pixfmt.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/quicksync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/quicksync.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/quicksync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/quicksync.h -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/wmv9mft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/wmv9mft.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/decoders/wmv9mft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/decoders/wmv9mft.h -------------------------------------------------------------------------------- /decoder/LAVVideo/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/dllmain.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/AnnexBConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/AnnexBConverter.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/AnnexBConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/AnnexBConverter.h -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/H264SequenceParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/H264SequenceParser.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/H264SequenceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/H264SequenceParser.h -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/HEVCSequenceParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/HEVCSequenceParser.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/HEVCSequenceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/HEVCSequenceParser.h -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/MPEG2HeaderParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/MPEG2HeaderParser.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/MPEG2HeaderParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/MPEG2HeaderParser.h -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/VC1HeaderParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/VC1HeaderParser.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/parsers/VC1HeaderParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/parsers/VC1HeaderParser.h -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/convert_direct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/convert_direct.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/convert_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/convert_generic.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/interleave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/interleave.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/pixconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/pixconv.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/pixconv_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/pixconv_internal.h -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/pixconv_sse2_templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/pixconv_sse2_templates.h -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/yuv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/yuv2rgb.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/yuv420_yuy2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/yuv420_yuy2.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/pixconv/yuv444_ayuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/pixconv/yuv444_ayuv.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/resource.h -------------------------------------------------------------------------------- /decoder/LAVVideo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/stdafx.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/stdafx.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleConsumer.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleConsumer.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleFrame.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleFrame.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVSubtitleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVSubtitleProvider.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVVideoSubtitleInputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVVideoSubtitleInputPin.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/LAVVideoSubtitleInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/LAVVideoSubtitleInputPin.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/SubRenderOptionsImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/SubRenderOptionsImpl.cpp -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/SubRenderOptionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/SubRenderOptionsImpl.h -------------------------------------------------------------------------------- /decoder/LAVVideo/subtitles/blend/blend_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/decoder/LAVVideo/subtitles/blend/blend_generic.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/BDDemuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/BDDemuxer.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/BDDemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/BDDemuxer.h -------------------------------------------------------------------------------- /demuxer/Demuxers/BaseDemuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/BaseDemuxer.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/BaseDemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/BaseDemuxer.h -------------------------------------------------------------------------------- /demuxer/Demuxers/Demuxers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/Demuxers.vcxproj -------------------------------------------------------------------------------- /demuxer/Demuxers/Demuxers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/Demuxers.vcxproj.filters -------------------------------------------------------------------------------- /demuxer/Demuxers/ExtradataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/ExtradataParser.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/ExtradataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/ExtradataParser.h -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFAudioHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFAudioHelper.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFAudioHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFAudioHelper.h -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFDemuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFDemuxer.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFDemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFDemuxer.h -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFInputFormats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFInputFormats.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFStreamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFStreamInfo.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFStreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFStreamInfo.h -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFUtils.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFUtils.h -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFVideoHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFVideoHelper.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/LAVFVideoHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/LAVFVideoHelper.h -------------------------------------------------------------------------------- /demuxer/Demuxers/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/Packet.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/Packet.h -------------------------------------------------------------------------------- /demuxer/Demuxers/StreamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/StreamInfo.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/StreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/StreamInfo.h -------------------------------------------------------------------------------- /demuxer/Demuxers/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/stdafx.cpp -------------------------------------------------------------------------------- /demuxer/Demuxers/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/Demuxers/stdafx.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/InputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/InputPin.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/InputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/InputPin.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.def -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.manifest -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.rc -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.rc2 -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.vcxproj -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitter.vcxproj.filters -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitterTrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitterTrayIcon.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/LAVSplitterTrayIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/LAVSplitterTrayIcon.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/OutputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/OutputPin.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/OutputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/OutputPin.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/PacketAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/PacketAllocator.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/PacketAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/PacketAllocator.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/PacketQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/PacketQueue.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/PacketQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/PacketQueue.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/SettingsProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/SettingsProp.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/SettingsProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/SettingsProp.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/StreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/StreamParser.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/StreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/StreamParser.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/dllmain.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/resource.h -------------------------------------------------------------------------------- /demuxer/LAVSplitter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/stdafx.cpp -------------------------------------------------------------------------------- /demuxer/LAVSplitter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/demuxer/LAVSplitter/stdafx.h -------------------------------------------------------------------------------- /include/IBitRateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IBitRateInfo.h -------------------------------------------------------------------------------- /include/IBufferInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IBufferInfo.h -------------------------------------------------------------------------------- /include/ID3DVideoMemoryConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/ID3DVideoMemoryConfiguration.h -------------------------------------------------------------------------------- /include/IDSMResourceBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IDSMResourceBag.h -------------------------------------------------------------------------------- /include/IGraphRebuildDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IGraphRebuildDelegate.h -------------------------------------------------------------------------------- /include/IKeyFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IKeyFrameInfo.h -------------------------------------------------------------------------------- /include/ILAVDynamicAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/ILAVDynamicAllocator.h -------------------------------------------------------------------------------- /include/IMediaSample3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IMediaSample3D.h -------------------------------------------------------------------------------- /include/IMediaSideData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IMediaSideData.h -------------------------------------------------------------------------------- /include/IPinSegmentEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IPinSegmentEx.h -------------------------------------------------------------------------------- /include/ISpecifyPropertyPages2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/ISpecifyPropertyPages2.h -------------------------------------------------------------------------------- /include/IStreamSourceControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IStreamSourceControl.h -------------------------------------------------------------------------------- /include/ITrackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/ITrackInfo.h -------------------------------------------------------------------------------- /include/IURLSourceFilterLAV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/IURLSourceFilterLAV.h -------------------------------------------------------------------------------- /include/LAVAudioSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/LAVAudioSettings.h -------------------------------------------------------------------------------- /include/LAVSplitterSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/LAVSplitterSettings.h -------------------------------------------------------------------------------- /include/LAVVideoSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/LAVVideoSettings.h -------------------------------------------------------------------------------- /include/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/include/README.txt -------------------------------------------------------------------------------- /resources/LAVFilters.Dependencies.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/resources/LAVFilters.Dependencies.manifest -------------------------------------------------------------------------------- /resources/blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/resources/blue.ico -------------------------------------------------------------------------------- /resources/red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/resources/red.ico -------------------------------------------------------------------------------- /resources/white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/resources/white.ico -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avisynth.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avisynth_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avisynth_c.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/alignment.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/arch.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/capi.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/config.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/cpuid.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/filesystem.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/minmax.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/posix.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/types.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/version.h -------------------------------------------------------------------------------- /thirdparty/32/include/avisynth/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/avisynth/avs/win.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/common.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/data.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/dav1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/dav1d.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/headers.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/picture.h -------------------------------------------------------------------------------- /thirdparty/32/include/dav1d/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/dav1d/version.h -------------------------------------------------------------------------------- /thirdparty/32/include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gmp.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/abstract.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/compat.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/crypto.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/dtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/dtls.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/gnutls.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/ocsp.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/openpgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/openpgp.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/pkcs11.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/pkcs12.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/pkcs7.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/self-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/self-test.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/socket.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/system-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/system-keys.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/tpm.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/urls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/urls.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/x509-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/x509-ext.h -------------------------------------------------------------------------------- /thirdparty/32/include/gnutls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/gnutls/x509.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/HTMLparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/HTMLparser.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/HTMLtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/HTMLtree.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/SAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/SAX.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/SAX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/SAX2.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/c14n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/c14n.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/catalog.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/chvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/chvalid.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/debugXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/debugXML.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/dict.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/encoding.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/entities.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/globals.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/hash.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/list.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/nanoftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/nanoftp.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/nanohttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/nanohttp.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/parser.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/parserInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/parserInternals.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/pattern.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/relaxng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/relaxng.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/schemasInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/schemasInternals.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/schematron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/schematron.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/threads.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/tree.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/uri.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/valid.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xinclude.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xlink.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlIO.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlautomata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlautomata.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlerror.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlexports.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlmemory.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlmodule.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlreader.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlregexp.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlsave.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlschemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlschemas.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlschemastypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlschemastypes.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlstring.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlunicode.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlversion.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xmlwriter.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xpath.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xpathInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xpathInternals.h -------------------------------------------------------------------------------- /thirdparty/32/include/libxml2/libxml/xpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/libxml2/libxml/xpointer.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/aes.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/arcfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/arcfour.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/arctwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/arctwo.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/asn1.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/balloon.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/base16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/base16.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/base64.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/bignum.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/blowfish.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/buffer.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/camellia.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/cast128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/cast128.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/cbc.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ccm.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/cfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/cfb.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/chacha-poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/chacha-poly1305.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/chacha.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/cmac.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ctr.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/curve25519.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/curve448.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/curve448.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/des.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/dsa-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/dsa-compat.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/dsa.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/eax.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ecc-curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ecc-curve.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ecc.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ecdsa.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/eddsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/eddsa.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/gcm.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/gostdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/gostdsa.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/gosthash94.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/gosthash94.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/hkdf.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/hmac.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/knuth-lfib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/knuth-lfib.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/macros.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/md2.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/md4.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/md5-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/md5-compat.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/md5.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/memops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/memops.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/memxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/memxor.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/nettle-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/nettle-meta.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/nettle-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/nettle-types.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/nist-keywrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/nist-keywrap.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ocb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ocb.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/pbkdf2.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/pgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/pgp.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/pkcs1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/pkcs1.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/poly1305.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/pss-mgf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/pss-mgf1.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/pss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/pss.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/realloc.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/ripemd160.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/rsa.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/salsa20.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/serpent.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sexp.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sha.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sha1.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sha2.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sha3.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/siv-cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/siv-cmac.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/siv-gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/siv-gcm.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sm3.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/sm4.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/streebog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/streebog.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/twofish.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/umac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/umac.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/version.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/xts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/xts.h -------------------------------------------------------------------------------- /thirdparty/32/include/nettle/yarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/nettle/yarrow.h -------------------------------------------------------------------------------- /thirdparty/32/include/opencore-amrnb/interf_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/opencore-amrnb/interf_dec.h -------------------------------------------------------------------------------- /thirdparty/32/include/opencore-amrnb/interf_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/opencore-amrnb/interf_enc.h -------------------------------------------------------------------------------- /thirdparty/32/include/opencore-amrwb/dec_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/opencore-amrwb/dec_if.h -------------------------------------------------------------------------------- /thirdparty/32/include/opencore-amrwb/if_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/opencore-amrwb/if_rom.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_bits.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_callbacks.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_config_types.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_header.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_stereo.h -------------------------------------------------------------------------------- /thirdparty/32/include/speex/speex_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/include/speex/speex_types.h -------------------------------------------------------------------------------- /thirdparty/32/lib/libdav1d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libdav1d.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libgmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libgmp.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libgnutls.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libgnutls.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libhogweed.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libhogweed.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libnettle.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libnettle.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libopencore-amrnb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libopencore-amrnb.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libopencore-amrwb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libopencore-amrwb.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libspeex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libspeex.a -------------------------------------------------------------------------------- /thirdparty/32/lib/libxml2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/libxml2.a -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/dav1d.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/dav1d.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/gmp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/gmp.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/gnutls.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/gnutls.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/hogweed.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/hogweed.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/libxml-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/libxml-2.0.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/nettle.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/nettle.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/opencore-amrnb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/opencore-amrnb.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/opencore-amrwb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/opencore-amrwb.pc -------------------------------------------------------------------------------- /thirdparty/32/lib/pkgconfig/speex.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/32/lib/pkgconfig/speex.pc -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avisynth.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avisynth_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avisynth_c.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/alignment.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/arch.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/capi.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/config.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/cpuid.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/filesystem.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/minmax.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/posix.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/types.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/version.h -------------------------------------------------------------------------------- /thirdparty/64/include/avisynth/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/avisynth/avs/win.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/common.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/data.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/dav1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/dav1d.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/headers.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/picture.h -------------------------------------------------------------------------------- /thirdparty/64/include/dav1d/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/dav1d/version.h -------------------------------------------------------------------------------- /thirdparty/64/include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gmp.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/abstract.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/compat.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/crypto.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/dtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/dtls.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/gnutls.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/ocsp.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/openpgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/openpgp.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/pkcs11.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/pkcs12.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/pkcs7.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/self-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/self-test.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/socket.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/system-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/system-keys.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/tpm.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/urls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/urls.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/x509-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/x509-ext.h -------------------------------------------------------------------------------- /thirdparty/64/include/gnutls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/gnutls/x509.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/HTMLparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/HTMLparser.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/HTMLtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/HTMLtree.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/SAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/SAX.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/SAX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/SAX2.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/c14n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/c14n.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/catalog.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/chvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/chvalid.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/debugXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/debugXML.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/dict.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/encoding.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/entities.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/globals.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/hash.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/list.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/nanoftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/nanoftp.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/nanohttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/nanohttp.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/parser.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/parserInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/parserInternals.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/pattern.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/relaxng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/relaxng.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/schemasInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/schemasInternals.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/schematron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/schematron.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/threads.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/tree.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/uri.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/valid.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xinclude.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xlink.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlIO.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlautomata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlautomata.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlerror.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlexports.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlmemory.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlmodule.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlreader.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlregexp.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlsave.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlschemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlschemas.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlschemastypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlschemastypes.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlstring.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlunicode.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlversion.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xmlwriter.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xpath.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xpathInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xpathInternals.h -------------------------------------------------------------------------------- /thirdparty/64/include/libxml2/libxml/xpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/libxml2/libxml/xpointer.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/aes.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/arcfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/arcfour.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/arctwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/arctwo.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/asn1.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/balloon.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/base16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/base16.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/base64.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/bignum.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/blowfish.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/buffer.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/camellia.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/cast128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/cast128.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/cbc.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ccm.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/cfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/cfb.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/chacha-poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/chacha-poly1305.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/chacha.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/cmac.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ctr.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/curve25519.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/curve448.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/curve448.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/des.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/dsa-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/dsa-compat.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/dsa.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/eax.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ecc-curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ecc-curve.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ecc.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ecdsa.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/eddsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/eddsa.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/gcm.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/gostdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/gostdsa.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/gosthash94.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/gosthash94.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/hkdf.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/hmac.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/knuth-lfib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/knuth-lfib.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/macros.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/md2.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/md4.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/md5-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/md5-compat.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/md5.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/memops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/memops.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/memxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/memxor.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/nettle-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/nettle-meta.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/nettle-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/nettle-types.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/nist-keywrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/nist-keywrap.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ocb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ocb.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/pbkdf2.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/pgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/pgp.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/pkcs1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/pkcs1.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/poly1305.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/pss-mgf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/pss-mgf1.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/pss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/pss.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/realloc.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/ripemd160.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/rsa.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/salsa20.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/serpent.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sexp.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sha.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sha1.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sha2.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sha3.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/siv-cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/siv-cmac.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/siv-gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/siv-gcm.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sm3.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/sm4.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/streebog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/streebog.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/twofish.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/umac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/umac.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/version.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/xts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/xts.h -------------------------------------------------------------------------------- /thirdparty/64/include/nettle/yarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/nettle/yarrow.h -------------------------------------------------------------------------------- /thirdparty/64/include/opencore-amrnb/interf_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/opencore-amrnb/interf_dec.h -------------------------------------------------------------------------------- /thirdparty/64/include/opencore-amrnb/interf_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/opencore-amrnb/interf_enc.h -------------------------------------------------------------------------------- /thirdparty/64/include/opencore-amrwb/dec_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/opencore-amrwb/dec_if.h -------------------------------------------------------------------------------- /thirdparty/64/include/opencore-amrwb/if_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/opencore-amrwb/if_rom.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_bits.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_callbacks.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_config_types.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_header.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_stereo.h -------------------------------------------------------------------------------- /thirdparty/64/include/speex/speex_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/include/speex/speex_types.h -------------------------------------------------------------------------------- /thirdparty/64/lib/libdav1d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libdav1d.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libgmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libgmp.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libgnutls.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libgnutls.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libhogweed.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libhogweed.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libnettle.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libnettle.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libopencore-amrnb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libopencore-amrnb.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libopencore-amrwb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libopencore-amrwb.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libspeex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libspeex.a -------------------------------------------------------------------------------- /thirdparty/64/lib/libxml2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/libxml2.a -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/dav1d.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/dav1d.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/gmp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/gmp.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/gnutls.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/gnutls.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/hogweed.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/hogweed.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/libxml-2.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/libxml-2.0.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/nettle.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/nettle.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/opencore-amrnb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/opencore-amrnb.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/opencore-amrwb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/opencore-amrwb.pc -------------------------------------------------------------------------------- /thirdparty/64/lib/pkgconfig/speex.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/64/lib/pkgconfig/speex.pc -------------------------------------------------------------------------------- /thirdparty/build instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/build instructions.txt -------------------------------------------------------------------------------- /thirdparty/contrib/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/contrib/7za.exe -------------------------------------------------------------------------------- /thirdparty/contrib/cv2pdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/contrib/cv2pdb.exe -------------------------------------------------------------------------------- /thirdparty/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clsid2/LAVFilters/HEAD/thirdparty/versions.txt --------------------------------------------------------------------------------