├── .cvsignore ├── CHANGELOG.txt ├── distrib ├── AVS_UI.exe ├── AVS_UI.rc ├── AviSynth_2.5.nsi ├── AviSynth_Template.reg ├── Examples │ ├── Audio.avs │ ├── Authors.avs │ ├── Editing.avs │ ├── Equalizer Presets.zip │ ├── Processing.avs │ ├── Syntax.avs │ └── Version.avs ├── Languages │ ├── AVS_Czech.nsh │ ├── AVS_English.nsh │ ├── AVS_French.nsh │ ├── AVS_German.nsh │ ├── AVS_Greek.nsh │ ├── AVS_Italian.nsh │ ├── AVS_Japanese.nsh │ ├── AVS_Polish.nsh │ ├── AVS_Portuguese.nsh │ ├── AVS_PortugueseBR.nsh │ └── AVS_Russian.nsh ├── Un_AviSynth.ico ├── bin │ ├── avisynth_c.dll │ ├── debug │ │ └── devil-d.dll │ ├── devil.dll │ └── msvcp60.dll ├── color_presets │ ├── colors_rgb.avsi │ └── colors_rgb.txt ├── docs │ ├── english.chm │ ├── german.chm │ └── pictures.chm ├── ffvfwAVIS.exe ├── gpl-cs.txt ├── gpl-de.txt ├── gpl-el.txt ├── gpl-fr.txt ├── gpl-it.txt ├── gpl-ja.txt ├── gpl-pl.txt ├── gpl-pt.txt ├── gpl-pt_br.txt ├── gpl-ru.txt ├── gpl.txt ├── include │ ├── SoftWire │ │ ├── Assembler.cpp │ │ ├── Assembler.hpp │ │ ├── CodeGenerator.cpp │ │ ├── CodeGenerator.hpp │ │ ├── Emulator.cpp │ │ ├── Emulator.hpp │ │ ├── Encoding.cpp │ │ ├── Encoding.hpp │ │ ├── Error.cpp │ │ ├── Error.hpp │ │ ├── Instruction.cpp │ │ ├── Instruction.hpp │ │ ├── InstructionSet.cpp │ │ ├── InstructionSet.hpp │ │ ├── Intrinsics.hpp │ │ ├── License.txt │ │ ├── Link.hpp │ │ ├── Linker.cpp │ │ ├── Linker.hpp │ │ ├── Loader.cpp │ │ ├── Loader.hpp │ │ ├── Operand.cpp │ │ ├── Operand.hpp │ │ ├── Optimizer.cpp │ │ ├── Optimizer.hpp │ │ ├── RegisterAllocator.cpp │ │ ├── RegisterAllocator.hpp │ │ ├── SoftWire.dsp │ │ ├── StaticLibrary-VC8.vcproj │ │ ├── String.hpp │ │ ├── Synthesizer.cpp │ │ ├── Synthesizer.hpp │ │ └── Whence.txt │ ├── SoundTouch │ │ ├── 3dnow_win.cpp │ │ ├── AAFilter.cpp │ │ ├── AAFilter.h │ │ ├── BPMDetect.h │ │ ├── COPYING.TXT │ │ ├── FIFOSampleBuffer.cpp │ │ ├── FIFOSampleBuffer.h │ │ ├── FIFOSamplePipe.h │ │ ├── FIRFilter.cpp │ │ ├── FIRFilter.h │ │ ├── InterpolateShannon.cpp │ │ ├── RateTransposer.cpp │ │ ├── RateTransposer.h │ │ ├── STTypes.h │ │ ├── SoundTouch.cpp │ │ ├── SoundTouch.dsp │ │ ├── SoundTouch.h │ │ ├── SoundTouch.vcproj │ │ ├── TDStretch.cpp │ │ ├── TDStretch.h │ │ ├── cpu_detect.h │ │ ├── cpu_detect_x86_gcc.cpp │ │ ├── cpu_detect_x86_win.cpp │ │ ├── mmx_optimized.cpp │ │ ├── sse_optimized.cpp │ │ └── whence.txt │ ├── il │ │ └── il.h │ └── pfc │ │ ├── bit_array.h │ │ ├── bit_array_impl.h │ │ ├── byte_order_helper.cpp │ │ ├── byte_order_helper.h │ │ ├── cfg_memblock.h │ │ ├── cfg_var.cpp │ │ ├── cfg_var.h │ │ ├── chainlist.h │ │ ├── critsec.h │ │ ├── foobar2000.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── license.txt │ │ ├── list.h │ │ ├── mem_block.cpp │ │ ├── mem_block.h │ │ ├── mem_block_mgr.h │ │ ├── other.h │ │ ├── pfc.dsp │ │ ├── pfc.h │ │ ├── pfc.vcproj │ │ ├── profiler.cpp │ │ ├── profiler.h │ │ ├── ptr_list.cpp │ │ ├── ptr_list.h │ │ ├── stdafx.cpp │ │ ├── string.cpp │ │ ├── string.h │ │ └── utf8.cpp ├── lgpl_for_used_libs.txt ├── lib │ ├── DevIL.lib │ └── debug │ │ └── DevIL-d.lib ├── off.bmp ├── on.bmp └── upx.exe ├── filtersdk ├── AMDOptimizationGuide.htm ├── AVSLinkage.html ├── AssemblerOptimizing.htm ├── AviSynthInterfaceVersion.htm ├── AviSynthTwoFiveAudio.htm ├── AviSynthTwoFivePixelType.htm ├── AviSynthTwoFiveSDK.htm ├── BensAviSynthDocs.htm ├── C_api.htm ├── ChangeFrameSize.htm ├── ColorSpaces.htm ├── ColorspaceProperties.htm ├── CompilingAvisynthPlugins.htm ├── Cplusplus_api.htm ├── DataAlignment.htm ├── DataStorageInAviSynth.htm ├── DebuggingAvisynthPlugins.htm ├── DualPlugins.htm ├── EnvInvoke.htm ├── EnvSaveString.htm ├── FilterSDK.htm ├── GeneralPurposeToMMXRegisters.htm ├── GettingStartedWithAudio.htm ├── GradientMask.htm ├── InstructionPairing.htm ├── IntegerSSE.htm ├── IntelOptimizationGuide.htm ├── InterleavedImageFormat.htm ├── IntermediateMmxOptimization.htm ├── InternalFunctions.htm ├── InvertNeg.htm ├── IsMovntqFaster.htm ├── MMX.htm ├── Non-ClipSample.htm ├── Pictures │ ├── Compiling_plugins_msvc2010_001.jpg │ ├── Compiling_plugins_msvc2010_002.jpg │ ├── Compiling_plugins_msvc2010_003.jpg │ ├── Compiling_plugins_msvc2010_004.jpg │ ├── Compiling_plugins_msvc2010_005.jpg │ ├── Compiling_plugins_msvc2010_006.jpg │ ├── Compiling_plugins_msvc2010_007.jpg │ ├── Compiling_plugins_msvc2010_008.jpg │ ├── Compiling_plugins_msvc2010_009.jpg │ ├── Debugging_con_applications_msvc2010_001.jpg │ ├── Debugging_con_applications_msvc2010_002.jpg │ ├── Debugging_exported_functions_001.jpg │ ├── Debugging_plugins_msvc2010_001.jpg │ ├── Debugging_plugins_msvc2010_002.jpg │ ├── Debugging_plugins_msvc2010_003.jpg │ ├── Debugging_plugins_msvc2010_004.jpg │ ├── Debugging_plugins_msvc2010_005.jpg │ ├── compiling_plugins.png │ ├── compiling_plugins2.png │ ├── compiling_plugins3.png │ ├── compiling_plugins4.png │ ├── compiling_plugins5.png │ ├── debugging_plugins1a.png │ ├── debugging_plugins1b.png │ ├── debugging_plugins2.png │ ├── debugging_plugins3.png │ ├── debugging_plugins4.png │ ├── debugging_plugins5.png │ ├── debugging_plugins6.png │ └── debugging_plugins7.png ├── PlanarImageFormat.htm ├── SDKHistory.htm ├── SDKLicense.htm ├── SDKNecessaries.htm ├── SimpleMmxOptimization.htm ├── SimpleSample.htm ├── SimpleSample10b.htm ├── SimpleSample11.htm ├── SimpleSample12.htm ├── SimpleSample13a.htm ├── SimpleSample14.htm ├── SimpleSample15a.htm ├── SimpleSample16.htm ├── SimpleSample17.htm ├── SimpleSampleClass.htm ├── TwoFiveFastInvert.htm ├── TwoFiveInvert.htm ├── VideoInfo.htm ├── WorkingWithImages.htm ├── WorkingWithPlanarImages.htm ├── avs2pcm.htm ├── avs2yuv.htm ├── filtersdk.css └── sig.gif └── src ├── audio ├── audio.cpp ├── audio.h ├── avs-soundtouch.cpp ├── avs-soundtouch.h ├── convertaudio.cpp ├── convertaudio.h ├── dbesi0.c ├── math_shared.h ├── paramlist.h ├── ssrc-convert.cpp ├── ssrc-convert.h ├── ssrc.cpp ├── ssrc.h ├── supereq.cpp └── supereq.h ├── avisynth.dsp ├── avisynth.dsw ├── avisynth.sln ├── avisynth.vcproj ├── convert ├── convert.cpp ├── convert.h ├── convert_a.asm ├── convert_matrix.cpp ├── convert_matrix.h ├── convert_planar.cpp ├── convert_planar.h ├── convert_rgb.cpp ├── convert_rgb.h ├── convert_rgbtoy8.cpp ├── convert_rgbtoy8.h ├── convert_yuy2.cpp ├── convert_yuy2.h ├── convert_yuy2torgb.cpp ├── convert_yuy2torgb.h ├── convert_yv12.cpp └── convert_yv12.h ├── core ├── Error.h ├── alignplanar.cpp ├── alignplanar.h ├── avisynth.cpp ├── avisynth.def ├── avisynth.h ├── avisynth.rc ├── avisynth_c.cpp ├── avisynth_c.h ├── cache.cpp ├── cache.h ├── clip_info.h ├── info.h ├── interface.cpp ├── main.cpp ├── memcpy_amd.cpp ├── memcpy_amd.h ├── parser │ ├── expression.cpp │ ├── expression.h │ ├── script.cpp │ ├── script.h │ ├── scriptparser.cpp │ ├── scriptparser.h │ ├── tokenizer.cpp │ └── tokenizer.h ├── plugins.cpp ├── resource.h ├── softwire_helpers.cpp └── softwire_helpers.h ├── filters ├── color.cpp ├── color.h ├── combine.cpp ├── combine.h ├── conditional │ ├── conditional.cpp │ ├── conditional.h │ ├── conditional_functions.cpp │ ├── conditional_functions.h │ ├── conditional_reader.cpp │ └── conditional_reader.h ├── convolution.cpp ├── convolution.h ├── debug.cpp ├── debug.h ├── edit.cpp ├── edit.h ├── field.cpp ├── field.h ├── focus.cpp ├── focus.h ├── fps.cpp ├── fps.h ├── greyscale.cpp ├── greyscale.h ├── histogram.cpp ├── histogram.h ├── layer.cpp ├── layer.h ├── levels.cpp ├── levels.h ├── limiter.cpp ├── limiter.h ├── merge.cpp ├── merge.h ├── misc.cpp ├── misc.h ├── overlay │ ├── 444convert.cpp │ ├── 444convert.h │ ├── OF_add.cpp │ ├── OF_blend.cpp │ ├── OF_darken.cpp │ ├── OF_difference.cpp │ ├── OF_exclusion.cpp │ ├── OF_lighten.cpp │ ├── OF_lumachroma.cpp │ ├── OF_multiply.cpp │ ├── OF_softhardlight.cpp │ ├── OF_subtract.cpp │ ├── blend_asm.cpp │ ├── blend_asm.h │ ├── imghelpers.h │ ├── overlay.cpp │ ├── overlay.h │ └── overlayfunctions.h ├── planeswap.cpp ├── planeswap.h ├── resample.cpp ├── resample.h ├── resample_functions.cpp ├── resample_functions.h ├── resize.cpp ├── resize.h ├── text-overlay.cpp ├── text-overlay.h ├── transform.cpp ├── transform.h ├── turn.cpp ├── turn.h ├── turnfunc.cpp └── turnfunc.h ├── initguid.cpp ├── internal.h ├── plugins ├── DirectShowSource │ ├── DirectShowSource.dsp │ ├── DirectShowSource.dsw │ ├── DirectShowSource.vcproj │ ├── avisynth.h │ ├── directshow_source.cpp │ ├── directshow_source.h │ ├── directshow_source.rc │ └── resource.h └── TCPDeliver │ ├── ClientGUI.rc │ ├── ServerGUICode.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TCPClient.cpp │ ├── TCPClient.h │ ├── TCPCommon.cpp │ ├── TCPCommon.h │ ├── TCPCompression.cpp │ ├── TCPCompression.h │ ├── TCPDeliver.cpp │ ├── TCPDeliver.dsp │ ├── TCPDeliver.dsw │ ├── TCPDeliver.vcproj │ ├── TCPServer.cpp │ ├── TCPServer.h │ ├── avisynth.h │ ├── huffman.c │ ├── huffman.h │ ├── lzo │ ├── Debug │ │ └── LZO.lib │ ├── Release │ │ └── LZO.lib │ └── include │ │ ├── lzo1.h │ │ ├── lzo16bit.h │ │ ├── lzo1a.h │ │ ├── lzo1b.h │ │ ├── lzo1c.h │ │ ├── lzo1f.h │ │ ├── lzo1x.h │ │ ├── lzo1y.h │ │ ├── lzo1z.h │ │ ├── lzo2a.h │ │ ├── lzoconf.h │ │ └── lzoutil.h │ ├── resource.h │ └── zlib │ ├── include │ ├── zconf.h │ └── zlib.h │ └── lib │ └── zlibstat.lib ├── resource.h ├── sources ├── ImageSeq.cpp ├── ImageSeq.h ├── avi │ ├── AVIIndex.cpp │ ├── AVIIndex.h │ ├── AVIReadHandler.cpp │ ├── AVIReadHandler.h │ ├── AudioSource.cpp │ ├── AudioSource.h │ ├── DubSource.cpp │ ├── DubSource.h │ ├── FastReadStream.cpp │ ├── FastReadStream.h │ ├── File64.cpp │ ├── File64.h │ ├── Fixes.h │ ├── VD_Audio.cpp │ ├── VD_Audio.h │ ├── VD_misc.cpp │ ├── VD_misc.h │ ├── clip_info.h │ ├── cpuaccel.cpp │ ├── list.cpp │ └── list.h ├── avi_source.cpp ├── msvcpxx.h └── source.cpp ├── stdafx.cpp └── stdafx.h /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/.cvsignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /distrib/AVS_UI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/AVS_UI.exe -------------------------------------------------------------------------------- /distrib/AVS_UI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/AVS_UI.rc -------------------------------------------------------------------------------- /distrib/AviSynth_2.5.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/AviSynth_2.5.nsi -------------------------------------------------------------------------------- /distrib/AviSynth_Template.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/AviSynth_Template.reg -------------------------------------------------------------------------------- /distrib/Examples/Audio.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Audio.avs -------------------------------------------------------------------------------- /distrib/Examples/Authors.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Authors.avs -------------------------------------------------------------------------------- /distrib/Examples/Editing.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Editing.avs -------------------------------------------------------------------------------- /distrib/Examples/Equalizer Presets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Equalizer Presets.zip -------------------------------------------------------------------------------- /distrib/Examples/Processing.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Processing.avs -------------------------------------------------------------------------------- /distrib/Examples/Syntax.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Syntax.avs -------------------------------------------------------------------------------- /distrib/Examples/Version.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Examples/Version.avs -------------------------------------------------------------------------------- /distrib/Languages/AVS_Czech.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Czech.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_English.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_English.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_French.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_French.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_German.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_German.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Greek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Greek.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Italian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Italian.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Japanese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Japanese.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Polish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Polish.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Portuguese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Portuguese.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_PortugueseBR.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_PortugueseBR.nsh -------------------------------------------------------------------------------- /distrib/Languages/AVS_Russian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Languages/AVS_Russian.nsh -------------------------------------------------------------------------------- /distrib/Un_AviSynth.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/Un_AviSynth.ico -------------------------------------------------------------------------------- /distrib/bin/avisynth_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/bin/avisynth_c.dll -------------------------------------------------------------------------------- /distrib/bin/debug/devil-d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/bin/debug/devil-d.dll -------------------------------------------------------------------------------- /distrib/bin/devil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/bin/devil.dll -------------------------------------------------------------------------------- /distrib/bin/msvcp60.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/bin/msvcp60.dll -------------------------------------------------------------------------------- /distrib/color_presets/colors_rgb.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/color_presets/colors_rgb.avsi -------------------------------------------------------------------------------- /distrib/color_presets/colors_rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/color_presets/colors_rgb.txt -------------------------------------------------------------------------------- /distrib/docs/english.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/docs/english.chm -------------------------------------------------------------------------------- /distrib/docs/german.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/docs/german.chm -------------------------------------------------------------------------------- /distrib/docs/pictures.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/docs/pictures.chm -------------------------------------------------------------------------------- /distrib/ffvfwAVIS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/ffvfwAVIS.exe -------------------------------------------------------------------------------- /distrib/gpl-cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-cs.txt -------------------------------------------------------------------------------- /distrib/gpl-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-de.txt -------------------------------------------------------------------------------- /distrib/gpl-el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-el.txt -------------------------------------------------------------------------------- /distrib/gpl-fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-fr.txt -------------------------------------------------------------------------------- /distrib/gpl-it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-it.txt -------------------------------------------------------------------------------- /distrib/gpl-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-ja.txt -------------------------------------------------------------------------------- /distrib/gpl-pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-pl.txt -------------------------------------------------------------------------------- /distrib/gpl-pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-pt.txt -------------------------------------------------------------------------------- /distrib/gpl-pt_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-pt_br.txt -------------------------------------------------------------------------------- /distrib/gpl-ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl-ru.txt -------------------------------------------------------------------------------- /distrib/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/gpl.txt -------------------------------------------------------------------------------- /distrib/include/SoftWire/Assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Assembler.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Assembler.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/CodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/CodeGenerator.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/CodeGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/CodeGenerator.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Emulator.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Emulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Emulator.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Encoding.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Encoding.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Error.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Error.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Instruction.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Instruction.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/InstructionSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/InstructionSet.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/InstructionSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/InstructionSet.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Intrinsics.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/License.txt -------------------------------------------------------------------------------- /distrib/include/SoftWire/Link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Link.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Linker.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Linker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Linker.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Loader.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Loader.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Operand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Operand.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Operand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Operand.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Optimizer.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Optimizer.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/RegisterAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/RegisterAllocator.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/RegisterAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/RegisterAllocator.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/SoftWire.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/SoftWire.dsp -------------------------------------------------------------------------------- /distrib/include/SoftWire/StaticLibrary-VC8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/StaticLibrary-VC8.vcproj -------------------------------------------------------------------------------- /distrib/include/SoftWire/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/String.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Synthesizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Synthesizer.cpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Synthesizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Synthesizer.hpp -------------------------------------------------------------------------------- /distrib/include/SoftWire/Whence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoftWire/Whence.txt -------------------------------------------------------------------------------- /distrib/include/SoundTouch/3dnow_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/3dnow_win.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/AAFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/AAFilter.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/AAFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/AAFilter.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/BPMDetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/BPMDetect.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/COPYING.TXT -------------------------------------------------------------------------------- /distrib/include/SoundTouch/FIFOSampleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/FIFOSampleBuffer.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/FIFOSampleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/FIFOSampleBuffer.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/FIFOSamplePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/FIFOSamplePipe.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/FIRFilter.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/FIRFilter.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/InterpolateShannon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/InterpolateShannon.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/RateTransposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/RateTransposer.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/RateTransposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/RateTransposer.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/STTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/STTypes.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/SoundTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/SoundTouch.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/SoundTouch.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/SoundTouch.dsp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/SoundTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/SoundTouch.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/SoundTouch.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/SoundTouch.vcproj -------------------------------------------------------------------------------- /distrib/include/SoundTouch/TDStretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/TDStretch.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/TDStretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/TDStretch.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/cpu_detect.h -------------------------------------------------------------------------------- /distrib/include/SoundTouch/cpu_detect_x86_gcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/cpu_detect_x86_gcc.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/cpu_detect_x86_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/cpu_detect_x86_win.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/mmx_optimized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/mmx_optimized.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/sse_optimized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/sse_optimized.cpp -------------------------------------------------------------------------------- /distrib/include/SoundTouch/whence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/SoundTouch/whence.txt -------------------------------------------------------------------------------- /distrib/include/il/il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/il/il.h -------------------------------------------------------------------------------- /distrib/include/pfc/bit_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/bit_array.h -------------------------------------------------------------------------------- /distrib/include/pfc/bit_array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/bit_array_impl.h -------------------------------------------------------------------------------- /distrib/include/pfc/byte_order_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/byte_order_helper.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/byte_order_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/byte_order_helper.h -------------------------------------------------------------------------------- /distrib/include/pfc/cfg_memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/cfg_memblock.h -------------------------------------------------------------------------------- /distrib/include/pfc/cfg_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/cfg_var.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/cfg_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/cfg_var.h -------------------------------------------------------------------------------- /distrib/include/pfc/chainlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/chainlist.h -------------------------------------------------------------------------------- /distrib/include/pfc/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/critsec.h -------------------------------------------------------------------------------- /distrib/include/pfc/foobar2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/foobar2000.h -------------------------------------------------------------------------------- /distrib/include/pfc/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/guid.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/guid.h -------------------------------------------------------------------------------- /distrib/include/pfc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/license.txt -------------------------------------------------------------------------------- /distrib/include/pfc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/list.h -------------------------------------------------------------------------------- /distrib/include/pfc/mem_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/mem_block.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/mem_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/mem_block.h -------------------------------------------------------------------------------- /distrib/include/pfc/mem_block_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/mem_block_mgr.h -------------------------------------------------------------------------------- /distrib/include/pfc/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/other.h -------------------------------------------------------------------------------- /distrib/include/pfc/pfc.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/pfc.dsp -------------------------------------------------------------------------------- /distrib/include/pfc/pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/pfc.h -------------------------------------------------------------------------------- /distrib/include/pfc/pfc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/pfc.vcproj -------------------------------------------------------------------------------- /distrib/include/pfc/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/profiler.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/profiler.h -------------------------------------------------------------------------------- /distrib/include/pfc/ptr_list.cpp: -------------------------------------------------------------------------------- 1 | #include "pfc.h" 2 | 3 | #error verboten 4 | -------------------------------------------------------------------------------- /distrib/include/pfc/ptr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/ptr_list.h -------------------------------------------------------------------------------- /distrib/include/pfc/stdafx.cpp: -------------------------------------------------------------------------------- 1 | //cpp used to generate precompiled header 2 | #include "pfc.h" -------------------------------------------------------------------------------- /distrib/include/pfc/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/string.cpp -------------------------------------------------------------------------------- /distrib/include/pfc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/string.h -------------------------------------------------------------------------------- /distrib/include/pfc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/include/pfc/utf8.cpp -------------------------------------------------------------------------------- /distrib/lgpl_for_used_libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/lgpl_for_used_libs.txt -------------------------------------------------------------------------------- /distrib/lib/DevIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/lib/DevIL.lib -------------------------------------------------------------------------------- /distrib/lib/debug/DevIL-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/lib/debug/DevIL-d.lib -------------------------------------------------------------------------------- /distrib/off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/off.bmp -------------------------------------------------------------------------------- /distrib/on.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/on.bmp -------------------------------------------------------------------------------- /distrib/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/distrib/upx.exe -------------------------------------------------------------------------------- /filtersdk/AMDOptimizationGuide.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AMDOptimizationGuide.htm -------------------------------------------------------------------------------- /filtersdk/AVSLinkage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AVSLinkage.html -------------------------------------------------------------------------------- /filtersdk/AssemblerOptimizing.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AssemblerOptimizing.htm -------------------------------------------------------------------------------- /filtersdk/AviSynthInterfaceVersion.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AviSynthInterfaceVersion.htm -------------------------------------------------------------------------------- /filtersdk/AviSynthTwoFiveAudio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AviSynthTwoFiveAudio.htm -------------------------------------------------------------------------------- /filtersdk/AviSynthTwoFivePixelType.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AviSynthTwoFivePixelType.htm -------------------------------------------------------------------------------- /filtersdk/AviSynthTwoFiveSDK.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/AviSynthTwoFiveSDK.htm -------------------------------------------------------------------------------- /filtersdk/BensAviSynthDocs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/BensAviSynthDocs.htm -------------------------------------------------------------------------------- /filtersdk/C_api.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/C_api.htm -------------------------------------------------------------------------------- /filtersdk/ChangeFrameSize.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/ChangeFrameSize.htm -------------------------------------------------------------------------------- /filtersdk/ColorSpaces.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/ColorSpaces.htm -------------------------------------------------------------------------------- /filtersdk/ColorspaceProperties.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/ColorspaceProperties.htm -------------------------------------------------------------------------------- /filtersdk/CompilingAvisynthPlugins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/CompilingAvisynthPlugins.htm -------------------------------------------------------------------------------- /filtersdk/Cplusplus_api.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Cplusplus_api.htm -------------------------------------------------------------------------------- /filtersdk/DataAlignment.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/DataAlignment.htm -------------------------------------------------------------------------------- /filtersdk/DataStorageInAviSynth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/DataStorageInAviSynth.htm -------------------------------------------------------------------------------- /filtersdk/DebuggingAvisynthPlugins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/DebuggingAvisynthPlugins.htm -------------------------------------------------------------------------------- /filtersdk/DualPlugins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/DualPlugins.htm -------------------------------------------------------------------------------- /filtersdk/EnvInvoke.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/EnvInvoke.htm -------------------------------------------------------------------------------- /filtersdk/EnvSaveString.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/EnvSaveString.htm -------------------------------------------------------------------------------- /filtersdk/FilterSDK.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/FilterSDK.htm -------------------------------------------------------------------------------- /filtersdk/GeneralPurposeToMMXRegisters.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/GeneralPurposeToMMXRegisters.htm -------------------------------------------------------------------------------- /filtersdk/GettingStartedWithAudio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/GettingStartedWithAudio.htm -------------------------------------------------------------------------------- /filtersdk/GradientMask.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/GradientMask.htm -------------------------------------------------------------------------------- /filtersdk/InstructionPairing.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/InstructionPairing.htm -------------------------------------------------------------------------------- /filtersdk/IntegerSSE.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/IntegerSSE.htm -------------------------------------------------------------------------------- /filtersdk/IntelOptimizationGuide.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/IntelOptimizationGuide.htm -------------------------------------------------------------------------------- /filtersdk/InterleavedImageFormat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/InterleavedImageFormat.htm -------------------------------------------------------------------------------- /filtersdk/IntermediateMmxOptimization.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/IntermediateMmxOptimization.htm -------------------------------------------------------------------------------- /filtersdk/InternalFunctions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/InternalFunctions.htm -------------------------------------------------------------------------------- /filtersdk/InvertNeg.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/InvertNeg.htm -------------------------------------------------------------------------------- /filtersdk/IsMovntqFaster.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/IsMovntqFaster.htm -------------------------------------------------------------------------------- /filtersdk/MMX.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/MMX.htm -------------------------------------------------------------------------------- /filtersdk/Non-ClipSample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Non-ClipSample.htm -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_001.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_002.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_003.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_004.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_005.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_006.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_007.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_008.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Compiling_plugins_msvc2010_009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Compiling_plugins_msvc2010_009.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_con_applications_msvc2010_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_con_applications_msvc2010_001.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_con_applications_msvc2010_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_con_applications_msvc2010_002.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_exported_functions_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_exported_functions_001.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_plugins_msvc2010_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_plugins_msvc2010_001.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_plugins_msvc2010_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_plugins_msvc2010_002.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_plugins_msvc2010_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_plugins_msvc2010_003.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_plugins_msvc2010_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_plugins_msvc2010_004.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/Debugging_plugins_msvc2010_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/Debugging_plugins_msvc2010_005.jpg -------------------------------------------------------------------------------- /filtersdk/Pictures/compiling_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/compiling_plugins.png -------------------------------------------------------------------------------- /filtersdk/Pictures/compiling_plugins2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/compiling_plugins2.png -------------------------------------------------------------------------------- /filtersdk/Pictures/compiling_plugins3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/compiling_plugins3.png -------------------------------------------------------------------------------- /filtersdk/Pictures/compiling_plugins4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/compiling_plugins4.png -------------------------------------------------------------------------------- /filtersdk/Pictures/compiling_plugins5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/compiling_plugins5.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins1a.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins1b.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins2.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins3.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins4.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins5.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins6.png -------------------------------------------------------------------------------- /filtersdk/Pictures/debugging_plugins7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/Pictures/debugging_plugins7.png -------------------------------------------------------------------------------- /filtersdk/PlanarImageFormat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/PlanarImageFormat.htm -------------------------------------------------------------------------------- /filtersdk/SDKHistory.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SDKHistory.htm -------------------------------------------------------------------------------- /filtersdk/SDKLicense.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SDKLicense.htm -------------------------------------------------------------------------------- /filtersdk/SDKNecessaries.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SDKNecessaries.htm -------------------------------------------------------------------------------- /filtersdk/SimpleMmxOptimization.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleMmxOptimization.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample10b.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample10b.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample11.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample11.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample12.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample12.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample13a.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample13a.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample14.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample14.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample15a.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample15a.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample16.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample16.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSample17.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSample17.htm -------------------------------------------------------------------------------- /filtersdk/SimpleSampleClass.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/SimpleSampleClass.htm -------------------------------------------------------------------------------- /filtersdk/TwoFiveFastInvert.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/TwoFiveFastInvert.htm -------------------------------------------------------------------------------- /filtersdk/TwoFiveInvert.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/TwoFiveInvert.htm -------------------------------------------------------------------------------- /filtersdk/VideoInfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/VideoInfo.htm -------------------------------------------------------------------------------- /filtersdk/WorkingWithImages.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/WorkingWithImages.htm -------------------------------------------------------------------------------- /filtersdk/WorkingWithPlanarImages.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/WorkingWithPlanarImages.htm -------------------------------------------------------------------------------- /filtersdk/avs2pcm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/avs2pcm.htm -------------------------------------------------------------------------------- /filtersdk/avs2yuv.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/avs2yuv.htm -------------------------------------------------------------------------------- /filtersdk/filtersdk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/filtersdk.css -------------------------------------------------------------------------------- /filtersdk/sig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/filtersdk/sig.gif -------------------------------------------------------------------------------- /src/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/audio.cpp -------------------------------------------------------------------------------- /src/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/audio.h -------------------------------------------------------------------------------- /src/audio/avs-soundtouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/avs-soundtouch.cpp -------------------------------------------------------------------------------- /src/audio/avs-soundtouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/avs-soundtouch.h -------------------------------------------------------------------------------- /src/audio/convertaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/convertaudio.cpp -------------------------------------------------------------------------------- /src/audio/convertaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/convertaudio.h -------------------------------------------------------------------------------- /src/audio/dbesi0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/dbesi0.c -------------------------------------------------------------------------------- /src/audio/math_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/math_shared.h -------------------------------------------------------------------------------- /src/audio/paramlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/paramlist.h -------------------------------------------------------------------------------- /src/audio/ssrc-convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/ssrc-convert.cpp -------------------------------------------------------------------------------- /src/audio/ssrc-convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/ssrc-convert.h -------------------------------------------------------------------------------- /src/audio/ssrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/ssrc.cpp -------------------------------------------------------------------------------- /src/audio/ssrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/ssrc.h -------------------------------------------------------------------------------- /src/audio/supereq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/supereq.cpp -------------------------------------------------------------------------------- /src/audio/supereq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/audio/supereq.h -------------------------------------------------------------------------------- /src/avisynth.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/avisynth.dsp -------------------------------------------------------------------------------- /src/avisynth.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/avisynth.dsw -------------------------------------------------------------------------------- /src/avisynth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/avisynth.sln -------------------------------------------------------------------------------- /src/avisynth.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/avisynth.vcproj -------------------------------------------------------------------------------- /src/convert/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert.cpp -------------------------------------------------------------------------------- /src/convert/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert.h -------------------------------------------------------------------------------- /src/convert/convert_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_a.asm -------------------------------------------------------------------------------- /src/convert/convert_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_matrix.cpp -------------------------------------------------------------------------------- /src/convert/convert_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_matrix.h -------------------------------------------------------------------------------- /src/convert/convert_planar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_planar.cpp -------------------------------------------------------------------------------- /src/convert/convert_planar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_planar.h -------------------------------------------------------------------------------- /src/convert/convert_rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_rgb.cpp -------------------------------------------------------------------------------- /src/convert/convert_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_rgb.h -------------------------------------------------------------------------------- /src/convert/convert_rgbtoy8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_rgbtoy8.cpp -------------------------------------------------------------------------------- /src/convert/convert_rgbtoy8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_rgbtoy8.h -------------------------------------------------------------------------------- /src/convert/convert_yuy2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yuy2.cpp -------------------------------------------------------------------------------- /src/convert/convert_yuy2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yuy2.h -------------------------------------------------------------------------------- /src/convert/convert_yuy2torgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yuy2torgb.cpp -------------------------------------------------------------------------------- /src/convert/convert_yuy2torgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yuy2torgb.h -------------------------------------------------------------------------------- /src/convert/convert_yv12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yv12.cpp -------------------------------------------------------------------------------- /src/convert/convert_yv12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/convert/convert_yv12.h -------------------------------------------------------------------------------- /src/core/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/Error.h -------------------------------------------------------------------------------- /src/core/alignplanar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/alignplanar.cpp -------------------------------------------------------------------------------- /src/core/alignplanar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/alignplanar.h -------------------------------------------------------------------------------- /src/core/avisynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth.cpp -------------------------------------------------------------------------------- /src/core/avisynth.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth.def -------------------------------------------------------------------------------- /src/core/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth.h -------------------------------------------------------------------------------- /src/core/avisynth.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth.rc -------------------------------------------------------------------------------- /src/core/avisynth_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth_c.cpp -------------------------------------------------------------------------------- /src/core/avisynth_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/avisynth_c.h -------------------------------------------------------------------------------- /src/core/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/cache.cpp -------------------------------------------------------------------------------- /src/core/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/cache.h -------------------------------------------------------------------------------- /src/core/clip_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/clip_info.h -------------------------------------------------------------------------------- /src/core/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/info.h -------------------------------------------------------------------------------- /src/core/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/interface.cpp -------------------------------------------------------------------------------- /src/core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/main.cpp -------------------------------------------------------------------------------- /src/core/memcpy_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/memcpy_amd.cpp -------------------------------------------------------------------------------- /src/core/memcpy_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/memcpy_amd.h -------------------------------------------------------------------------------- /src/core/parser/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/expression.cpp -------------------------------------------------------------------------------- /src/core/parser/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/expression.h -------------------------------------------------------------------------------- /src/core/parser/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/script.cpp -------------------------------------------------------------------------------- /src/core/parser/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/script.h -------------------------------------------------------------------------------- /src/core/parser/scriptparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/scriptparser.cpp -------------------------------------------------------------------------------- /src/core/parser/scriptparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/scriptparser.h -------------------------------------------------------------------------------- /src/core/parser/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/tokenizer.cpp -------------------------------------------------------------------------------- /src/core/parser/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/parser/tokenizer.h -------------------------------------------------------------------------------- /src/core/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/plugins.cpp -------------------------------------------------------------------------------- /src/core/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/resource.h -------------------------------------------------------------------------------- /src/core/softwire_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/softwire_helpers.cpp -------------------------------------------------------------------------------- /src/core/softwire_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/core/softwire_helpers.h -------------------------------------------------------------------------------- /src/filters/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/color.cpp -------------------------------------------------------------------------------- /src/filters/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/color.h -------------------------------------------------------------------------------- /src/filters/combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/combine.cpp -------------------------------------------------------------------------------- /src/filters/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/combine.h -------------------------------------------------------------------------------- /src/filters/conditional/conditional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional.cpp -------------------------------------------------------------------------------- /src/filters/conditional/conditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional.h -------------------------------------------------------------------------------- /src/filters/conditional/conditional_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional_functions.cpp -------------------------------------------------------------------------------- /src/filters/conditional/conditional_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional_functions.h -------------------------------------------------------------------------------- /src/filters/conditional/conditional_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional_reader.cpp -------------------------------------------------------------------------------- /src/filters/conditional/conditional_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/conditional/conditional_reader.h -------------------------------------------------------------------------------- /src/filters/convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/convolution.cpp -------------------------------------------------------------------------------- /src/filters/convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/convolution.h -------------------------------------------------------------------------------- /src/filters/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/debug.cpp -------------------------------------------------------------------------------- /src/filters/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/debug.h -------------------------------------------------------------------------------- /src/filters/edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/edit.cpp -------------------------------------------------------------------------------- /src/filters/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/edit.h -------------------------------------------------------------------------------- /src/filters/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/field.cpp -------------------------------------------------------------------------------- /src/filters/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/field.h -------------------------------------------------------------------------------- /src/filters/focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/focus.cpp -------------------------------------------------------------------------------- /src/filters/focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/focus.h -------------------------------------------------------------------------------- /src/filters/fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/fps.cpp -------------------------------------------------------------------------------- /src/filters/fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/fps.h -------------------------------------------------------------------------------- /src/filters/greyscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/greyscale.cpp -------------------------------------------------------------------------------- /src/filters/greyscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/greyscale.h -------------------------------------------------------------------------------- /src/filters/histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/histogram.cpp -------------------------------------------------------------------------------- /src/filters/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/histogram.h -------------------------------------------------------------------------------- /src/filters/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/layer.cpp -------------------------------------------------------------------------------- /src/filters/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/layer.h -------------------------------------------------------------------------------- /src/filters/levels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/levels.cpp -------------------------------------------------------------------------------- /src/filters/levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/levels.h -------------------------------------------------------------------------------- /src/filters/limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/limiter.cpp -------------------------------------------------------------------------------- /src/filters/limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/limiter.h -------------------------------------------------------------------------------- /src/filters/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/merge.cpp -------------------------------------------------------------------------------- /src/filters/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/merge.h -------------------------------------------------------------------------------- /src/filters/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/misc.cpp -------------------------------------------------------------------------------- /src/filters/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/misc.h -------------------------------------------------------------------------------- /src/filters/overlay/444convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/444convert.cpp -------------------------------------------------------------------------------- /src/filters/overlay/444convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/444convert.h -------------------------------------------------------------------------------- /src/filters/overlay/OF_add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_add.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_blend.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_darken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_darken.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_difference.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_exclusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_exclusion.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_lighten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_lighten.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_lumachroma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_lumachroma.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_multiply.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_softhardlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_softhardlight.cpp -------------------------------------------------------------------------------- /src/filters/overlay/OF_subtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/OF_subtract.cpp -------------------------------------------------------------------------------- /src/filters/overlay/blend_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/blend_asm.cpp -------------------------------------------------------------------------------- /src/filters/overlay/blend_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/blend_asm.h -------------------------------------------------------------------------------- /src/filters/overlay/imghelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/imghelpers.h -------------------------------------------------------------------------------- /src/filters/overlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/overlay.cpp -------------------------------------------------------------------------------- /src/filters/overlay/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/overlay.h -------------------------------------------------------------------------------- /src/filters/overlay/overlayfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/overlay/overlayfunctions.h -------------------------------------------------------------------------------- /src/filters/planeswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/planeswap.cpp -------------------------------------------------------------------------------- /src/filters/planeswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/planeswap.h -------------------------------------------------------------------------------- /src/filters/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resample.cpp -------------------------------------------------------------------------------- /src/filters/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resample.h -------------------------------------------------------------------------------- /src/filters/resample_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resample_functions.cpp -------------------------------------------------------------------------------- /src/filters/resample_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resample_functions.h -------------------------------------------------------------------------------- /src/filters/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resize.cpp -------------------------------------------------------------------------------- /src/filters/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/resize.h -------------------------------------------------------------------------------- /src/filters/text-overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/text-overlay.cpp -------------------------------------------------------------------------------- /src/filters/text-overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/text-overlay.h -------------------------------------------------------------------------------- /src/filters/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/transform.cpp -------------------------------------------------------------------------------- /src/filters/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/transform.h -------------------------------------------------------------------------------- /src/filters/turn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/turn.cpp -------------------------------------------------------------------------------- /src/filters/turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/turn.h -------------------------------------------------------------------------------- /src/filters/turnfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/turnfunc.cpp -------------------------------------------------------------------------------- /src/filters/turnfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/filters/turnfunc.h -------------------------------------------------------------------------------- /src/initguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/initguid.cpp -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/DirectShowSource.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/DirectShowSource.dsp -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/DirectShowSource.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/DirectShowSource.dsw -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/DirectShowSource.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/DirectShowSource.vcproj -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/avisynth.h -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/directshow_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/directshow_source.cpp -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/directshow_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/directshow_source.h -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/directshow_source.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/directshow_source.rc -------------------------------------------------------------------------------- /src/plugins/DirectShowSource/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/DirectShowSource/resource.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/ClientGUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/ClientGUI.rc -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/ServerGUICode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/ServerGUICode.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/StdAfx.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/StdAfx.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPClient.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPClient.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPCommon.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPCommon.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPCompression.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPCompression.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPDeliver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPDeliver.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPDeliver.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPDeliver.dsp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPDeliver.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPDeliver.dsw -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPDeliver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPDeliver.vcproj -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPServer.cpp -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/TCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/TCPServer.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/avisynth.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/huffman.c -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/huffman.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/Debug/LZO.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/Debug/LZO.lib -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/Release/LZO.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/Release/LZO.lib -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo16bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo16bit.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1a.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1b.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1c.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1f.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1x.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1y.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo1z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo1z.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzo2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzo2a.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzoconf.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/lzo/include/lzoutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/lzo/include/lzoutil.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/resource.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/zlib/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/zlib/include/zconf.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/zlib/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/zlib/include/zlib.h -------------------------------------------------------------------------------- /src/plugins/TCPDeliver/zlib/lib/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/plugins/TCPDeliver/zlib/lib/zlibstat.lib -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/sources/ImageSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/ImageSeq.cpp -------------------------------------------------------------------------------- /src/sources/ImageSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/ImageSeq.h -------------------------------------------------------------------------------- /src/sources/avi/AVIIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AVIIndex.cpp -------------------------------------------------------------------------------- /src/sources/avi/AVIIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AVIIndex.h -------------------------------------------------------------------------------- /src/sources/avi/AVIReadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AVIReadHandler.cpp -------------------------------------------------------------------------------- /src/sources/avi/AVIReadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AVIReadHandler.h -------------------------------------------------------------------------------- /src/sources/avi/AudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AudioSource.cpp -------------------------------------------------------------------------------- /src/sources/avi/AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/AudioSource.h -------------------------------------------------------------------------------- /src/sources/avi/DubSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/DubSource.cpp -------------------------------------------------------------------------------- /src/sources/avi/DubSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/DubSource.h -------------------------------------------------------------------------------- /src/sources/avi/FastReadStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/FastReadStream.cpp -------------------------------------------------------------------------------- /src/sources/avi/FastReadStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/FastReadStream.h -------------------------------------------------------------------------------- /src/sources/avi/File64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/File64.cpp -------------------------------------------------------------------------------- /src/sources/avi/File64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/File64.h -------------------------------------------------------------------------------- /src/sources/avi/Fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/Fixes.h -------------------------------------------------------------------------------- /src/sources/avi/VD_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/VD_Audio.cpp -------------------------------------------------------------------------------- /src/sources/avi/VD_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/VD_Audio.h -------------------------------------------------------------------------------- /src/sources/avi/VD_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/VD_misc.cpp -------------------------------------------------------------------------------- /src/sources/avi/VD_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/VD_misc.h -------------------------------------------------------------------------------- /src/sources/avi/clip_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/clip_info.h -------------------------------------------------------------------------------- /src/sources/avi/cpuaccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/cpuaccel.cpp -------------------------------------------------------------------------------- /src/sources/avi/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/list.cpp -------------------------------------------------------------------------------- /src/sources/avi/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi/list.h -------------------------------------------------------------------------------- /src/sources/avi_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/avi_source.cpp -------------------------------------------------------------------------------- /src/sources/msvcpxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/msvcpxx.h -------------------------------------------------------------------------------- /src/sources/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/sources/source.cpp -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeeb/avisynth/HEAD/src/stdafx.h --------------------------------------------------------------------------------