├── .gitignore ├── LICENSE ├── README.md ├── code ├── externals │ ├── astc │ │ ├── astc.h │ │ ├── astc_block_sizes2.c │ │ ├── astc_color_unquantize.c │ │ ├── astc_decompress_symbolic.c │ │ ├── astc_image_load_store.c │ │ ├── astc_integer_sequence.c │ │ ├── astc_partition_tables.c │ │ ├── astc_percentile_tables.c │ │ ├── astc_quantization.c │ │ ├── astc_symbolic_physical.c │ │ ├── astc_toplevel.c │ │ ├── astc_weight_align.c │ │ ├── astc_weight_quant_xfer_tables.c │ │ ├── softfloat.c │ │ └── softfloat.h │ ├── fastlz │ │ ├── fastlz.c │ │ └── fastlz.h │ ├── freetype2 │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpcfdrv.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpic.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmetric.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ │ └── ft2build.h │ │ └── src │ │ │ ├── Jamfile │ │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afpic.c │ │ │ ├── afpic.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── basepic.c │ │ │ ├── basepic.h │ │ │ ├── ftadvanc.c │ │ │ ├── ftapi.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpic.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ ├── Jamfile │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ ├── Jamfile │ │ │ ├── cf2arrst.c │ │ │ ├── cf2arrst.h │ │ │ ├── cf2blues.c │ │ │ ├── cf2blues.h │ │ │ ├── cf2error.c │ │ │ ├── cf2error.h │ │ │ ├── cf2fixed.h │ │ │ ├── cf2font.c │ │ │ ├── cf2font.h │ │ │ ├── cf2ft.c │ │ │ ├── cf2ft.h │ │ │ ├── cf2glue.h │ │ │ ├── cf2hints.c │ │ │ ├── cf2hints.h │ │ │ ├── cf2intrp.c │ │ │ ├── cf2intrp.h │ │ │ ├── cf2read.c │ │ │ ├── cf2read.h │ │ │ ├── cf2stack.c │ │ │ ├── cf2stack.h │ │ │ ├── cf2types.h │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cffpic.c │ │ │ ├── cffpic.h │ │ │ ├── cfftoken.h │ │ │ ├── cfftypes.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ ├── Jamfile │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ ├── Jamfile │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ ├── Jamfile │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── module.mk │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshpic.c │ │ │ ├── pshpic.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pspic.c │ │ │ ├── pspic.h │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ ├── rastpic.c │ │ │ ├── rastpic.h │ │ │ └── rules.mk │ │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfntpic.c │ │ │ ├── sfntpic.h │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ └── ttsbit.h │ │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── content.py │ │ │ │ ├── docbeauty.py │ │ │ │ ├── docmaker.py │ │ │ │ ├── formatter.py │ │ │ │ ├── sources.py │ │ │ │ ├── tohtml.py │ │ │ │ └── utils.py │ │ │ ├── ftfuzzer │ │ │ │ ├── README │ │ │ │ ├── ftfuzzer.cc │ │ │ │ ├── ftmutator.cc │ │ │ │ ├── rasterfuzzer.cc │ │ │ │ └── runinput.cc │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ └── update-copyright-year │ │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpic.c │ │ │ ├── ttpic.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── gl │ │ ├── glcorearb.h │ │ ├── glxext.h │ │ └── wglext.h │ ├── miniz │ │ ├── miniz.c │ │ ├── miniz.h │ │ ├── miniz_common.h │ │ ├── miniz_tdef.c │ │ ├── miniz_tdef.h │ │ ├── miniz_tinfl.c │ │ └── miniz_tinfl.h │ ├── mpaudec │ │ ├── bits.c │ │ ├── internal.h │ │ ├── mpaudec.c │ │ ├── mpaudec.h │ │ ├── mpaudectab.h │ │ └── mpegaudio.h │ ├── quickjs │ │ ├── bjson.c │ │ ├── cutils.c │ │ ├── cutils.h │ │ ├── libbf.c │ │ ├── libbf.h │ │ ├── libregexp-opcode.h │ │ ├── libregexp.c │ │ ├── libregexp.h │ │ ├── libunicode-table.h │ │ ├── libunicode.c │ │ ├── libunicode.h │ │ ├── list.h │ │ ├── pthread.c │ │ ├── pthread.h │ │ ├── quickjs-atom.h │ │ ├── quickjs-libc.c │ │ ├── quickjs-libc.h │ │ ├── quickjs-opcode.h │ │ ├── quickjs.c │ │ ├── quickjs.h │ │ ├── stdatomic.h │ │ └── sys │ │ │ ├── time.c │ │ │ └── time.h │ ├── webp │ │ └── src │ │ │ ├── dec │ │ │ ├── alpha_dec.c │ │ │ ├── alphai_dec.h │ │ │ ├── buffer_dec.c │ │ │ ├── common_dec.h │ │ │ ├── frame_dec.c │ │ │ ├── idec_dec.c │ │ │ ├── io_dec.c │ │ │ ├── quant_dec.c │ │ │ ├── tree_dec.c │ │ │ ├── vp8_dec.c │ │ │ ├── vp8_dec.h │ │ │ ├── vp8i_dec.h │ │ │ ├── vp8l_dec.c │ │ │ ├── vp8li_dec.h │ │ │ ├── webp_dec.c │ │ │ └── webpi_dec.h │ │ │ ├── dsp │ │ │ ├── alpha_processing.c │ │ │ ├── alpha_processing_mips_dsp_r2.c │ │ │ ├── alpha_processing_neon.c │ │ │ ├── alpha_processing_sse2.c │ │ │ ├── alpha_processing_sse41.c │ │ │ ├── common_sse2.h │ │ │ ├── common_sse41.h │ │ │ ├── cost.c │ │ │ ├── cost_mips32.c │ │ │ ├── cost_mips_dsp_r2.c │ │ │ ├── cost_sse2.c │ │ │ ├── cpu.c │ │ │ ├── dec.c │ │ │ ├── dec_clip_tables.c │ │ │ ├── dec_mips32.c │ │ │ ├── dec_mips_dsp_r2.c │ │ │ ├── dec_msa.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dec_sse41.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_avx2.c │ │ │ ├── enc_mips32.c │ │ │ ├── enc_mips_dsp_r2.c │ │ │ ├── enc_msa.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── enc_sse41.c │ │ │ ├── filters.c │ │ │ ├── filters_mips_dsp_r2.c │ │ │ ├── filters_msa.c │ │ │ ├── filters_neon.c │ │ │ ├── filters_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── lossless_common.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_mips32.c │ │ │ ├── lossless_enc_mips_dsp_r2.c │ │ │ ├── lossless_enc_msa.c │ │ │ ├── lossless_enc_neon.c │ │ │ ├── lossless_enc_sse2.c │ │ │ ├── lossless_enc_sse41.c │ │ │ ├── lossless_mips_dsp_r2.c │ │ │ ├── lossless_msa.c │ │ │ ├── lossless_neon.c │ │ │ ├── lossless_sse2.c │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── neon.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler_mips32.c │ │ │ ├── rescaler_mips_dsp_r2.c │ │ │ ├── rescaler_msa.c │ │ │ ├── rescaler_neon.c │ │ │ ├── rescaler_sse2.c │ │ │ ├── ssim.c │ │ │ ├── ssim_sse2.c │ │ │ ├── upsampling.c │ │ │ ├── upsampling_mips_dsp_r2.c │ │ │ ├── upsampling_msa.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── upsampling_sse41.c │ │ │ ├── yuv.c │ │ │ ├── yuv.h │ │ │ ├── yuv_mips32.c │ │ │ ├── yuv_mips_dsp_r2.c │ │ │ ├── yuv_neon.c │ │ │ ├── yuv_sse2.c │ │ │ └── yuv_sse41.c │ │ │ ├── enc │ │ │ ├── alpha_enc.c │ │ │ ├── analysis_enc.c │ │ │ ├── backward_references_cost_enc.c │ │ │ ├── backward_references_enc.c │ │ │ ├── backward_references_enc.h │ │ │ ├── config_enc.c │ │ │ ├── cost_enc.c │ │ │ ├── cost_enc.h │ │ │ ├── filter_enc.c │ │ │ ├── frame_enc.c │ │ │ ├── histogram_enc.c │ │ │ ├── histogram_enc.h │ │ │ ├── iterator_enc.c │ │ │ ├── near_lossless_enc.c │ │ │ ├── picture_csp_enc.c │ │ │ ├── picture_enc.c │ │ │ ├── picture_psnr_enc.c │ │ │ ├── picture_rescale_enc.c │ │ │ ├── picture_tools_enc.c │ │ │ ├── predictor_enc.c │ │ │ ├── quant_enc.c │ │ │ ├── syntax_enc.c │ │ │ ├── token_enc.c │ │ │ ├── tree_enc.c │ │ │ ├── vp8i_enc.h │ │ │ ├── vp8l_enc.c │ │ │ ├── vp8li_enc.h │ │ │ └── webp_enc.c │ │ │ ├── utils │ │ │ ├── bit_reader_inl_utils.h │ │ │ ├── bit_reader_utils.c │ │ │ ├── bit_reader_utils.h │ │ │ ├── bit_writer_utils.c │ │ │ ├── bit_writer_utils.h │ │ │ ├── color_cache_utils.c │ │ │ ├── color_cache_utils.h │ │ │ ├── endian_inl_utils.h │ │ │ ├── filters_utils.c │ │ │ ├── filters_utils.h │ │ │ ├── huffman_encode_utils.c │ │ │ ├── huffman_encode_utils.h │ │ │ ├── huffman_utils.c │ │ │ ├── huffman_utils.h │ │ │ ├── quant_levels_dec_utils.c │ │ │ ├── quant_levels_dec_utils.h │ │ │ ├── quant_levels_utils.c │ │ │ ├── quant_levels_utils.h │ │ │ ├── random_utils.c │ │ │ ├── random_utils.h │ │ │ ├── rescaler_utils.c │ │ │ ├── rescaler_utils.h │ │ │ ├── thread_utils.c │ │ │ ├── thread_utils.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ │ └── webp │ │ │ ├── config.h │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ └── xml │ │ ├── ezxml.c │ │ └── ezxml.h ├── headers │ ├── .DS_Store │ ├── audio.h │ ├── gpu.h │ ├── network.h │ ├── prerequisites.h │ ├── sprite.h │ ├── streamio.h │ ├── system.h │ ├── ui.h │ └── util.h └── src │ ├── .DS_Store │ ├── array.c │ ├── audio.xc │ ├── dictionary.c │ ├── gpu.xc │ ├── internal.c │ ├── internal │ ├── .DS_Store │ ├── SHADER_2D.bsl │ ├── SHADER_2D_GLOW.bsl │ ├── SHADER_2D_INSTANCE.bsl │ ├── SHADER_2D_STROKE.bsl │ ├── SHADER_LINE.bsl │ ├── array.h │ ├── dictionary.h │ ├── gpucommon.c │ ├── gpucommon.h │ ├── gpudx.h │ ├── gpugl.h │ ├── gpumtl.h │ ├── gpuvk.h │ ├── internal.h │ ├── list.h │ ├── mathematics.h │ └── thread.h │ ├── list.c │ ├── mathematics.c │ ├── network.c │ ├── sprite.c │ ├── streamio.c │ ├── system.xc │ ├── thread.c │ ├── ui.c │ └── util.c ├── covenant ├── icons ├── Pack.jpg ├── UIdesigner.jpg ├── logo.png └── textool.jpg ├── plugins ├── chipmunk │ ├── chipmunk-android.vcxproj │ ├── chipmunk-android.vcxproj.filters │ ├── chipmunk-linux.vcxproj │ ├── chipmunk-web.vcxproj │ ├── chipmunk-web.vcxproj.filters │ ├── chipmunk-win32.vcxproj │ ├── chipmunk-win32.vcxproj.filters │ ├── chipmunk.vcxitems │ ├── chipmunk.vcxitems.filters │ ├── chipmunk │ │ ├── chipmunk.c │ │ ├── chipmunk.h │ │ ├── chipmunk_ffi.h │ │ ├── chipmunk_private.h │ │ ├── chipmunk_structs.h │ │ ├── chipmunk_types.h │ │ ├── chipmunk_unsafe.h │ │ ├── cpArbiter.c │ │ ├── cpArbiter.h │ │ ├── cpArray.c │ │ ├── cpBB.h │ │ ├── cpBBTree.c │ │ ├── cpBody.c │ │ ├── cpBody.h │ │ ├── cpCollision.c │ │ ├── cpConstraint.c │ │ ├── cpConstraint.h │ │ ├── cpDampedRotarySpring.c │ │ ├── cpDampedRotarySpring.h │ │ ├── cpDampedSpring.c │ │ ├── cpDampedSpring.h │ │ ├── cpGearJoint.c │ │ ├── cpGearJoint.h │ │ ├── cpGrooveJoint.c │ │ ├── cpGrooveJoint.h │ │ ├── cpHashSet.c │ │ ├── cpMarch.c │ │ ├── cpMarch.h │ │ ├── cpPinJoint.c │ │ ├── cpPinJoint.h │ │ ├── cpPivotJoint.c │ │ ├── cpPivotJoint.h │ │ ├── cpPolyShape.c │ │ ├── cpPolyShape.h │ │ ├── cpRatchetJoint.c │ │ ├── cpRatchetJoint.h │ │ ├── cpRobust.c │ │ ├── cpRobust.h │ │ ├── cpRotaryLimitJoint.c │ │ ├── cpRotaryLimitJoint.h │ │ ├── cpShape.c │ │ ├── cpShape.h │ │ ├── cpSimpleMotor.c │ │ ├── cpSimpleMotor.h │ │ ├── cpSlideJoint.c │ │ ├── cpSlideJoint.h │ │ ├── cpSpace.c │ │ ├── cpSpace.h │ │ ├── cpSpaceComponent.c │ │ ├── cpSpaceDebug.c │ │ ├── cpSpaceHash.c │ │ ├── cpSpaceQuery.c │ │ ├── cpSpaceStep.c │ │ ├── cpSpatialIndex.c │ │ ├── cpSpatialIndex.h │ │ ├── cpSweep1D.c │ │ ├── cpTransform.h │ │ ├── cpVect.h │ │ └── prime.h │ ├── chipmunkentry.c │ └── chipmunkentry.h ├── encrypt │ ├── encrpt-linux.vcxproj │ ├── encrypt-android.vcxproj │ ├── encrypt-android.vcxproj.filters │ ├── encrypt-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── encrypt-osx.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── encrypt-uwp.vcxproj │ ├── encrypt-uwp.vcxproj.filters │ ├── encrypt-web.vcxproj │ ├── encrypt-web.vcxproj.filters │ ├── encrypt-win32.vcxproj │ ├── encrypt-win32.vcxproj.filters │ ├── encrypt.vcxitems │ ├── encrypt.vcxitems.filters │ ├── encryptentry.c │ ├── encryptentry.h │ └── mbedtls │ │ ├── aes.c │ │ ├── aes.h │ │ ├── aesni.c │ │ ├── aesni.h │ │ ├── arc4.c │ │ ├── arc4.h │ │ ├── aria.c │ │ ├── aria.h │ │ ├── asn1.h │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── asn1write.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bignum.c │ │ ├── bignum.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── bn_mul.h │ │ ├── camellia.c │ │ ├── camellia.h │ │ ├── ccm.c │ │ ├── ccm.h │ │ ├── certs.c │ │ ├── certs.h │ │ ├── check_config.h │ │ ├── cipher.c │ │ ├── cipher.h │ │ ├── cipher_internal.h │ │ ├── cipher_wrap.c │ │ ├── cmac.c │ │ ├── cmac.h │ │ ├── compat-1.3.h │ │ ├── config.h │ │ ├── ctr_drbg.c │ │ ├── ctr_drbg.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── des.c │ │ ├── des.h │ │ ├── dhm.c │ │ ├── dhm.h │ │ ├── ecdh.c │ │ ├── ecdh.h │ │ ├── ecdsa.c │ │ ├── ecdsa.h │ │ ├── ecjpake.c │ │ ├── ecjpake.h │ │ ├── ecp.c │ │ ├── ecp.h │ │ ├── ecp_curves.c │ │ ├── ecp_internal.h │ │ ├── entropy.c │ │ ├── entropy.h │ │ ├── entropy_poll.c │ │ ├── entropy_poll.h │ │ ├── error.c │ │ ├── error.h │ │ ├── gcm.c │ │ ├── gcm.h │ │ ├── havege.c │ │ ├── havege.h │ │ ├── hmac_drbg.c │ │ ├── hmac_drbg.h │ │ ├── md.c │ │ ├── md.h │ │ ├── md2.c │ │ ├── md2.h │ │ ├── md4.c │ │ ├── md4.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── md_internal.h │ │ ├── md_wrap.c │ │ ├── memory_buffer_alloc.c │ │ ├── memory_buffer_alloc.h │ │ ├── net.h │ │ ├── net_sockets.c │ │ ├── net_sockets.h │ │ ├── oid.c │ │ ├── oid.h │ │ ├── padlock.c │ │ ├── padlock.h │ │ ├── pem.c │ │ ├── pem.h │ │ ├── pk.c │ │ ├── pk.h │ │ ├── pk_internal.h │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs11.h │ │ ├── pkcs12.c │ │ ├── pkcs12.h │ │ ├── pkcs5.c │ │ ├── pkcs5.h │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── platform_time.h │ │ ├── platform_util.c │ │ ├── platform_util.h │ │ ├── ripemd160.c │ │ ├── ripemd160.h │ │ ├── rsa.c │ │ ├── rsa.h │ │ ├── rsa_internal.c │ │ ├── rsa_internal.h │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── sha256.c │ │ ├── sha256.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── ssl.h │ │ ├── ssl_cache.c │ │ ├── ssl_cache.h │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_ciphersuites.h │ │ ├── ssl_cli.c │ │ ├── ssl_cookie.c │ │ ├── ssl_cookie.h │ │ ├── ssl_internal.h │ │ ├── ssl_srv.c │ │ ├── ssl_ticket.c │ │ ├── ssl_ticket.h │ │ ├── ssl_tls.c │ │ ├── threading.c │ │ ├── threading.h │ │ ├── timing.c │ │ ├── timing.h │ │ ├── version.c │ │ ├── version.h │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509.h │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crl.h │ │ ├── x509_crt.c │ │ ├── x509_crt.h │ │ ├── x509_csr.c │ │ ├── x509_csr.h │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ ├── xtea.c │ │ └── xtea.h ├── iap │ ├── iap-android.vcxproj │ ├── iap-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── iap-linux.vcxproj │ ├── iap-osx.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── iap-uwp.vcxproj │ ├── iap-web.vcxproj │ ├── iap-win32.vcxproj │ ├── iap.vcxitems │ ├── iap.vcxitems.filters │ ├── iapentry.h │ └── iapentry.xc ├── spine │ ├── spine-android.vcxproj │ ├── spine-android.vcxproj.filters │ ├── spine-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ ├── marilyndafa.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── spine-ios.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── spine-ios.xcscheme │ │ │ └── xcschememanagement.plist │ ├── spine-linux.vcxproj │ ├── spine-osx.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ ├── marilyndafa.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── spine-osx.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── spine-osx.xcscheme │ │ │ └── xcschememanagement.plist │ ├── spine-uwp.vcxproj │ ├── spine-uwp.vcxproj.filters │ ├── spine-web.vcxproj │ ├── spine-win32.vcxproj │ ├── spine-win32.vcxproj.filters │ ├── spine.vcxitems │ ├── spine.vcxitems.filters │ ├── spine │ │ ├── Animation.c │ │ ├── Animation.h │ │ ├── AnimationState.c │ │ ├── AnimationState.h │ │ ├── AnimationStateData.c │ │ ├── AnimationStateData.h │ │ ├── Array.c │ │ ├── Array.h │ │ ├── Atlas.c │ │ ├── Atlas.h │ │ ├── AtlasAttachmentLoader.c │ │ ├── AtlasAttachmentLoader.h │ │ ├── Attachment.c │ │ ├── Attachment.h │ │ ├── AttachmentLoader.c │ │ ├── AttachmentLoader.h │ │ ├── Bone.c │ │ ├── Bone.h │ │ ├── BoneData.c │ │ ├── BoneData.h │ │ ├── BoundingBoxAttachment.c │ │ ├── BoundingBoxAttachment.h │ │ ├── ClippingAttachment.c │ │ ├── ClippingAttachment.h │ │ ├── Color.c │ │ ├── Color.h │ │ ├── Event.c │ │ ├── Event.h │ │ ├── EventData.c │ │ ├── EventData.h │ │ ├── IkConstraint.c │ │ ├── IkConstraint.h │ │ ├── IkConstraintData.c │ │ ├── IkConstraintData.h │ │ ├── Json.c │ │ ├── Json.h │ │ ├── MeshAttachment.c │ │ ├── MeshAttachment.h │ │ ├── PathAttachment.c │ │ ├── PathAttachment.h │ │ ├── PathConstraint.c │ │ ├── PathConstraint.h │ │ ├── PathConstraintData.c │ │ ├── PathConstraintData.h │ │ ├── PointAttachment.c │ │ ├── PointAttachment.h │ │ ├── RegionAttachment.c │ │ ├── RegionAttachment.h │ │ ├── Skeleton.c │ │ ├── Skeleton.h │ │ ├── SkeletonBinary.c │ │ ├── SkeletonBinary.h │ │ ├── SkeletonBounds.c │ │ ├── SkeletonBounds.h │ │ ├── SkeletonClipping.c │ │ ├── SkeletonClipping.h │ │ ├── SkeletonData.c │ │ ├── SkeletonData.h │ │ ├── SkeletonJson.c │ │ ├── SkeletonJson.h │ │ ├── Skin.c │ │ ├── Skin.h │ │ ├── Slot.c │ │ ├── Slot.h │ │ ├── SlotData.c │ │ ├── SlotData.h │ │ ├── TransformConstraint.c │ │ ├── TransformConstraint.h │ │ ├── TransformConstraintData.c │ │ ├── TransformConstraintData.h │ │ ├── Triangulator.c │ │ ├── Triangulator.h │ │ ├── VertexAttachment.c │ │ ├── VertexAttachment.h │ │ ├── VertexEffect.c │ │ ├── VertexEffect.h │ │ ├── dll.h │ │ ├── extension.c │ │ ├── extension.h │ │ └── spine.h │ ├── spineentry.c │ └── spineentry.h ├── tmx │ ├── AStar.c │ ├── AStar.h │ ├── IndexPriorityQueue.c │ ├── IndexPriorityQueue.h │ ├── array.c │ ├── array.h │ ├── dictionary.c │ ├── dictionary.h │ ├── layer.c │ ├── layer.h │ ├── misc.c │ ├── misc.h │ ├── objectgroup.c │ ├── objectgroup.h │ ├── tmx-android.vcxproj │ ├── tmx-android.vcxproj.filters │ ├── tmx-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ ├── marilyndafa.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── tmx-ios.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── tmx-ios.xcscheme │ │ │ └── xcschememanagement.plist │ ├── tmx-linux.vcxproj │ ├── tmx-osx.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ ├── marilyndafa.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── tmx-osx.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── zhoubo.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── tmx-osx.xcscheme │ │ │ └── xcschememanagement.plist │ ├── tmx-uwp.vcxproj │ ├── tmx-uwp.vcxproj.filters │ ├── tmx-web.vcxproj │ ├── tmx-win32.vcxproj │ ├── tmx-win32.vcxproj.filters │ ├── tmx.vcxitems │ ├── tmx.vcxitems.filters │ ├── tmxentry.c │ ├── tmxentry.h │ ├── tmxparser.c │ └── tmxparser.h ├── vg │ ├── bezier.c │ ├── bezier.h │ ├── curve.c │ ├── curve.h │ ├── spline.c │ ├── spline.h │ ├── vg-android.vcxproj │ ├── vg-android.vcxproj.filters │ ├── vg-linux.vcxproj │ ├── vg-web.vcxproj │ ├── vg-win32.vcxproj │ ├── vg-win32.vcxproj.filters │ ├── vg.vcxitems │ ├── vg.vcxitems.filters │ ├── vgentry.c │ └── vgentry.h └── video │ ├── video-android.vcxproj │ ├── video-android.vcxproj.filters │ ├── video-ios.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── marilyndafa.xcuserdatad │ │ └── xcschemes │ │ │ ├── video-ios.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── zhoubo.xcuserdatad │ │ └── xcschemes │ │ ├── video-ios.xcscheme │ │ └── xcschememanagement.plist │ ├── video-linux.vcxproj │ ├── video-linux.vcxproj.filters │ ├── video-osx.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── marilyndafa.xcuserdatad │ │ └── xcschemes │ │ │ ├── video-osx.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── zhoubo.xcuserdatad │ │ └── xcschemes │ │ ├── video-osx.xcscheme │ │ └── xcschememanagement.plist │ ├── video-uwp.vcxproj │ ├── video-uwp.vcxproj.filters │ ├── video-web.vcxproj │ ├── video-win32.vcxproj │ ├── video-win32.vcxproj.filters │ ├── video.vcxitems │ ├── video.vcxitems.filters │ ├── videoentry.h │ ├── videoentry.xc │ ├── webm │ ├── ogg │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ └── src │ │ │ ├── bitwise.c │ │ │ └── framing.c │ ├── opus │ │ ├── celt │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── arm │ │ │ │ ├── arm2gnu.pl │ │ │ │ ├── arm_celt_map.c │ │ │ │ ├── armcpu.c │ │ │ │ ├── armcpu.h │ │ │ │ ├── armopts.s.in │ │ │ │ ├── celt_ne10_fft.c │ │ │ │ ├── celt_ne10_mdct.c │ │ │ │ ├── celt_neon_intr.c │ │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ │ ├── fft_arm.h │ │ │ │ ├── fixed_arm64.h │ │ │ │ ├── fixed_armv4.h │ │ │ │ ├── fixed_armv5e.h │ │ │ │ ├── kiss_fft_armv4.h │ │ │ │ ├── kiss_fft_armv5e.h │ │ │ │ ├── mdct_arm.h │ │ │ │ └── pitch_arm.h │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt_decoder.c │ │ │ ├── celt_encoder.c │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.h │ │ │ ├── cpu_support.h │ │ │ ├── cwrs.c │ │ │ ├── cwrs.h │ │ │ ├── dump_modes │ │ │ │ ├── Makefile │ │ │ │ ├── dump_modes.c │ │ │ │ ├── dump_modes_arch.h │ │ │ │ └── dump_modes_arm_ne10.c │ │ │ ├── ecintrin.h │ │ │ ├── entcode.c │ │ │ ├── entcode.h │ │ │ ├── entdec.c │ │ │ ├── entdec.h │ │ │ ├── entenc.c │ │ │ ├── entenc.h │ │ │ ├── fixed_c5x.h │ │ │ ├── fixed_c6x.h │ │ │ ├── fixed_debug.h │ │ │ ├── fixed_generic.h │ │ │ ├── float_cast.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── laplace.c │ │ │ ├── laplace.h │ │ │ ├── mathops.c │ │ │ ├── mathops.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mfrngcod.h │ │ │ ├── mips │ │ │ │ ├── celt_mipsr1.h │ │ │ │ ├── fixed_generic_mipsr1.h │ │ │ │ ├── kiss_fft_mipsr1.h │ │ │ │ ├── mdct_mipsr1.h │ │ │ │ ├── pitch_mipsr1.h │ │ │ │ └── vq_mipsr1.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── opus_custom_demo.c │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── static_modes_fixed.h │ │ │ ├── static_modes_fixed_arm_ne10.h │ │ │ ├── static_modes_float.h │ │ │ ├── static_modes_float_arm_ne10.h │ │ │ ├── vq.c │ │ │ ├── vq.h │ │ │ └── x86 │ │ │ │ ├── celt_lpc_sse.c │ │ │ │ ├── celt_lpc_sse.h │ │ │ │ ├── pitch_sse.c │ │ │ │ ├── pitch_sse.h │ │ │ │ ├── pitch_sse2.c │ │ │ │ ├── pitch_sse4_1.c │ │ │ │ ├── vq_sse.h │ │ │ │ ├── vq_sse2.c │ │ │ │ ├── x86_celt_map.c │ │ │ │ ├── x86cpu.c │ │ │ │ └── x86cpu.h │ │ ├── config.h │ │ ├── include │ │ │ ├── opus.h │ │ │ ├── opus_custom.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ └── opus_types.h │ │ ├── silk │ │ │ ├── A2NLSF.c │ │ │ ├── API.h │ │ │ ├── CNG.c │ │ │ ├── HP_variable_cutoff.c │ │ │ ├── Inlines.h │ │ │ ├── LPC_analysis_filter.c │ │ │ ├── LPC_fit.c │ │ │ ├── LPC_inv_pred_gain.c │ │ │ ├── LP_variable_cutoff.c │ │ │ ├── MacroCount.h │ │ │ ├── MacroDebug.h │ │ │ ├── NLSF2A.c │ │ │ ├── NLSF_VQ.c │ │ │ ├── NLSF_VQ_weights_laroia.c │ │ │ ├── NLSF_decode.c │ │ │ ├── NLSF_del_dec_quant.c │ │ │ ├── NLSF_encode.c │ │ │ ├── NLSF_stabilize.c │ │ │ ├── NLSF_unpack.c │ │ │ ├── NSQ.c │ │ │ ├── NSQ.h │ │ │ ├── NSQ_del_dec.c │ │ │ ├── PLC.c │ │ │ ├── PLC.h │ │ │ ├── SigProc_FIX.h │ │ │ ├── VAD.c │ │ │ ├── VQ_WMat_EC.c │ │ │ ├── ana_filt_bank_1.c │ │ │ ├── arm │ │ │ │ ├── LPC_inv_pred_gain_arm.h │ │ │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ │ │ ├── NSQ_del_dec_arm.h │ │ │ │ ├── NSQ_del_dec_neon_intr.c │ │ │ │ ├── NSQ_neon.c │ │ │ │ ├── NSQ_neon.h │ │ │ │ ├── SigProc_FIX_armv4.h │ │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ │ ├── arm_silk_map.c │ │ │ │ ├── biquad_alt_arm.h │ │ │ │ ├── biquad_alt_neon_intr.c │ │ │ │ ├── macros_arm64.h │ │ │ │ ├── macros_armv4.h │ │ │ │ └── macros_armv5e.h │ │ │ ├── biquad_alt.c │ │ │ ├── bwexpander.c │ │ │ ├── bwexpander_32.c │ │ │ ├── check_control_input.c │ │ │ ├── code_signs.c │ │ │ ├── control.h │ │ │ ├── control_SNR.c │ │ │ ├── control_audio_bandwidth.c │ │ │ ├── control_codec.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dec_API.c │ │ │ ├── decode_core.c │ │ │ ├── decode_frame.c │ │ │ ├── decode_indices.c │ │ │ ├── decode_parameters.c │ │ │ ├── decode_pitch.c │ │ │ ├── decode_pulses.c │ │ │ ├── decoder_set_fs.c │ │ │ ├── define.h │ │ │ ├── enc_API.c │ │ │ ├── encode_indices.c │ │ │ ├── encode_pulses.c │ │ │ ├── errors.h │ │ │ ├── fixed │ │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ │ ├── apply_sine_window_FIX.c │ │ │ │ ├── arm │ │ │ │ │ ├── warped_autocorrelation_FIX_arm.h │ │ │ │ │ └── warped_autocorrelation_FIX_neon_intr.c │ │ │ │ ├── autocorr_FIX.c │ │ │ │ ├── burg_modified_FIX.c │ │ │ │ ├── corrMatrix_FIX.c │ │ │ │ ├── encode_frame_FIX.c │ │ │ │ ├── find_LPC_FIX.c │ │ │ │ ├── find_LTP_FIX.c │ │ │ │ ├── find_pitch_lags_FIX.c │ │ │ │ ├── find_pred_coefs_FIX.c │ │ │ │ ├── k2a_FIX.c │ │ │ │ ├── k2a_Q16_FIX.c │ │ │ │ ├── main_FIX.h │ │ │ │ ├── mips │ │ │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ │ │ ├── prefilter_FIX_mipsr1.h │ │ │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ │ ├── process_gains_FIX.c │ │ │ │ ├── regularize_correlations_FIX.c │ │ │ │ ├── residual_energy16_FIX.c │ │ │ │ ├── residual_energy_FIX.c │ │ │ │ ├── schur64_FIX.c │ │ │ │ ├── schur_FIX.c │ │ │ │ ├── structs_FIX.h │ │ │ │ ├── vector_ops_FIX.c │ │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ │ └── x86 │ │ │ │ │ ├── burg_modified_FIX_sse.c │ │ │ │ │ ├── prefilter_FIX_sse.c │ │ │ │ │ └── vector_ops_FIX_sse.c │ │ │ ├── float │ │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ │ ├── SigProc_FLP.h │ │ │ │ ├── apply_sine_window_FLP.c │ │ │ │ ├── autocorrelation_FLP.c │ │ │ │ ├── burg_modified_FLP.c │ │ │ │ ├── bwexpander_FLP.c │ │ │ │ ├── corrMatrix_FLP.c │ │ │ │ ├── encode_frame_FLP.c │ │ │ │ ├── energy_FLP.c │ │ │ │ ├── find_LPC_FLP.c │ │ │ │ ├── find_LTP_FLP.c │ │ │ │ ├── find_pitch_lags_FLP.c │ │ │ │ ├── find_pred_coefs_FLP.c │ │ │ │ ├── inner_product_FLP.c │ │ │ │ ├── k2a_FLP.c │ │ │ │ ├── main_FLP.h │ │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ │ ├── process_gains_FLP.c │ │ │ │ ├── regularize_correlations_FLP.c │ │ │ │ ├── residual_energy_FLP.c │ │ │ │ ├── scale_copy_vector_FLP.c │ │ │ │ ├── scale_vector_FLP.c │ │ │ │ ├── schur_FLP.c │ │ │ │ ├── sort_FLP.c │ │ │ │ ├── structs_FLP.h │ │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ │ └── wrappers_FLP.c │ │ │ ├── gain_quant.c │ │ │ ├── init_decoder.c │ │ │ ├── init_encoder.c │ │ │ ├── inner_prod_aligned.c │ │ │ ├── interpolate.c │ │ │ ├── lin2log.c │ │ │ ├── log2lin.c │ │ │ ├── macros.h │ │ │ ├── main.h │ │ │ ├── mips │ │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ │ ├── macros_mipsr1.h │ │ │ │ └── sigproc_fix_mipsr1.h │ │ │ ├── pitch_est_defines.h │ │ │ ├── pitch_est_tables.c │ │ │ ├── process_NLSFs.c │ │ │ ├── quant_LTP_gains.c │ │ │ ├── resampler.c │ │ │ ├── resampler_down2.c │ │ │ ├── resampler_down2_3.c │ │ │ ├── resampler_private.h │ │ │ ├── resampler_private_AR2.c │ │ │ ├── resampler_private_IIR_FIR.c │ │ │ ├── resampler_private_down_FIR.c │ │ │ ├── resampler_private_up2_HQ.c │ │ │ ├── resampler_rom.c │ │ │ ├── resampler_rom.h │ │ │ ├── resampler_structs.h │ │ │ ├── shell_coder.c │ │ │ ├── sigm_Q15.c │ │ │ ├── sort.c │ │ │ ├── stereo_LR_to_MS.c │ │ │ ├── stereo_MS_to_LR.c │ │ │ ├── stereo_decode_pred.c │ │ │ ├── stereo_encode_pred.c │ │ │ ├── stereo_find_predictor.c │ │ │ ├── stereo_quant_pred.c │ │ │ ├── structs.h │ │ │ ├── sum_sqr_shift.c │ │ │ ├── table_LSF_cos.c │ │ │ ├── tables.h │ │ │ ├── tables_LTP.c │ │ │ ├── tables_NLSF_CB_NB_MB.c │ │ │ ├── tables_NLSF_CB_WB.c │ │ │ ├── tables_gain.c │ │ │ ├── tables_other.c │ │ │ ├── tables_pitch_lag.c │ │ │ ├── tables_pulses_per_block.c │ │ │ ├── tuning_parameters.h │ │ │ ├── typedef.h │ │ │ └── x86 │ │ │ │ ├── NSQ_del_dec_sse.c │ │ │ │ ├── NSQ_sse.c │ │ │ │ ├── SigProc_FIX_sse.h │ │ │ │ ├── VAD_sse.c │ │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ │ ├── main_sse.h │ │ │ │ └── x86_silk_map.c │ │ ├── src │ │ │ ├── analysis.c │ │ │ ├── analysis.h │ │ │ ├── mlp.c │ │ │ ├── mlp.h │ │ │ ├── mlp_data.c │ │ │ ├── mlp_train.c │ │ │ ├── mlp_train.h │ │ │ ├── opus.c │ │ │ ├── opus_compare.c │ │ │ ├── opus_decoder.c │ │ │ ├── opus_demo.c │ │ │ ├── opus_encoder.c │ │ │ ├── opus_multistream.c │ │ │ ├── opus_multistream_decoder.c │ │ │ ├── opus_multistream_encoder.c │ │ │ ├── opus_private.h │ │ │ ├── repacketizer.c │ │ │ ├── repacketizer_demo.c │ │ │ └── tansig_table.h │ │ └── version.h │ ├── third_party │ │ └── x86inc │ │ │ ├── LICENSE │ │ │ ├── README.libvpx │ │ │ └── x86inc.asm │ ├── vorbis │ │ ├── analysisvorbis.c │ │ ├── backends.h │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdctvorbis.c │ │ ├── mdctvorbis.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── window.c │ │ └── window.h │ ├── vp8 │ │ ├── common │ │ │ ├── alloccommon.c │ │ │ ├── alloccommon.h │ │ │ ├── arm │ │ │ │ ├── loopfilter_arm.c │ │ │ │ └── neon │ │ │ │ │ ├── bilinearpredict_neon.c │ │ │ │ │ ├── copymem_neon.c │ │ │ │ │ ├── dc_only_idct_add_neon.c │ │ │ │ │ ├── dequant_idct_neon.c │ │ │ │ │ ├── dequantizeb_neon.c │ │ │ │ │ ├── idct_blk_neon.c │ │ │ │ │ ├── idct_dequant_0_2x_neon.c │ │ │ │ │ ├── idct_dequant_full_2x_neon.c │ │ │ │ │ ├── iwalsh_neon.c │ │ │ │ │ ├── loopfiltersimplehorizontaledge_neon.c │ │ │ │ │ ├── loopfiltersimpleverticaledge_neon.c │ │ │ │ │ ├── mbloopfilter_neon.c │ │ │ │ │ ├── shortidct4x4llm_neon.c │ │ │ │ │ ├── sixtappredict_neon.c │ │ │ │ │ └── vp8_loopfilter_neon.c │ │ │ ├── blockd.c │ │ │ ├── blockd.h │ │ │ ├── coefupdateprobs.h │ │ │ ├── common.h │ │ │ ├── context.c │ │ │ ├── copy_c.c │ │ │ ├── debugmodes.c │ │ │ ├── default_coef_probs.h │ │ │ ├── dequantize.c │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── entropymode.c │ │ │ ├── entropymode.h │ │ │ ├── entropymv.c │ │ │ ├── entropymv.h │ │ │ ├── extend.c │ │ │ ├── extend.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── findnearmv.c │ │ │ ├── findnearmv.h │ │ │ ├── generic │ │ │ │ └── systemdependent.c │ │ │ ├── header.h │ │ │ ├── idct_blk.c │ │ │ ├── idctllm.c │ │ │ ├── invtrans.h │ │ │ ├── loopfilter.h │ │ │ ├── loopfilter_filters.c │ │ │ ├── mbpitch.c │ │ │ ├── mfqe.c │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── dequantize_dspr2.c │ │ │ │ │ ├── filter_dspr2.c │ │ │ │ │ ├── idct_blk_dspr2.c │ │ │ │ │ ├── idctllm_dspr2.c │ │ │ │ │ ├── reconinter_dspr2.c │ │ │ │ │ └── vp8_loopfilter_filters_dspr2.c │ │ │ │ └── msa │ │ │ │ │ ├── bilinear_filter_msa.c │ │ │ │ │ ├── copymem_msa.c │ │ │ │ │ ├── idct_msa.c │ │ │ │ │ ├── loopfilter_filters_msa.c │ │ │ │ │ ├── mfqe_msa.c │ │ │ │ │ ├── sixtap_filter_msa.c │ │ │ │ │ └── vp8_macros_msa.h │ │ │ ├── modecont.c │ │ │ ├── modecont.h │ │ │ ├── mv.h │ │ │ ├── onyx.h │ │ │ ├── onyxc_int.h │ │ │ ├── onyxd.h │ │ │ ├── postproc.c │ │ │ ├── postproc.h │ │ │ ├── ppflags.h │ │ │ ├── quant_common.c │ │ │ ├── quant_common.h │ │ │ ├── reconinter.c │ │ │ ├── reconinter.h │ │ │ ├── reconintra.c │ │ │ ├── reconintra.h │ │ │ ├── reconintra4x4.c │ │ │ ├── reconintra4x4.h │ │ │ ├── rtcd.c │ │ │ ├── rtcd_defs.pl │ │ │ ├── setupintrarecon.c │ │ │ ├── setupintrarecon.h │ │ │ ├── swapyv12buffer.c │ │ │ ├── swapyv12buffer.h │ │ │ ├── systemdependent.h │ │ │ ├── threading.h │ │ │ ├── treecoder.c │ │ │ ├── treecoder.h │ │ │ ├── vp8_entropymodedata.h │ │ │ ├── vp8_loopfilter.c │ │ │ ├── vp8_skin_detection.c │ │ │ ├── vp8_skin_detection.h │ │ │ └── x86 │ │ │ │ ├── copy_sse2.asm │ │ │ │ ├── copy_sse3.asm │ │ │ │ ├── dequantize_mmx.asm │ │ │ │ ├── filter_x86.c │ │ │ │ ├── filter_x86.h │ │ │ │ ├── idct_blk_mmx.c │ │ │ │ ├── idct_blk_sse2.c │ │ │ │ ├── idctllm_mmx.asm │ │ │ │ ├── idctllm_sse2.asm │ │ │ │ ├── iwalsh_sse2.asm │ │ │ │ ├── loopfilter_block_sse2_x86_64.asm │ │ │ │ ├── loopfilter_sse2.asm │ │ │ │ ├── loopfilter_x86.c │ │ │ │ ├── mfqe_sse2.asm │ │ │ │ ├── recon_mmx.asm │ │ │ │ ├── recon_sse2.asm │ │ │ │ ├── subpixel_mmx.asm │ │ │ │ ├── subpixel_sse2.asm │ │ │ │ ├── subpixel_ssse3.asm │ │ │ │ └── vp8_asm_stubs.c │ │ ├── decoder │ │ │ ├── dboolhuff.c │ │ │ ├── dboolhuff.h │ │ │ ├── decodeframe.c │ │ │ ├── decodemv.c │ │ │ ├── decodemv.h │ │ │ ├── decoderthreading.h │ │ │ ├── detokenize.c │ │ │ ├── detokenize.h │ │ │ ├── ec_types.h │ │ │ ├── error_concealment.c │ │ │ ├── error_concealment.h │ │ │ ├── onyxd_if.c │ │ │ ├── onyxd_int.h │ │ │ ├── threading.c │ │ │ └── treereader.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── denoising_neon.c │ │ │ │ │ ├── fastquantizeb_neon.c │ │ │ │ │ ├── shortfdct_neon.c │ │ │ │ │ └── vp8_shortwalsh4x4_neon.c │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── block.h │ │ │ ├── boolhuff.c │ │ │ ├── boolhuff.h │ │ │ ├── dct.c │ │ │ ├── dct_value_cost.h │ │ │ ├── dct_value_tokens.h │ │ │ ├── defaultcoefcounts.h │ │ │ ├── denoising.c │ │ │ ├── denoising.h │ │ │ ├── encodeframe.c │ │ │ ├── encodeframe.h │ │ │ ├── encodeintra.c │ │ │ ├── encodeintra.h │ │ │ ├── encodemb.c │ │ │ ├── encodemb.h │ │ │ ├── encodemv.c │ │ │ ├── encodemv.h │ │ │ ├── ethreading.c │ │ │ ├── firstpass.c │ │ │ ├── firstpass.h │ │ │ ├── lookahead.c │ │ │ ├── lookahead.h │ │ │ ├── mcomp.c │ │ │ ├── mcomp.h │ │ │ ├── mips │ │ │ │ └── msa │ │ │ │ │ ├── dct_msa.c │ │ │ │ │ ├── denoising_msa.c │ │ │ │ │ ├── encodeopt_msa.c │ │ │ │ │ ├── quantize_msa.c │ │ │ │ │ └── temporal_filter_msa.c │ │ │ ├── modecosts.c │ │ │ ├── modecosts.h │ │ │ ├── mr_dissim.c │ │ │ ├── mr_dissim.h │ │ │ ├── onyx_if.c │ │ │ ├── onyx_int.h │ │ │ ├── pickinter.c │ │ │ ├── pickinter.h │ │ │ ├── picklpf.c │ │ │ ├── quantize.h │ │ │ ├── ratectrl.c │ │ │ ├── ratectrl.h │ │ │ ├── rdopt.c │ │ │ ├── rdopt.h │ │ │ ├── segmentation.c │ │ │ ├── segmentation.h │ │ │ ├── temporal_filter.c │ │ │ ├── tokenize.c │ │ │ ├── tokenize.h │ │ │ ├── treewriter.c │ │ │ ├── treewriter.h │ │ │ ├── vp8_quantize.c │ │ │ └── x86 │ │ │ │ ├── dct_sse2.asm │ │ │ │ ├── denoising_sse2.c │ │ │ │ ├── encodeopt.asm │ │ │ │ ├── fwalsh_sse2.asm │ │ │ │ ├── quantize_mmx.asm │ │ │ │ ├── quantize_sse4.c │ │ │ │ ├── quantize_ssse3.c │ │ │ │ ├── temporal_filter_apply_sse2.asm │ │ │ │ ├── vp8_enc_stubs_mmx.c │ │ │ │ ├── vp8_enc_stubs_sse2.c │ │ │ │ └── vp8_quantize_sse2.c │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── vp8_cx_iface.c │ │ └── vp8_dx_iface.c │ ├── vp8_rtcd.h │ ├── vp8_rtcd_arm.h │ ├── vp8_rtcd_x86.h │ ├── vp9 │ │ ├── common │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_iht4x4_add_neon.c │ │ │ │ │ └── vp9_iht8x8_add_neon.c │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── vp9_itrans16_dspr2.c │ │ │ │ │ ├── vp9_itrans4_dspr2.c │ │ │ │ │ └── vp9_itrans8_dspr2.c │ │ │ │ └── msa │ │ │ │ │ ├── vp9_idct16x16_msa.c │ │ │ │ │ ├── vp9_idct4x4_msa.c │ │ │ │ │ ├── vp9_idct8x8_msa.c │ │ │ │ │ └── vp9_mfqe_msa.c │ │ │ ├── vp9_alloccommon.c │ │ │ ├── vp9_alloccommon.h │ │ │ ├── vp9_blockd.c │ │ │ ├── vp9_blockd.h │ │ │ ├── vp9_common.h │ │ │ ├── vp9_common_data.c │ │ │ ├── vp9_common_data.h │ │ │ ├── vp9_debugmodes.c │ │ │ ├── vp9_entropy.c │ │ │ ├── vp9_entropy.h │ │ │ ├── vp9_entropymode.c │ │ │ ├── vp9_entropymode.h │ │ │ ├── vp9_entropymv.c │ │ │ ├── vp9_entropymv.h │ │ │ ├── vp9_enums.h │ │ │ ├── vp9_filter.c │ │ │ ├── vp9_filter.h │ │ │ ├── vp9_frame_buffers.c │ │ │ ├── vp9_frame_buffers.h │ │ │ ├── vp9_idct.c │ │ │ ├── vp9_idct.h │ │ │ ├── vp9_loopfilter.c │ │ │ ├── vp9_loopfilter.h │ │ │ ├── vp9_mfqe.c │ │ │ ├── vp9_mfqe.h │ │ │ ├── vp9_mv.h │ │ │ ├── vp9_mvref_common.c │ │ │ ├── vp9_mvref_common.h │ │ │ ├── vp9_onyxc_int.h │ │ │ ├── vp9_postproc.c │ │ │ ├── vp9_postproc.h │ │ │ ├── vp9_ppflags.h │ │ │ ├── vp9_pred_common.c │ │ │ ├── vp9_pred_common.h │ │ │ ├── vp9_quant_common.c │ │ │ ├── vp9_quant_common.h │ │ │ ├── vp9_reconinter.c │ │ │ ├── vp9_reconinter.h │ │ │ ├── vp9_reconintra.c │ │ │ ├── vp9_reconintra.h │ │ │ ├── vp9_rtcd.c │ │ │ ├── vp9_rtcd_defs.pl │ │ │ ├── vp9_scale.c │ │ │ ├── vp9_scale.h │ │ │ ├── vp9_scan.c │ │ │ ├── vp9_scan.h │ │ │ ├── vp9_seg_common.c │ │ │ ├── vp9_seg_common.h │ │ │ ├── vp9_thread_common.c │ │ │ ├── vp9_thread_common.h │ │ │ ├── vp9_tile_common.c │ │ │ ├── vp9_tile_common.h │ │ │ └── x86 │ │ │ │ ├── vp9_idct_intrin_sse2.c │ │ │ │ └── vp9_mfqe_sse2.asm │ │ ├── decoder │ │ │ ├── vp9_decodeframe.c │ │ │ ├── vp9_decodeframe.h │ │ │ ├── vp9_decodemv.c │ │ │ ├── vp9_decodemv.h │ │ │ ├── vp9_decoder.c │ │ │ ├── vp9_decoder.h │ │ │ ├── vp9_detokenize.c │ │ │ ├── vp9_detokenize.h │ │ │ ├── vp9_dsubexp.c │ │ │ ├── vp9_dsubexp.h │ │ │ ├── vp9_dthread.c │ │ │ └── vp9_dthread.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_dct_neon.c │ │ │ │ │ ├── vp9_denoiser_neon.c │ │ │ │ │ ├── vp9_error_neon.c │ │ │ │ │ └── vp9_quantize_neon.c │ │ │ ├── mips │ │ │ │ └── msa │ │ │ │ │ ├── vp9_error_msa.c │ │ │ │ │ ├── vp9_fdct16x16_msa.c │ │ │ │ │ ├── vp9_fdct4x4_msa.c │ │ │ │ │ ├── vp9_fdct8x8_msa.c │ │ │ │ │ └── vp9_fdct_msa.h │ │ │ ├── vp9_alt_ref_aq.c │ │ │ ├── vp9_alt_ref_aq.h │ │ │ ├── vp9_aq_360.c │ │ │ ├── vp9_aq_360.h │ │ │ ├── vp9_aq_complexity.c │ │ │ ├── vp9_aq_complexity.h │ │ │ ├── vp9_aq_cyclicrefresh.c │ │ │ ├── vp9_aq_cyclicrefresh.h │ │ │ ├── vp9_aq_variance.c │ │ │ ├── vp9_aq_variance.h │ │ │ ├── vp9_bitstream.c │ │ │ ├── vp9_bitstream.h │ │ │ ├── vp9_block.h │ │ │ ├── vp9_blockiness.c │ │ │ ├── vp9_context_tree.c │ │ │ ├── vp9_context_tree.h │ │ │ ├── vp9_cost.c │ │ │ ├── vp9_cost.h │ │ │ ├── vp9_dct.c │ │ │ ├── vp9_denoiser.c │ │ │ ├── vp9_denoiser.h │ │ │ ├── vp9_encodeframe.c │ │ │ ├── vp9_encodeframe.h │ │ │ ├── vp9_encodemb.c │ │ │ ├── vp9_encodemb.h │ │ │ ├── vp9_encodemv.c │ │ │ ├── vp9_encodemv.h │ │ │ ├── vp9_encoder.c │ │ │ ├── vp9_encoder.h │ │ │ ├── vp9_ethread.c │ │ │ ├── vp9_ethread.h │ │ │ ├── vp9_extend.c │ │ │ ├── vp9_extend.h │ │ │ ├── vp9_firstpass.c │ │ │ ├── vp9_firstpass.h │ │ │ ├── vp9_frame_scale.c │ │ │ ├── vp9_job_queue.h │ │ │ ├── vp9_lookahead.c │ │ │ ├── vp9_lookahead.h │ │ │ ├── vp9_mbgraph.c │ │ │ ├── vp9_mbgraph.h │ │ │ ├── vp9_mcomp.c │ │ │ ├── vp9_mcomp.h │ │ │ ├── vp9_multi_thread.c │ │ │ ├── vp9_multi_thread.h │ │ │ ├── vp9_noise_estimate.c │ │ │ ├── vp9_noise_estimate.h │ │ │ ├── vp9_picklpf.c │ │ │ ├── vp9_picklpf.h │ │ │ ├── vp9_pickmode.c │ │ │ ├── vp9_pickmode.h │ │ │ ├── vp9_quantize.c │ │ │ ├── vp9_quantize.h │ │ │ ├── vp9_ratectrl.c │ │ │ ├── vp9_ratectrl.h │ │ │ ├── vp9_rd.c │ │ │ ├── vp9_rd.h │ │ │ ├── vp9_rdopt.c │ │ │ ├── vp9_rdopt.h │ │ │ ├── vp9_resize.c │ │ │ ├── vp9_resize.h │ │ │ ├── vp9_segmentation.c │ │ │ ├── vp9_segmentation.h │ │ │ ├── vp9_skin_detection.c │ │ │ ├── vp9_skin_detection.h │ │ │ ├── vp9_speed_features.c │ │ │ ├── vp9_speed_features.h │ │ │ ├── vp9_subexp.c │ │ │ ├── vp9_subexp.h │ │ │ ├── vp9_svc_layercontext.c │ │ │ ├── vp9_svc_layercontext.h │ │ │ ├── vp9_temporal_filter.c │ │ │ ├── vp9_temporal_filter.h │ │ │ ├── vp9_tokenize.c │ │ │ ├── vp9_tokenize.h │ │ │ ├── vp9_treewriter.c │ │ │ ├── vp9_treewriter.h │ │ │ └── x86 │ │ │ │ ├── temporal_filter_sse4.c │ │ │ │ ├── vp9_dct_intrin_sse2.c │ │ │ │ ├── vp9_dct_sse2.asm │ │ │ │ ├── vp9_dct_ssse3.c │ │ │ │ ├── vp9_denoiser_sse2.c │ │ │ │ ├── vp9_diamond_search_sad_avx.c │ │ │ │ ├── vp9_error_avx2.c │ │ │ │ ├── vp9_error_sse2.asm │ │ │ │ ├── vp9_frame_scale_ssse3.c │ │ │ │ ├── vp9_highbd_block_error_intrin_sse2.c │ │ │ │ ├── vp9_quantize_sse2.c │ │ │ │ └── vp9_quantize_ssse3_x86_64.asm │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── vp9_cx_iface.c │ │ ├── vp9_dx_iface.c │ │ ├── vp9_dx_iface.h │ │ └── vp9_iface_common.h │ ├── vp9_rtcd.h │ ├── vp9_rtcd_arm.h │ ├── vp9_rtcd_x86.h │ ├── vpx.def │ ├── vpx │ │ ├── exports_com │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── exports_spatial_svc │ │ ├── internal │ │ │ └── vpx_codec_internal.h │ │ ├── src │ │ │ ├── svc_encodeframe.c │ │ │ ├── vpx_codec.c │ │ │ ├── vpx_decoder.c │ │ │ ├── vpx_encoder.c │ │ │ └── vpx_image.c │ │ ├── svc_context.h │ │ ├── vp8.h │ │ ├── vp8cx.h │ │ ├── vp8dx.h │ │ ├── vpx_codec.h │ │ ├── vpx_decoder.h │ │ ├── vpx_encoder.h │ │ ├── vpx_frame_buffer.h │ │ ├── vpx_image.h │ │ └── vpx_integer.h │ ├── vpx_config.asm │ ├── vpx_config.c │ ├── vpx_config.h │ ├── vpx_config_32.asm │ ├── vpx_config_64.asm │ ├── vpx_dsp │ │ ├── add_noise.c │ │ ├── arm │ │ │ ├── avg_neon.c │ │ │ ├── avg_pred_neon.c │ │ │ ├── deblock_neon.c │ │ │ ├── fdct16x16_neon.c │ │ │ ├── fdct_neon.c │ │ │ ├── fwd_txfm_neon.c │ │ │ ├── hadamard_neon.c │ │ │ ├── highbd_idct16x16_add_neon.c │ │ │ ├── highbd_idct32x32_1024_add_neon.c │ │ │ ├── highbd_idct32x32_135_add_neon.c │ │ │ ├── highbd_idct32x32_34_add_neon.c │ │ │ ├── highbd_idct32x32_add_neon.c │ │ │ ├── highbd_idct4x4_add_neon.c │ │ │ ├── highbd_idct8x8_add_neon.c │ │ │ ├── highbd_intrapred_neon.c │ │ │ ├── highbd_loopfilter_neon.c │ │ │ ├── highbd_vpx_convolve8_neon.c │ │ │ ├── highbd_vpx_convolve_avg_neon.c │ │ │ ├── highbd_vpx_convolve_copy_neon.c │ │ │ ├── highbd_vpx_convolve_neon.c │ │ │ ├── idct16x16_1_add_neon.c │ │ │ ├── idct16x16_add_neon.c │ │ │ ├── idct32x32_135_add_neon.c │ │ │ ├── idct32x32_1_add_neon.c │ │ │ ├── idct32x32_34_add_neon.c │ │ │ ├── idct32x32_add_neon.c │ │ │ ├── idct4x4_1_add_neon.asm │ │ │ ├── idct4x4_1_add_neon.c │ │ │ ├── idct4x4_add_neon.asm │ │ │ ├── idct4x4_add_neon.c │ │ │ ├── idct8x8_1_add_neon.c │ │ │ ├── idct8x8_add_neon.c │ │ │ ├── idct_neon.asm │ │ │ ├── idct_neon.h │ │ │ ├── intrapred_neon.c │ │ │ ├── intrapred_neon_asm.asm │ │ │ ├── loopfilter_16_neon.asm │ │ │ ├── loopfilter_4_neon.asm │ │ │ ├── loopfilter_8_neon.asm │ │ │ ├── loopfilter_neon.c │ │ │ ├── mem_neon.h │ │ │ ├── sad4d_neon.c │ │ │ ├── sad_neon.c │ │ │ ├── save_reg_neon.asm │ │ │ ├── subpel_variance_neon.c │ │ │ ├── subtract_neon.c │ │ │ ├── transpose_neon.h │ │ │ ├── variance_neon.c │ │ │ ├── vpx_convolve8_avg_neon_asm.asm │ │ │ ├── vpx_convolve8_neon.c │ │ │ ├── vpx_convolve8_neon_asm.asm │ │ │ ├── vpx_convolve_avg_neon.c │ │ │ ├── vpx_convolve_avg_neon_asm.asm │ │ │ ├── vpx_convolve_copy_neon.c │ │ │ ├── vpx_convolve_copy_neon_asm.asm │ │ │ └── vpx_convolve_neon.c │ │ ├── avg.c │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bitreader_buffer.c │ │ ├── bitreader_buffer.h │ │ ├── bitwriter.c │ │ ├── bitwriter.h │ │ ├── bitwriter_buffer.c │ │ ├── bitwriter_buffer.h │ │ ├── deblock.c │ │ ├── fastssim.c │ │ ├── fwd_txfm.c │ │ ├── fwd_txfm.h │ │ ├── intrapred.c │ │ ├── inv_txfm.c │ │ ├── inv_txfm.h │ │ ├── loopfilter.c │ │ ├── mips │ │ │ ├── add_noise_msa.c │ │ │ ├── avg_msa.c │ │ │ ├── common_dspr2.c │ │ │ ├── common_dspr2.h │ │ │ ├── convolve2_avg_dspr2.c │ │ │ ├── convolve2_avg_horiz_dspr2.c │ │ │ ├── convolve2_dspr2.c │ │ │ ├── convolve2_horiz_dspr2.c │ │ │ ├── convolve2_vert_dspr2.c │ │ │ ├── convolve8_avg_dspr2.c │ │ │ ├── convolve8_avg_horiz_dspr2.c │ │ │ ├── convolve8_dspr2.c │ │ │ ├── convolve8_horiz_dspr2.c │ │ │ ├── convolve8_vert_dspr2.c │ │ │ ├── convolve_common_dspr2.h │ │ │ ├── deblock_msa.c │ │ │ ├── fwd_dct32x32_msa.c │ │ │ ├── fwd_txfm_msa.c │ │ │ ├── fwd_txfm_msa.h │ │ │ ├── idct16x16_msa.c │ │ │ ├── idct32x32_msa.c │ │ │ ├── idct4x4_msa.c │ │ │ ├── idct8x8_msa.c │ │ │ ├── intrapred16_dspr2.c │ │ │ ├── intrapred4_dspr2.c │ │ │ ├── intrapred8_dspr2.c │ │ │ ├── intrapred_msa.c │ │ │ ├── inv_txfm_dspr2.h │ │ │ ├── inv_txfm_msa.h │ │ │ ├── itrans16_dspr2.c │ │ │ ├── itrans32_cols_dspr2.c │ │ │ ├── itrans32_dspr2.c │ │ │ ├── itrans4_dspr2.c │ │ │ ├── itrans8_dspr2.c │ │ │ ├── loopfilter_16_msa.c │ │ │ ├── loopfilter_4_msa.c │ │ │ ├── loopfilter_8_msa.c │ │ │ ├── loopfilter_filters_dspr2.c │ │ │ ├── loopfilter_filters_dspr2.h │ │ │ ├── loopfilter_macros_dspr2.h │ │ │ ├── loopfilter_masks_dspr2.h │ │ │ ├── loopfilter_mb_dspr2.c │ │ │ ├── loopfilter_mb_horiz_dspr2.c │ │ │ ├── loopfilter_mb_vert_dspr2.c │ │ │ ├── loopfilter_msa.h │ │ │ ├── macros_msa.h │ │ │ ├── sad_msa.c │ │ │ ├── sub_pixel_variance_msa.c │ │ │ ├── subtract_msa.c │ │ │ ├── sum_squares_msa.c │ │ │ ├── txfm_macros_msa.h │ │ │ ├── variance_msa.c │ │ │ ├── vpx_convolve8_avg_horiz_msa.c │ │ │ ├── vpx_convolve8_avg_msa.c │ │ │ ├── vpx_convolve8_avg_vert_msa.c │ │ │ ├── vpx_convolve8_horiz_msa.c │ │ │ ├── vpx_convolve8_msa.c │ │ │ ├── vpx_convolve8_vert_msa.c │ │ │ ├── vpx_convolve_avg_msa.c │ │ │ ├── vpx_convolve_copy_msa.c │ │ │ └── vpx_convolve_msa.h │ │ ├── postproc.h │ │ ├── ppc │ │ │ ├── bitdepth_conversion_vsx.h │ │ │ ├── hadamard_vsx.c │ │ │ ├── intrapred_vsx.c │ │ │ ├── sad_vsx.c │ │ │ ├── transpose_vsx.h │ │ │ ├── types_vsx.h │ │ │ ├── variance_vsx.c │ │ │ └── vpx_convolve_vsx.c │ │ ├── prob.c │ │ ├── prob.h │ │ ├── psnr.c │ │ ├── psnr.h │ │ ├── psnrhvs.c │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── sad.c │ │ ├── skin_detection.c │ │ ├── skin_detection.h │ │ ├── ssim.c │ │ ├── ssim.h │ │ ├── subtract.c │ │ ├── sum_squares.c │ │ ├── txfm_common.h │ │ ├── variance.c │ │ ├── variance.h │ │ ├── vpx_convolve.c │ │ ├── vpx_convolve.h │ │ ├── vpx_dsp_common.h │ │ ├── vpx_dsp_rtcd.c │ │ ├── vpx_dsp_rtcd_defs.pl │ │ ├── vpx_filter.h │ │ └── x86 │ │ │ ├── add_noise_sse2.asm │ │ │ ├── avg_intrin_sse2.c │ │ │ ├── avg_pred_sse2.c │ │ │ ├── avg_ssse3_x86_64.asm │ │ │ ├── bitdepth_conversion_avx2.h │ │ │ ├── bitdepth_conversion_sse2.asm │ │ │ ├── bitdepth_conversion_sse2.h │ │ │ ├── convolve.h │ │ │ ├── deblock_sse2.asm │ │ │ ├── fwd_dct32x32_impl_avx2.h │ │ │ ├── fwd_dct32x32_impl_sse2.h │ │ │ ├── fwd_txfm_avx2.c │ │ │ ├── fwd_txfm_impl_sse2.h │ │ │ ├── fwd_txfm_sse2.c │ │ │ ├── fwd_txfm_sse2.h │ │ │ ├── fwd_txfm_ssse3_x86_64.asm │ │ │ ├── highbd_convolve_avx2.c │ │ │ ├── highbd_idct16x16_add_sse2.c │ │ │ ├── highbd_idct32x32_add_sse2.c │ │ │ ├── highbd_idct4x4_add_sse2.c │ │ │ ├── highbd_idct8x8_add_sse2.c │ │ │ ├── highbd_intrapred_sse2.asm │ │ │ ├── highbd_inv_txfm_sse2.h │ │ │ ├── highbd_loopfilter_sse2.c │ │ │ ├── highbd_quantize_intrin_sse2.c │ │ │ ├── highbd_sad4d_sse2.asm │ │ │ ├── highbd_sad_sse2.asm │ │ │ ├── highbd_subpel_variance_impl_sse2.asm │ │ │ ├── highbd_variance_impl_sse2.asm │ │ │ ├── highbd_variance_sse2.c │ │ │ ├── intrapred_sse2.asm │ │ │ ├── intrapred_ssse3.asm │ │ │ ├── inv_txfm_sse2.c │ │ │ ├── inv_txfm_sse2.h │ │ │ ├── inv_txfm_ssse3.c │ │ │ ├── inv_wht_sse2.asm │ │ │ ├── loopfilter_avx2.c │ │ │ ├── loopfilter_sse2.c │ │ │ ├── quantize_avx_x86_64.asm │ │ │ ├── quantize_sse2.c │ │ │ ├── quantize_ssse3_x86_64.asm │ │ │ ├── sad4d_avx2.c │ │ │ ├── sad4d_sse2.asm │ │ │ ├── sad_avx2.c │ │ │ ├── sad_sse2.asm │ │ │ ├── sad_sse3.asm │ │ │ ├── sad_sse4.asm │ │ │ ├── sad_ssse3.asm │ │ │ ├── ssim_opt_x86_64.asm │ │ │ ├── subpel_variance_sse2.asm │ │ │ ├── subtract_sse2.asm │ │ │ ├── sum_squares_sse2.c │ │ │ ├── transpose_sse2.h │ │ │ ├── txfm_common_sse2.h │ │ │ ├── variance_avx2.c │ │ │ ├── variance_impl_avx2.c │ │ │ ├── variance_sse2.c │ │ │ ├── vpx_asm_stubs.c │ │ │ ├── vpx_convolve_copy_sse2.asm │ │ │ ├── vpx_high_subpixel_8t_sse2.asm │ │ │ ├── vpx_high_subpixel_bilinear_sse2.asm │ │ │ ├── vpx_subpixel_8t_intrin_avx2.c │ │ │ ├── vpx_subpixel_8t_intrin_ssse3.c │ │ │ ├── vpx_subpixel_8t_sse2.asm │ │ │ ├── vpx_subpixel_8t_ssse3.asm │ │ │ ├── vpx_subpixel_bilinear_sse2.asm │ │ │ └── vpx_subpixel_bilinear_ssse3.asm │ ├── vpx_dsp_rtcd.h │ ├── vpx_dsp_rtcd_arm.h │ ├── vpx_dsp_rtcd_x86.h │ ├── vpx_mem │ │ ├── include │ │ │ └── vpx_mem_intrnl.h │ │ ├── vpx_mem.c │ │ └── vpx_mem.h │ ├── vpx_ports │ │ ├── arm.h │ │ ├── arm_cpudetect.c │ │ ├── bitops.h │ │ ├── config.h │ │ ├── emmintrin_compat.h │ │ ├── emms.asm │ │ ├── mem.h │ │ ├── mem_ops.h │ │ ├── mem_ops_aligned.h │ │ ├── msvc.h │ │ ├── ppc.h │ │ ├── ppc_cpudetect.c │ │ ├── system_state.h │ │ ├── vpx_once.h │ │ ├── vpx_timer.h │ │ ├── x86.h │ │ └── x86_abi_support.asm │ ├── vpx_scale │ │ ├── generic │ │ │ ├── gen_scalers.c │ │ │ ├── vpx_scale.c │ │ │ ├── yv12config.c │ │ │ └── yv12extend.c │ │ ├── mips │ │ │ └── dspr2 │ │ │ │ └── yv12extend_dspr2.c │ │ ├── vpx_scale.h │ │ ├── vpx_scale_rtcd.c │ │ ├── vpx_scale_rtcd.pl │ │ └── yv12config.h │ ├── vpx_scale_rtcd.h │ ├── vpx_scale_rtcd_arm.h │ ├── vpx_scale_rtcd_x86.h │ ├── vpx_util │ │ ├── endian_inl.h │ │ ├── vpx_thread.c │ │ ├── vpx_thread.h │ │ ├── vpx_write_yuv_frame.c │ │ └── vpx_write_yuv_frame.h │ ├── vpx_version.h │ ├── webm │ │ ├── common │ │ │ └── webmids.h │ │ ├── mkvmuxer │ │ │ └── mkvmuxertypes.h │ │ └── mkvparser │ │ │ ├── mkvparser.cc │ │ │ └── mkvparser.h │ └── yuv2rgb.h │ ├── yasm │ └── yasm.exe └── proj ├── bulllord-android.vcxproj ├── bulllord-android.vcxproj.filters ├── bulllord-ios.xcodeproj ├── project.pbxproj └── xcuserdata │ ├── marilyndafa.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── zhoubo.xcuserdatad │ └── xcschemes │ ├── bulllord.xcscheme │ └── xcschememanagement.plist ├── bulllord-linux.vcxproj ├── bulllord-osx.xcodeproj ├── project.pbxproj ├── xcshareddata │ └── xcschemes │ │ └── bulllord.xcscheme └── xcuserdata │ ├── marilyndafa.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── zhoubo.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── bulllord-uwp.vcxproj ├── bulllord-uwp.vcxproj.filters ├── bulllord-web.vcxproj ├── bulllord-win32.vcxproj ├── bulllord-win32.vcxproj.filters ├── bulllord.sln ├── bulllord.vcxitems ├── bulllord.vcxitems.filters └── bulllord.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata └── IDEWorkspaceChecks.plist └── xcuserdata ├── marilyndafa.xcuserdatad ├── UserInterfaceState.xcuserstate └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── zhoubo.xcuserdatad ├── UserInterfaceState.xcuserstate ├── WorkspaceSettings.xcsettings └── xcdebugger └── Breakpoints_v2.xcbkptlist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/README.md -------------------------------------------------------------------------------- /code/externals/astc/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/astc.h -------------------------------------------------------------------------------- /code/externals/astc/astc_block_sizes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/astc_block_sizes2.c -------------------------------------------------------------------------------- /code/externals/astc/astc_quantization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/astc_quantization.c -------------------------------------------------------------------------------- /code/externals/astc/astc_toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/astc_toplevel.c -------------------------------------------------------------------------------- /code/externals/astc/astc_weight_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/astc_weight_align.c -------------------------------------------------------------------------------- /code/externals/astc/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/softfloat.c -------------------------------------------------------------------------------- /code/externals/astc/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/astc/softfloat.h -------------------------------------------------------------------------------- /code/externals/fastlz/fastlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/fastlz/fastlz.c -------------------------------------------------------------------------------- /code/externals/fastlz/fastlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/fastlz/fastlz.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftapi.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftbase.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftbase.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftbbox.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftbdf.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftcalc.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftcid.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftgasp.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/fthash.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftinit.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftmac.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftmm.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftobjs.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftpfr.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftpic.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/ftutil.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/md5.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/base/md5.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/bdf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/bdf/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/bdf/README -------------------------------------------------------------------------------- /code/externals/freetype2/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/bdf/bdf.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/bdf/bdf.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/cff/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/cff/cf2ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/cff/cf2ft.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/cff/cf2ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/cff/cf2ft.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/cff/cff.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/cid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/cid/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/gzip/zlib.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/lzw/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/lzw/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/pcf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pcf/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pcf/README -------------------------------------------------------------------------------- /code/externals/freetype2/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pcf/pcf.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pcf/pcf.h -------------------------------------------------------------------------------- /code/externals/freetype2/src/pfr/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pfr/Jamfile -------------------------------------------------------------------------------- /code/externals/freetype2/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/pfr/pfr.c -------------------------------------------------------------------------------- /code/externals/freetype2/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/freetype2/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /code/externals/gl/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/gl/glcorearb.h -------------------------------------------------------------------------------- /code/externals/gl/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/gl/glxext.h -------------------------------------------------------------------------------- /code/externals/gl/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/gl/wglext.h -------------------------------------------------------------------------------- /code/externals/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz.c -------------------------------------------------------------------------------- /code/externals/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz.h -------------------------------------------------------------------------------- /code/externals/miniz/miniz_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz_common.h -------------------------------------------------------------------------------- /code/externals/miniz/miniz_tdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz_tdef.c -------------------------------------------------------------------------------- /code/externals/miniz/miniz_tdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz_tdef.h -------------------------------------------------------------------------------- /code/externals/miniz/miniz_tinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz_tinfl.c -------------------------------------------------------------------------------- /code/externals/miniz/miniz_tinfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/miniz/miniz_tinfl.h -------------------------------------------------------------------------------- /code/externals/mpaudec/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/bits.c -------------------------------------------------------------------------------- /code/externals/mpaudec/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/internal.h -------------------------------------------------------------------------------- /code/externals/mpaudec/mpaudec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/mpaudec.c -------------------------------------------------------------------------------- /code/externals/mpaudec/mpaudec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/mpaudec.h -------------------------------------------------------------------------------- /code/externals/mpaudec/mpaudectab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/mpaudectab.h -------------------------------------------------------------------------------- /code/externals/mpaudec/mpegaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/mpaudec/mpegaudio.h -------------------------------------------------------------------------------- /code/externals/quickjs/bjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/bjson.c -------------------------------------------------------------------------------- /code/externals/quickjs/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/cutils.c -------------------------------------------------------------------------------- /code/externals/quickjs/cutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/cutils.h -------------------------------------------------------------------------------- /code/externals/quickjs/libbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libbf.c -------------------------------------------------------------------------------- /code/externals/quickjs/libbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libbf.h -------------------------------------------------------------------------------- /code/externals/quickjs/libregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libregexp.c -------------------------------------------------------------------------------- /code/externals/quickjs/libregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libregexp.h -------------------------------------------------------------------------------- /code/externals/quickjs/libunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libunicode.c -------------------------------------------------------------------------------- /code/externals/quickjs/libunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/libunicode.h -------------------------------------------------------------------------------- /code/externals/quickjs/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/list.h -------------------------------------------------------------------------------- /code/externals/quickjs/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/pthread.c -------------------------------------------------------------------------------- /code/externals/quickjs/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/pthread.h -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs-atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs-atom.h -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs-libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs-libc.c -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs-libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs-libc.h -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs-opcode.h -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs.c -------------------------------------------------------------------------------- /code/externals/quickjs/quickjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/quickjs.h -------------------------------------------------------------------------------- /code/externals/quickjs/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/stdatomic.h -------------------------------------------------------------------------------- /code/externals/quickjs/sys/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/sys/time.c -------------------------------------------------------------------------------- /code/externals/quickjs/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/quickjs/sys/time.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/alpha_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/alphai_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/alphai_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/buffer_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/common_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/common_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/frame_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/idec_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/io_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/quant_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/tree_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/vp8_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/vp8_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/vp8_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/vp8i_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/vp8i_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/vp8l_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/vp8li_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/vp8li_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dec/webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/webp_dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dec/webpi_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dec/webpi_dec.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/cost.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/cpu.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/dsp.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_avx2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_msa.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/filters.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/lossless.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/lossless.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/neon.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/rescaler.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/ssim.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/ssim_sse2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/upsampling.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv.h -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv_neon.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /code/externals/webp/src/dsp/yuv_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/dsp/yuv_sse41.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/alpha_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/alpha_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/config_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/config_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/cost_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/cost_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/cost_enc.h -------------------------------------------------------------------------------- /code/externals/webp/src/enc/filter_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/filter_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/frame_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/frame_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/quant_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/quant_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/syntax_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/syntax_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/token_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/token_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/tree_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/tree_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/vp8i_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/vp8i_enc.h -------------------------------------------------------------------------------- /code/externals/webp/src/enc/vp8l_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/vp8l_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/enc/vp8li_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/vp8li_enc.h -------------------------------------------------------------------------------- /code/externals/webp/src/enc/webp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/enc/webp_enc.c -------------------------------------------------------------------------------- /code/externals/webp/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/utils/utils.c -------------------------------------------------------------------------------- /code/externals/webp/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/utils/utils.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/config.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/decode.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/demux.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/encode.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/mux.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/mux_types.h -------------------------------------------------------------------------------- /code/externals/webp/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/webp/src/webp/types.h -------------------------------------------------------------------------------- /code/externals/xml/ezxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/xml/ezxml.c -------------------------------------------------------------------------------- /code/externals/xml/ezxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/externals/xml/ezxml.h -------------------------------------------------------------------------------- /code/headers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/.DS_Store -------------------------------------------------------------------------------- /code/headers/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/audio.h -------------------------------------------------------------------------------- /code/headers/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/gpu.h -------------------------------------------------------------------------------- /code/headers/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/network.h -------------------------------------------------------------------------------- /code/headers/prerequisites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/prerequisites.h -------------------------------------------------------------------------------- /code/headers/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/sprite.h -------------------------------------------------------------------------------- /code/headers/streamio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/streamio.h -------------------------------------------------------------------------------- /code/headers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/system.h -------------------------------------------------------------------------------- /code/headers/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/ui.h -------------------------------------------------------------------------------- /code/headers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/headers/util.h -------------------------------------------------------------------------------- /code/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/.DS_Store -------------------------------------------------------------------------------- /code/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/array.c -------------------------------------------------------------------------------- /code/src/audio.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/audio.xc -------------------------------------------------------------------------------- /code/src/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/dictionary.c -------------------------------------------------------------------------------- /code/src/gpu.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/gpu.xc -------------------------------------------------------------------------------- /code/src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal.c -------------------------------------------------------------------------------- /code/src/internal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/.DS_Store -------------------------------------------------------------------------------- /code/src/internal/SHADER_2D.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/SHADER_2D.bsl -------------------------------------------------------------------------------- /code/src/internal/SHADER_2D_GLOW.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/SHADER_2D_GLOW.bsl -------------------------------------------------------------------------------- /code/src/internal/SHADER_2D_INSTANCE.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/SHADER_2D_INSTANCE.bsl -------------------------------------------------------------------------------- /code/src/internal/SHADER_2D_STROKE.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/SHADER_2D_STROKE.bsl -------------------------------------------------------------------------------- /code/src/internal/SHADER_LINE.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/SHADER_LINE.bsl -------------------------------------------------------------------------------- /code/src/internal/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/array.h -------------------------------------------------------------------------------- /code/src/internal/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/dictionary.h -------------------------------------------------------------------------------- /code/src/internal/gpucommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpucommon.c -------------------------------------------------------------------------------- /code/src/internal/gpucommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpucommon.h -------------------------------------------------------------------------------- /code/src/internal/gpudx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpudx.h -------------------------------------------------------------------------------- /code/src/internal/gpugl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpugl.h -------------------------------------------------------------------------------- /code/src/internal/gpumtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpumtl.h -------------------------------------------------------------------------------- /code/src/internal/gpuvk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/gpuvk.h -------------------------------------------------------------------------------- /code/src/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/internal.h -------------------------------------------------------------------------------- /code/src/internal/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/list.h -------------------------------------------------------------------------------- /code/src/internal/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/mathematics.h -------------------------------------------------------------------------------- /code/src/internal/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/internal/thread.h -------------------------------------------------------------------------------- /code/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/list.c -------------------------------------------------------------------------------- /code/src/mathematics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/mathematics.c -------------------------------------------------------------------------------- /code/src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/network.c -------------------------------------------------------------------------------- /code/src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/sprite.c -------------------------------------------------------------------------------- /code/src/streamio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/streamio.c -------------------------------------------------------------------------------- /code/src/system.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/system.xc -------------------------------------------------------------------------------- /code/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/thread.c -------------------------------------------------------------------------------- /code/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/ui.c -------------------------------------------------------------------------------- /code/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/code/src/util.c -------------------------------------------------------------------------------- /covenant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/covenant -------------------------------------------------------------------------------- /icons/Pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/icons/Pack.jpg -------------------------------------------------------------------------------- /icons/UIdesigner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/icons/UIdesigner.jpg -------------------------------------------------------------------------------- /icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/icons/logo.png -------------------------------------------------------------------------------- /icons/textool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/icons/textool.jpg -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk-linux.vcxproj -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk-web.vcxproj -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk-win32.vcxproj -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk.vcxitems -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/chipmunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/chipmunk.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/chipmunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/chipmunk.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/chipmunk_ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/chipmunk_ffi.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpArbiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpArbiter.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpArbiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpArbiter.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpArray.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpBB.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpBBTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpBBTree.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpBody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpBody.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpBody.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpCollision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpCollision.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpConstraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpConstraint.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpConstraint.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpGearJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpGearJoint.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpGearJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpGearJoint.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpHashSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpHashSet.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpMarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpMarch.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpMarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpMarch.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPinJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPinJoint.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPinJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPinJoint.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPivotJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPivotJoint.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPivotJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPivotJoint.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPolyShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPolyShape.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpPolyShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpPolyShape.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpRobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpRobust.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpRobust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpRobust.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpShape.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpShape.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSlideJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSlideJoint.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSlideJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSlideJoint.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpace.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpace.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpaceDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpaceDebug.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpaceHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpaceHash.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpaceQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpaceQuery.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSpaceStep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSpaceStep.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpSweep1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpSweep1D.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpTransform.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/cpVect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/cpVect.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunk/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunk/prime.h -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunkentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunkentry.c -------------------------------------------------------------------------------- /plugins/chipmunk/chipmunkentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/chipmunk/chipmunkentry.h -------------------------------------------------------------------------------- /plugins/encrypt/encrpt-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrpt-linux.vcxproj -------------------------------------------------------------------------------- /plugins/encrypt/encrypt-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt-android.vcxproj -------------------------------------------------------------------------------- /plugins/encrypt/encrypt-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt-uwp.vcxproj -------------------------------------------------------------------------------- /plugins/encrypt/encrypt-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt-web.vcxproj -------------------------------------------------------------------------------- /plugins/encrypt/encrypt-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt-win32.vcxproj -------------------------------------------------------------------------------- /plugins/encrypt/encrypt.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt.vcxitems -------------------------------------------------------------------------------- /plugins/encrypt/encrypt.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encrypt.vcxitems.filters -------------------------------------------------------------------------------- /plugins/encrypt/encryptentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encryptentry.c -------------------------------------------------------------------------------- /plugins/encrypt/encryptentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/encryptentry.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aes.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aes.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aesni.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aesni.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/arc4.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/arc4.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aria.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/aria.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/asn1.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/asn1parse.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/asn1write.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/asn1write.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/base64.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/base64.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/bignum.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/bignum.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/blowfish.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/blowfish.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/camellia.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/camellia.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ccm.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ccm.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/certs.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/certs.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/check_config.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/cipher.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/cipher.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/cipher_wrap.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/cmac.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/cmac.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/compat-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/compat-1.3.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/config.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ctr_drbg.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/debug.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/debug.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/des.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/des.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/dhm.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/dhm.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecdh.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecdh.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecdsa.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecjpake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecjpake.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecjpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecjpake.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecp.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecp.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecp_curves.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ecp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ecp_internal.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/entropy.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/entropy.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/entropy_poll.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/error.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/error.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/gcm.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/gcm.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/havege.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/havege.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/hmac_drbg.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md2.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md2.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md4.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md4.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md5.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md5.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md_internal.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/md_wrap.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/net.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/net_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/net_sockets.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/net_sockets.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/oid.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/oid.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/padlock.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/padlock.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pem.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pem.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pk.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pk.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pk_wrap.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs11.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs12.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs5.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkparse.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/pkwrite.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/platform.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/platform.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/platform_time.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/platform_util.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/platform_util.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ripemd160.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/rsa.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/rsa.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/rsa_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/rsa_internal.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/rsa_internal.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha1.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha1.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha256.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha256.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha512.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/sha512.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_cache.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_cli.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_cookie.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_srv.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_ticket.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/ssl_tls.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/threading.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/threading.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/timing.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/timing.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/version.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/version.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_create.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_crl.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_crt.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_csr.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509write_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509write_crt.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/x509write_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/x509write_csr.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/xtea.c -------------------------------------------------------------------------------- /plugins/encrypt/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/encrypt/mbedtls/xtea.h -------------------------------------------------------------------------------- /plugins/iap/iap-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap-android.vcxproj -------------------------------------------------------------------------------- /plugins/iap/iap-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap-linux.vcxproj -------------------------------------------------------------------------------- /plugins/iap/iap-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap-uwp.vcxproj -------------------------------------------------------------------------------- /plugins/iap/iap-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap-web.vcxproj -------------------------------------------------------------------------------- /plugins/iap/iap-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap-win32.vcxproj -------------------------------------------------------------------------------- /plugins/iap/iap.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap.vcxitems -------------------------------------------------------------------------------- /plugins/iap/iap.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iap.vcxitems.filters -------------------------------------------------------------------------------- /plugins/iap/iapentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iapentry.h -------------------------------------------------------------------------------- /plugins/iap/iapentry.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/iap/iapentry.xc -------------------------------------------------------------------------------- /plugins/spine/spine-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-android.vcxproj -------------------------------------------------------------------------------- /plugins/spine/spine-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-linux.vcxproj -------------------------------------------------------------------------------- /plugins/spine/spine-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-uwp.vcxproj -------------------------------------------------------------------------------- /plugins/spine/spine-uwp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-uwp.vcxproj.filters -------------------------------------------------------------------------------- /plugins/spine/spine-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-web.vcxproj -------------------------------------------------------------------------------- /plugins/spine/spine-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine-win32.vcxproj -------------------------------------------------------------------------------- /plugins/spine/spine.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine.vcxitems -------------------------------------------------------------------------------- /plugins/spine/spine.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine.vcxitems.filters -------------------------------------------------------------------------------- /plugins/spine/spine/Animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Animation.c -------------------------------------------------------------------------------- /plugins/spine/spine/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Animation.h -------------------------------------------------------------------------------- /plugins/spine/spine/AnimationState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AnimationState.c -------------------------------------------------------------------------------- /plugins/spine/spine/AnimationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AnimationState.h -------------------------------------------------------------------------------- /plugins/spine/spine/AnimationStateData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AnimationStateData.c -------------------------------------------------------------------------------- /plugins/spine/spine/AnimationStateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AnimationStateData.h -------------------------------------------------------------------------------- /plugins/spine/spine/Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Array.c -------------------------------------------------------------------------------- /plugins/spine/spine/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Array.h -------------------------------------------------------------------------------- /plugins/spine/spine/Atlas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Atlas.c -------------------------------------------------------------------------------- /plugins/spine/spine/Atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Atlas.h -------------------------------------------------------------------------------- /plugins/spine/spine/Attachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Attachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/Attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Attachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/AttachmentLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AttachmentLoader.c -------------------------------------------------------------------------------- /plugins/spine/spine/AttachmentLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/AttachmentLoader.h -------------------------------------------------------------------------------- /plugins/spine/spine/Bone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Bone.c -------------------------------------------------------------------------------- /plugins/spine/spine/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Bone.h -------------------------------------------------------------------------------- /plugins/spine/spine/BoneData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/BoneData.c -------------------------------------------------------------------------------- /plugins/spine/spine/BoneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/BoneData.h -------------------------------------------------------------------------------- /plugins/spine/spine/ClippingAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/ClippingAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/ClippingAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/ClippingAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/Color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Color.c -------------------------------------------------------------------------------- /plugins/spine/spine/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Color.h -------------------------------------------------------------------------------- /plugins/spine/spine/Event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Event.c -------------------------------------------------------------------------------- /plugins/spine/spine/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Event.h -------------------------------------------------------------------------------- /plugins/spine/spine/EventData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/EventData.c -------------------------------------------------------------------------------- /plugins/spine/spine/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/EventData.h -------------------------------------------------------------------------------- /plugins/spine/spine/IkConstraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/IkConstraint.c -------------------------------------------------------------------------------- /plugins/spine/spine/IkConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/IkConstraint.h -------------------------------------------------------------------------------- /plugins/spine/spine/IkConstraintData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/IkConstraintData.c -------------------------------------------------------------------------------- /plugins/spine/spine/IkConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/IkConstraintData.h -------------------------------------------------------------------------------- /plugins/spine/spine/Json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Json.c -------------------------------------------------------------------------------- /plugins/spine/spine/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Json.h -------------------------------------------------------------------------------- /plugins/spine/spine/MeshAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/MeshAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/MeshAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/MeshAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/PathAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/PathAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/PathConstraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathConstraint.c -------------------------------------------------------------------------------- /plugins/spine/spine/PathConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathConstraint.h -------------------------------------------------------------------------------- /plugins/spine/spine/PathConstraintData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathConstraintData.c -------------------------------------------------------------------------------- /plugins/spine/spine/PathConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PathConstraintData.h -------------------------------------------------------------------------------- /plugins/spine/spine/PointAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PointAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/PointAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/PointAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/RegionAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/RegionAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/RegionAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/RegionAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/Skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Skeleton.c -------------------------------------------------------------------------------- /plugins/spine/spine/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Skeleton.h -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonBinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonBinary.c -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonBinary.h -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonBounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonBounds.c -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonBounds.h -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonClipping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonClipping.c -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonClipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonClipping.h -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonData.c -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonData.h -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonJson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonJson.c -------------------------------------------------------------------------------- /plugins/spine/spine/SkeletonJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SkeletonJson.h -------------------------------------------------------------------------------- /plugins/spine/spine/Skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Skin.c -------------------------------------------------------------------------------- /plugins/spine/spine/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Skin.h -------------------------------------------------------------------------------- /plugins/spine/spine/Slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Slot.c -------------------------------------------------------------------------------- /plugins/spine/spine/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Slot.h -------------------------------------------------------------------------------- /plugins/spine/spine/SlotData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SlotData.c -------------------------------------------------------------------------------- /plugins/spine/spine/SlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/SlotData.h -------------------------------------------------------------------------------- /plugins/spine/spine/Triangulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Triangulator.c -------------------------------------------------------------------------------- /plugins/spine/spine/Triangulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/Triangulator.h -------------------------------------------------------------------------------- /plugins/spine/spine/VertexAttachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/VertexAttachment.c -------------------------------------------------------------------------------- /plugins/spine/spine/VertexAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/VertexAttachment.h -------------------------------------------------------------------------------- /plugins/spine/spine/VertexEffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/VertexEffect.c -------------------------------------------------------------------------------- /plugins/spine/spine/VertexEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/VertexEffect.h -------------------------------------------------------------------------------- /plugins/spine/spine/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/dll.h -------------------------------------------------------------------------------- /plugins/spine/spine/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/extension.c -------------------------------------------------------------------------------- /plugins/spine/spine/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/extension.h -------------------------------------------------------------------------------- /plugins/spine/spine/spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spine/spine.h -------------------------------------------------------------------------------- /plugins/spine/spineentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spineentry.c -------------------------------------------------------------------------------- /plugins/spine/spineentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/spine/spineentry.h -------------------------------------------------------------------------------- /plugins/tmx/AStar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/AStar.c -------------------------------------------------------------------------------- /plugins/tmx/AStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/AStar.h -------------------------------------------------------------------------------- /plugins/tmx/IndexPriorityQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/IndexPriorityQueue.c -------------------------------------------------------------------------------- /plugins/tmx/IndexPriorityQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/IndexPriorityQueue.h -------------------------------------------------------------------------------- /plugins/tmx/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/array.c -------------------------------------------------------------------------------- /plugins/tmx/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/array.h -------------------------------------------------------------------------------- /plugins/tmx/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/dictionary.c -------------------------------------------------------------------------------- /plugins/tmx/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/dictionary.h -------------------------------------------------------------------------------- /plugins/tmx/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/layer.c -------------------------------------------------------------------------------- /plugins/tmx/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/layer.h -------------------------------------------------------------------------------- /plugins/tmx/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/misc.c -------------------------------------------------------------------------------- /plugins/tmx/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/misc.h -------------------------------------------------------------------------------- /plugins/tmx/objectgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/objectgroup.c -------------------------------------------------------------------------------- /plugins/tmx/objectgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/objectgroup.h -------------------------------------------------------------------------------- /plugins/tmx/tmx-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-android.vcxproj -------------------------------------------------------------------------------- /plugins/tmx/tmx-android.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-android.vcxproj.filters -------------------------------------------------------------------------------- /plugins/tmx/tmx-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-linux.vcxproj -------------------------------------------------------------------------------- /plugins/tmx/tmx-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-uwp.vcxproj -------------------------------------------------------------------------------- /plugins/tmx/tmx-uwp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-uwp.vcxproj.filters -------------------------------------------------------------------------------- /plugins/tmx/tmx-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-web.vcxproj -------------------------------------------------------------------------------- /plugins/tmx/tmx-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-win32.vcxproj -------------------------------------------------------------------------------- /plugins/tmx/tmx-win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx-win32.vcxproj.filters -------------------------------------------------------------------------------- /plugins/tmx/tmx.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx.vcxitems -------------------------------------------------------------------------------- /plugins/tmx/tmx.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmx.vcxitems.filters -------------------------------------------------------------------------------- /plugins/tmx/tmxentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmxentry.c -------------------------------------------------------------------------------- /plugins/tmx/tmxentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmxentry.h -------------------------------------------------------------------------------- /plugins/tmx/tmxparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmxparser.c -------------------------------------------------------------------------------- /plugins/tmx/tmxparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/tmx/tmxparser.h -------------------------------------------------------------------------------- /plugins/vg/bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/bezier.c -------------------------------------------------------------------------------- /plugins/vg/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/bezier.h -------------------------------------------------------------------------------- /plugins/vg/curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/curve.c -------------------------------------------------------------------------------- /plugins/vg/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/curve.h -------------------------------------------------------------------------------- /plugins/vg/spline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/spline.c -------------------------------------------------------------------------------- /plugins/vg/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/spline.h -------------------------------------------------------------------------------- /plugins/vg/vg-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-android.vcxproj -------------------------------------------------------------------------------- /plugins/vg/vg-android.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-android.vcxproj.filters -------------------------------------------------------------------------------- /plugins/vg/vg-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-linux.vcxproj -------------------------------------------------------------------------------- /plugins/vg/vg-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-web.vcxproj -------------------------------------------------------------------------------- /plugins/vg/vg-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-win32.vcxproj -------------------------------------------------------------------------------- /plugins/vg/vg-win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg-win32.vcxproj.filters -------------------------------------------------------------------------------- /plugins/vg/vg.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg.vcxitems -------------------------------------------------------------------------------- /plugins/vg/vg.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vg.vcxitems.filters -------------------------------------------------------------------------------- /plugins/vg/vgentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vgentry.c -------------------------------------------------------------------------------- /plugins/vg/vgentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/vg/vgentry.h -------------------------------------------------------------------------------- /plugins/video/video-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-android.vcxproj -------------------------------------------------------------------------------- /plugins/video/video-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-linux.vcxproj -------------------------------------------------------------------------------- /plugins/video/video-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-uwp.vcxproj -------------------------------------------------------------------------------- /plugins/video/video-uwp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-uwp.vcxproj.filters -------------------------------------------------------------------------------- /plugins/video/video-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-web.vcxproj -------------------------------------------------------------------------------- /plugins/video/video-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video-win32.vcxproj -------------------------------------------------------------------------------- /plugins/video/video.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video.vcxitems -------------------------------------------------------------------------------- /plugins/video/video.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/video.vcxitems.filters -------------------------------------------------------------------------------- /plugins/video/videoentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/videoentry.h -------------------------------------------------------------------------------- /plugins/video/videoentry.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/videoentry.xc -------------------------------------------------------------------------------- /plugins/video/webm/ogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/ogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /plugins/video/webm/ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/ogg/src/bitwise.c -------------------------------------------------------------------------------- /plugins/video/webm/ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/ogg/src/framing.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/arch.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/bands.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/bands.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/celt.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/celt.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/celt_lpc.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/celt_lpc.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/cwrs.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/cwrs.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/ecintrin.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entcode.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entcode.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entdec.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entdec.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entenc.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/entenc.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/fixed_c5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/fixed_c5x.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/fixed_c6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/fixed_c6x.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/kiss_fft.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/kiss_fft.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/laplace.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/laplace.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/mathops.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/mathops.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/mdct.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/mdct.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/mfrngcod.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/modes.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/modes.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/pitch.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/pitch.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/rate.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/rate.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/vq.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/celt/vq.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/config.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/include/opus.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/A2NLSF.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/API.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/CNG.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/Inlines.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/LPC_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/LPC_fit.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/NLSF2A.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/NSQ.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/NSQ.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/PLC.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/PLC.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/VAD.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/control.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/debug.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/debug.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/dec_API.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/define.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/enc_API.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/errors.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/lin2log.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/log2lin.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/macros.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/main.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/resampler.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/sigm_Q15.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/sort.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/structs.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/tables.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/silk/typedef.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/analysis.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/analysis.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/mlp.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/mlp.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/mlp_data.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/mlp_train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/mlp_train.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/mlp_train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/mlp_train.h -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/opus.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/src/opus_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/opus/src/opus_demo.c -------------------------------------------------------------------------------- /plugins/video/webm/opus/version.h: -------------------------------------------------------------------------------- 1 | #define PACKAGE_VERSION "unknown" 2 | -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/backends.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/bitrate.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/bitrate.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/block.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/codebook.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/codebook.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/codec.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/envelope.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/envelope.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/floor0.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/floor1.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/highlevel.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/info.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lookup.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lookup.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lookup_data.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lpc.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lpc.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lsp.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/lsp.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/mapping0.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/masking.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/mdctvorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/mdctvorbis.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/mdctvorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/mdctvorbis.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/misc.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/misc.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/os.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/psy.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/psy.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/registry.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/registry.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/res0.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/scales.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/sharedbook.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/smallft.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/smallft.h -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/synthesis.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/window.c -------------------------------------------------------------------------------- /plugins/video/webm/vorbis/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vorbis/window.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/blockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/blockd.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/blockd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/blockd.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/common.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/context.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/copy_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/copy_c.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/entropy.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/entropy.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/extend.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/extend.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/filter.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/filter.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/header.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/idct_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/idct_blk.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/idctllm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/idctllm.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/invtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/invtrans.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/mbpitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/mbpitch.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/mfqe.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/modecont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/modecont.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/modecont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/modecont.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/mv.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/onyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/onyx.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/onyxd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/onyxd.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/postproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/postproc.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/postproc.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/ppflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/ppflags.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/common/rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/common/rtcd.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/block.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/dct.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/mcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/mcomp.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/mcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/mcomp.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/onyx_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/onyx_if.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/picklpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/picklpf.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/rdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/rdopt.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/encoder/rdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/encoder/rdopt.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/exports_dec -------------------------------------------------------------------------------- /plugins/video/webm/vp8/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/exports_enc -------------------------------------------------------------------------------- /plugins/video/webm/vp8/vp8_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/vp8_cx_iface.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8/vp8_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8/vp8_dx_iface.c -------------------------------------------------------------------------------- /plugins/video/webm/vp8_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8_rtcd.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8_rtcd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8_rtcd_arm.h -------------------------------------------------------------------------------- /plugins/video/webm/vp8_rtcd_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp8_rtcd_x86.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_idct.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_idct.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_mfqe.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_mfqe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_mfqe.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_mv.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_rtcd.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_scan.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/common/vp9_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/common/vp9_scan.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/encoder/vp9_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/encoder/vp9_dct.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/encoder/vp9_rd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/encoder/vp9_rd.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/encoder/vp9_rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/encoder/vp9_rd.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/exports_dec -------------------------------------------------------------------------------- /plugins/video/webm/vp9/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/exports_enc -------------------------------------------------------------------------------- /plugins/video/webm/vp9/vp9_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/vp9_cx_iface.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/vp9_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/vp9_dx_iface.c -------------------------------------------------------------------------------- /plugins/video/webm/vp9/vp9_dx_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9/vp9_dx_iface.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9_rtcd.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9_rtcd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9_rtcd_arm.h -------------------------------------------------------------------------------- /plugins/video/webm/vp9_rtcd_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vp9_rtcd_x86.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx.def -------------------------------------------------------------------------------- /plugins/video/webm/vpx/exports_com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/exports_com -------------------------------------------------------------------------------- /plugins/video/webm/vpx/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/exports_dec -------------------------------------------------------------------------------- /plugins/video/webm/vpx/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/exports_enc -------------------------------------------------------------------------------- /plugins/video/webm/vpx/src/vpx_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/src/vpx_codec.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx/src/vpx_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/src/vpx_decoder.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx/src/vpx_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/src/vpx_encoder.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx/src/vpx_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/src/vpx_image.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx/svc_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/svc_context.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vp8.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vp8cx.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vp8dx.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vpx_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vpx_codec.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vpx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vpx_decoder.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vpx_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vpx_encoder.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vpx_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vpx_image.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx/vpx_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx/vpx_integer.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_config.asm -------------------------------------------------------------------------------- /plugins/video/webm/vpx_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_config.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_config.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_config_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_config_32.asm -------------------------------------------------------------------------------- /plugins/video/webm/vpx_config_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_config_64.asm -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/add_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/add_noise.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/avg.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/bitreader.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/bitreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/bitreader.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/bitwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/bitwriter.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/bitwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/bitwriter.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/deblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/deblock.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/fastssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/fastssim.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/fwd_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/fwd_txfm.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/fwd_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/fwd_txfm.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/intrapred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/intrapred.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/inv_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/inv_txfm.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/inv_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/inv_txfm.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/loopfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/loopfilter.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/postproc.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/ppc/sad_vsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/ppc/sad_vsx.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/prob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/prob.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/prob.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/psnr.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/psnr.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/psnrhvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/psnrhvs.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/quantize.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/quantize.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/sad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/sad.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/ssim.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/ssim.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/subtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/subtract.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/sum_squares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/sum_squares.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/txfm_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/txfm_common.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/variance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/variance.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/variance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/variance.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp/vpx_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp/vpx_filter.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp_rtcd.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp_rtcd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp_rtcd_arm.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_dsp_rtcd_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_dsp_rtcd_x86.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_mem/vpx_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_mem/vpx_mem.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_mem/vpx_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_mem/vpx_mem.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/arm.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/bitops.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/config.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/emms.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/emms.asm -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/mem.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/mem_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/mem_ops.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/msvc.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/ppc.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/vpx_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/vpx_once.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/vpx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/vpx_timer.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_ports/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_ports/x86.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_scale/vpx_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_scale/vpx_scale.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_scale_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_scale_rtcd.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_scale_rtcd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_scale_rtcd_arm.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_scale_rtcd_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_scale_rtcd_x86.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_util/endian_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_util/endian_inl.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_util/vpx_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_util/vpx_thread.c -------------------------------------------------------------------------------- /plugins/video/webm/vpx_util/vpx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_util/vpx_thread.h -------------------------------------------------------------------------------- /plugins/video/webm/vpx_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/vpx_version.h -------------------------------------------------------------------------------- /plugins/video/webm/webm/common/webmids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/webm/common/webmids.h -------------------------------------------------------------------------------- /plugins/video/webm/yuv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/webm/yuv2rgb.h -------------------------------------------------------------------------------- /plugins/video/yasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/yasm -------------------------------------------------------------------------------- /plugins/video/yasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/plugins/video/yasm.exe -------------------------------------------------------------------------------- /proj/bulllord-android.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-android.vcxproj -------------------------------------------------------------------------------- /proj/bulllord-android.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-android.vcxproj.filters -------------------------------------------------------------------------------- /proj/bulllord-linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-linux.vcxproj -------------------------------------------------------------------------------- /proj/bulllord-uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-uwp.vcxproj -------------------------------------------------------------------------------- /proj/bulllord-uwp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-uwp.vcxproj.filters -------------------------------------------------------------------------------- /proj/bulllord-web.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-web.vcxproj -------------------------------------------------------------------------------- /proj/bulllord-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-win32.vcxproj -------------------------------------------------------------------------------- /proj/bulllord-win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord-win32.vcxproj.filters -------------------------------------------------------------------------------- /proj/bulllord.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord.sln -------------------------------------------------------------------------------- /proj/bulllord.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord.vcxitems -------------------------------------------------------------------------------- /proj/bulllord.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarilynDafa/Bulllord-Engine/HEAD/proj/bulllord.vcxitems.filters --------------------------------------------------------------------------------