gitextract_htgb5fag/ ├── .clang-format ├── .editorconfig ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.txt ├── COPYING ├── LAVFilters.iss ├── LAVFilters.sln ├── README.md ├── build.bat ├── build_ffmpeg.sh ├── build_ffmpeg_msvc.sh ├── 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 ├── 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/ │ │ │ ├── dynlink_cuda.h │ │ │ ├── dynlink_cuda_cuda.h │ │ │ ├── dynlink_cuda_d3d.h │ │ │ ├── dynlink_cuviddec.h │ │ │ └── dynlink_nvcuvid.h │ │ ├── cuvid.cpp │ │ ├── cuvid.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 └── 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 └── versions.txt