├── .github └── workflows │ ├── issue-translator.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── License.txt ├── README.md ├── VSFilter.sln ├── docs ├── HowToCompile.txt ├── vsfilter_mod_plan.txt └── vsfilter_note.txt ├── include ├── IFilterVersion.h ├── SubRenderIntf.h ├── Utf8.h ├── avisynth │ ├── avisynth1.h │ └── avisynth25.h ├── dx │ ├── d3d.h │ ├── d3dcaps.h │ └── d3dtypes.h ├── moreuuids.h ├── stdafx_common.h ├── stdafx_common_afx.h ├── stdafx_common_afx2.h ├── stdafx_common_dshow.h ├── unrar │ ├── unrar.h │ └── unrardll.txt ├── vd2 │ ├── Copying │ ├── OldFilterSDK │ │ ├── Filter.h │ │ ├── ScriptError.h │ │ ├── ScriptInterpreter.h │ │ ├── ScriptValue.h │ │ ├── VBitmap.h │ │ └── VirtualDub.h │ ├── PluginSDK.chm │ ├── VDXFrame │ │ ├── Unknown.h │ │ ├── VideoFilter.h │ │ ├── VideoFilterDialog.h │ │ └── VideoFilterEntry.h │ ├── extras │ │ └── FilterSDK │ │ │ ├── Filter.h │ │ │ ├── ScriptError.h │ │ │ ├── ScriptInterpreter.h │ │ │ ├── ScriptValue.h │ │ │ ├── VBitmap.h │ │ │ ├── VirtualDub.h │ │ │ └── readme.txt │ └── plugin │ │ ├── vdaudiofilt.h │ │ ├── vdinputdriver.h │ │ ├── vdplugin.h │ │ ├── vdvideofilt.h │ │ └── vdvideoutil.h ├── vsfilter_config.h └── winddk │ ├── devioctl.h │ ├── ntddcdrm.h │ ├── ntddcdvd.h │ ├── ntdddisk.h │ └── ntddstor.h ├── lib ├── libacof32.lib └── libacof64.lib ├── scripts ├── Install_XySubFilter.bat ├── Uninstall_XySubFilter.bat ├── build_vsfilter.sh ├── build_vsfilter_vs2012.sh ├── build_vsfilter_vs2013.sh └── build_vsfilter_vs2019.sh ├── src ├── YASM.props ├── YASM.targets ├── YASM.xml ├── common.props ├── configuration.props ├── decss │ ├── CSSauth.cpp │ ├── CSSauth.h │ ├── CSSscramble.cpp │ ├── CSSscramble.h │ ├── DeCSSInputPin.cpp │ ├── DeCSSInputPin.h │ ├── VobDec.cpp │ ├── VobDec.h │ ├── VobFile.cpp │ ├── VobFile.h │ ├── decss.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── udf.cpp │ └── udf.h ├── dsutil │ ├── DSMPropertyBag.cpp │ ├── DSMPropertyBag.h │ ├── DSUtil.cpp │ ├── DSUtil.h │ ├── FontInstaller.cpp │ ├── FontInstaller.h │ ├── GolombBuffer.cpp │ ├── GolombBuffer.h │ ├── H264Nalu.cpp │ ├── H264Nalu.h │ ├── HdmvClipInfo.cpp │ ├── HdmvClipInfo.h │ ├── MediaTypeEx.cpp │ ├── MediaTypeEx.h │ ├── MediaTypes.cpp │ ├── MediaTypes.h │ ├── Mpeg2Def.h │ ├── NullRenderers.cpp │ ├── NullRenderers.h │ ├── SharedInclude.h │ ├── a_yuv2rgb.asm │ ├── a_yuvtable.asm │ ├── convert_a.asm │ ├── dsutil.vcxproj │ ├── dsutil.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ ├── text.cpp │ ├── text.h │ ├── vd.cpp │ ├── vd.h │ ├── vd_asm.cpp │ ├── vd_asm.h │ ├── xy_utils.cpp │ └── xy_utils.h ├── filters │ ├── BaseClasses │ │ ├── BaseClasses.vcxproj │ │ ├── BaseClasses.vcxproj.filters │ │ ├── activex.rcv │ │ ├── activex.ver │ │ ├── amextra.cpp │ │ ├── amextra.h │ │ ├── amfilter.cpp │ │ ├── amfilter.h │ │ ├── amvideo.cpp │ │ ├── cache.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── cprop.cpp │ │ ├── cprop.h │ │ ├── ctlutil.cpp │ │ ├── ctlutil.h │ │ ├── ddmm.cpp │ │ ├── ddmm.h │ │ ├── dllentry.cpp │ │ ├── dllsetup.cpp │ │ ├── dllsetup.h │ │ ├── dsschedule.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.cpp │ │ ├── mtype.h │ │ ├── outputq.cpp │ │ ├── outputq.h │ │ ├── pstream.cpp │ │ ├── pstream.h │ │ ├── pullpin.cpp │ │ ├── pullpin.h │ │ ├── readme.txt │ │ ├── refclock.cpp │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.cpp │ │ ├── renbase.h │ │ ├── schedule.cpp │ │ ├── seekpt.cpp │ │ ├── seekpt.h │ │ ├── source.cpp │ │ ├── source.h │ │ ├── streams.h │ │ ├── strmctl.cpp │ │ ├── strmctl.h │ │ ├── sysclock.cpp │ │ ├── sysclock.h │ │ ├── transfrm.cpp │ │ ├── transfrm.h │ │ ├── transip.cpp │ │ ├── transip.h │ │ ├── videoctl.cpp │ │ ├── videoctl.h │ │ ├── vtrans.cpp │ │ ├── vtrans.h │ │ ├── winctrl.cpp │ │ ├── winctrl.h │ │ ├── winutil.cpp │ │ ├── winutil.h │ │ ├── wxdebug.cpp │ │ ├── wxdebug.h │ │ ├── wxlist.cpp │ │ ├── wxlist.h │ │ ├── wxutil.cpp │ │ └── wxutil.h │ └── transform │ │ ├── basevideofilter │ │ ├── BaseVideoFilter.cpp │ │ ├── BaseVideoFilter.h │ │ ├── basevideofilter.vcxproj │ │ ├── basevideofilter.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ └── vsfilter │ │ ├── CAutoTiming.h │ │ ├── Copy.cpp │ │ ├── DirectVobSub.cpp │ │ ├── DirectVobSub.h │ │ ├── DirectVobSubFilter.cpp │ │ ├── DirectVobSubFilter.h │ │ ├── DirectVobSubFilterDll.cpp │ │ ├── DirectVobSubPropPage.cpp │ │ ├── DirectVobSubPropPage.h │ │ ├── IDirectVobSub.h │ │ ├── IDirectVobSubXy.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── StyleEditorDialog.cpp │ │ ├── StyleEditorDialog.h │ │ ├── SubFrame.cpp │ │ ├── SubFrame.h │ │ ├── SubRenderOptionsImpl.cpp │ │ ├── SubRenderOptionsImpl.h │ │ ├── SubtitleInputPin2.cpp │ │ ├── SubtitleInputPin2.h │ │ ├── Systray.cpp │ │ ├── Systray.h │ │ ├── TextInputPin.cpp │ │ ├── TextInputPin.h │ │ ├── VSFilter.cpp │ │ ├── VSFilter.def │ │ ├── VSFilter.h │ │ ├── VSFilter.props │ │ ├── VSFilter.rc │ │ ├── VSFilter.vcxproj │ │ ├── VSFilter.vcxproj.filters │ │ ├── XyOptions.h │ │ ├── XyOptionsImpl.cpp │ │ ├── XyOptionsImpl.h │ │ ├── XySubRenderIntf.h │ │ ├── auto_load_helper.cpp │ │ ├── auto_load_helper.h │ │ ├── csri.h │ │ ├── csriapi.cpp │ │ ├── once_logger.cpp │ │ ├── once_logger.h │ │ ├── plugins.cpp │ │ ├── res │ │ ├── Icon_147.ico │ │ ├── Icon_xy_sub_fillter.ico │ │ └── VSFilter.manifest │ │ ├── resource.h │ │ ├── timing_logger.h │ │ ├── valami.cpp │ │ ├── version.h │ │ ├── version_in.h │ │ ├── vfr.cpp │ │ ├── vfr.h │ │ ├── xy_logger.cpp │ │ ├── xy_logger.h │ │ ├── xy_sub_filter.cpp │ │ ├── xy_sub_filter.def │ │ ├── xy_sub_filter.h │ │ ├── xy_sub_filter.vcxproj │ │ ├── xy_sub_filter.vcxproj.filters │ │ ├── xy_sub_filter_consumer.cpp │ │ ├── xy_sub_filter_consumer.def │ │ ├── xy_sub_filter_consumer.h │ │ ├── xy_sub_filter_consumer.vcxproj │ │ ├── xy_sub_filter_consumer.vcxproj.filters │ │ ├── xy_sub_filter_consumer_dll.cpp │ │ └── xy_sub_filter_dll.cpp ├── subpic │ ├── CRect2.cpp │ ├── CRect2.h │ ├── CoordGeom.cpp │ ├── CoordGeom.h │ ├── DX9SubPic.cpp │ ├── DX9SubPic.h │ ├── ISimpleSubPic.h │ ├── ISubPic.h │ ├── ISubRender.h │ ├── MemSubPic.cpp │ ├── MemSubPic.h │ ├── PooledSubPic.cpp │ ├── PooledSubPic.h │ ├── SimpleSubPicProviderImpl.cpp │ ├── SimpleSubPicProviderImpl.h │ ├── SimpleSubPicWrapper.cpp │ ├── SimpleSubPicWrapper.h │ ├── SimpleSubpicImpl.cpp │ ├── SimpleSubpicImpl.h │ ├── SubPicAllocatorPresenterImpl.cpp │ ├── SubPicAllocatorPresenterImpl.h │ ├── SubPicImpl.cpp │ ├── SubPicImpl.h │ ├── SubPicProviderExWrapper.cpp │ ├── SubPicProviderExWrapper.h │ ├── SubPicProviderImpl.cpp │ ├── SubPicProviderImpl.h │ ├── SubPicQueueImpl.cpp │ ├── SubPicQueueImpl.h │ ├── XySubRenderFrameWrapper.cpp │ ├── XySubRenderFrameWrapper.h │ ├── XySubRenderProviderWrapper.cpp │ ├── XySubRenderProviderWrapper.h │ ├── alpha_blender.cpp │ ├── alpha_blender.h │ ├── color_conv_table.cpp │ ├── color_conv_table.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── subpic.vcxproj │ ├── subpic.vcxproj.filters │ └── xy_intrinsics.h ├── subtitles │ ├── BaseSub.cpp │ ├── BaseSub.h │ ├── CCDecoder.cpp │ ├── CCDecoder.h │ ├── CompositionObject.cpp │ ├── CompositionObject.h │ ├── DVBSub.cpp │ ├── DVBSub.h │ ├── GFN.cpp │ ├── GFN.h │ ├── HdmvSub.cpp │ ├── HdmvSub.h │ ├── RTS.cpp │ ├── RTS.h │ ├── Rasterizer.cpp │ ├── Rasterizer.h │ ├── RealTextParser.cpp │ ├── RealTextParser.h │ ├── RenderedHdmvSubtitle.cpp │ ├── RenderedHdmvSubtitle.h │ ├── SSF.cpp │ ├── SSF.h │ ├── STS.cpp │ ├── STS.h │ ├── SeparableFilter.h │ ├── StdioFile64.cpp │ ├── StdioFile64.h │ ├── SubtitleInputPin.cpp │ ├── SubtitleInputPin.h │ ├── TextFile.cpp │ ├── TextFile.h │ ├── USFSubtitles.cpp │ ├── USFSubtitles.h │ ├── VobSubFile.cpp │ ├── VobSubFile.h │ ├── VobSubFileRipper.cpp │ ├── VobSubFileRipper.h │ ├── VobSubImage.cpp │ ├── VobSubImage.h │ ├── cache_manager.cpp │ ├── cache_manager.h │ ├── draw_item.cpp │ ├── draw_item.h │ ├── flyweight_base_types.h │ ├── hdmv_subtitle_provider.cpp │ ├── hdmv_subtitle_provider.h │ ├── libass_context.cpp │ ├── libass_context.h │ ├── libssf │ │ ├── Arabic.cpp │ │ ├── Arabic.h │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── Exception.cpp │ │ ├── Exception.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FontWrapper.cpp │ │ ├── FontWrapper.h │ │ ├── Glyph.cpp │ │ ├── Glyph.h │ │ ├── GlyphPath.cpp │ │ ├── GlyphPath.h │ │ ├── Node.cpp │ │ ├── Node.h │ │ ├── NodeFactory.cpp │ │ ├── NodeFactory.h │ │ ├── Rasterizer.cpp │ │ ├── Rasterizer.h │ │ ├── Renderer.cpp │ │ ├── Renderer.h │ │ ├── Split.cpp │ │ ├── Split.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── StringMap.cpp │ │ ├── StringMap.h │ │ ├── Subtitle.cpp │ │ ├── Subtitle.h │ │ ├── SubtitleFile.cpp │ │ ├── SubtitleFile.h │ │ ├── demo │ │ │ ├── demo.ssa │ │ │ └── demo.ssf │ │ ├── docs │ │ │ └── ssf-specs.txt │ │ ├── libssf.vcxproj │ │ ├── libssf.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mru_cache.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── subpixel_position_controler.cpp │ ├── subpixel_position_controler.h │ ├── subtitles.vcxproj │ ├── subtitles.vcxproj.filters │ ├── xy_bitmap.cpp │ ├── xy_bitmap.h │ ├── xy_circular_array_queue.h │ ├── xy_clipper_paint_machine.cpp │ ├── xy_clipper_paint_machine.h │ ├── xy_filter.cpp │ ├── xy_int_map.h │ ├── xy_malloc.cpp │ ├── xy_malloc.h │ ├── xy_overlay_paint_machine.cpp │ ├── xy_overlay_paint_machine.h │ ├── xy_widen_region.cpp │ └── xy_widen_region.h └── thirdparty │ ├── VirtualDub │ ├── Kasumi │ │ ├── Kasumi.vcxproj │ │ ├── Kasumi.vcxproj.filters │ │ ├── data │ │ │ ├── Tuffy.ttf │ │ │ └── Tuffy.txt │ │ ├── h │ │ │ ├── bitutils.h │ │ │ ├── blt_setup.h │ │ │ ├── blt_spanutils.h │ │ │ ├── blt_spanutils_x86.h │ │ │ ├── defaultfont.inl │ │ │ ├── resample_stages.h │ │ │ ├── resample_stages_reference.h │ │ │ ├── resample_stages_x64.h │ │ │ ├── resample_stages_x86.h │ │ │ ├── stdafx.h │ │ │ ├── uberblit.h │ │ │ ├── uberblit_16f.h │ │ │ ├── uberblit_base.h │ │ │ ├── uberblit_fill.h │ │ │ ├── uberblit_gen.h │ │ │ ├── uberblit_input.h │ │ │ ├── uberblit_interlace.h │ │ │ ├── uberblit_pal.h │ │ │ ├── uberblit_resample.h │ │ │ ├── uberblit_resample_special.h │ │ │ ├── uberblit_resample_special_x86.h │ │ │ ├── uberblit_rgb.h │ │ │ ├── uberblit_rgb_x86.h │ │ │ ├── uberblit_swizzle.h │ │ │ ├── uberblit_swizzle_x86.h │ │ │ ├── uberblit_v210.h │ │ │ ├── uberblit_ycbcr.h │ │ │ ├── uberblit_ycbcr_generic.h │ │ │ └── uberblit_ycbcr_x86.h │ │ └── source │ │ │ ├── a64_resample.asm64 │ │ │ ├── a_bltrgb.asm │ │ │ ├── a_bltrgb2yuv_mmx.asm │ │ │ ├── a_bltrgb_mmx.asm │ │ │ ├── a_bltyuv2rgb_sse2.asm │ │ │ ├── a_resample_mmx.asm │ │ │ ├── a_resample_sse41.asm │ │ │ ├── a_spanutils_isse.asm │ │ │ ├── a_stretchrgb_mmx.asm │ │ │ ├── a_stretchrgb_point.asm │ │ │ ├── a_triblt.inc │ │ │ ├── a_triblt_mmx.asm │ │ │ ├── a_triblt_scalar.asm │ │ │ ├── a_triblt_sse2.asm │ │ │ ├── alphablt.cpp │ │ │ ├── blitter.cpp │ │ │ ├── blt.cpp │ │ │ ├── blt_reference.cpp │ │ │ ├── blt_reference_pal.cpp │ │ │ ├── blt_reference_rgb.cpp │ │ │ ├── blt_reference_yuv.cpp │ │ │ ├── blt_reference_yuv2yuv.cpp │ │ │ ├── blt_reference_yuvrev.cpp │ │ │ ├── blt_setup.cpp │ │ │ ├── blt_spanutils.cpp │ │ │ ├── blt_spanutils_x86.cpp │ │ │ ├── blt_uberblit.cpp │ │ │ ├── blt_x86.cpp │ │ │ ├── pixel.cpp │ │ │ ├── pixmaputils.cpp │ │ │ ├── region.cpp │ │ │ ├── resample.cpp │ │ │ ├── resample_kernels.cpp │ │ │ ├── resample_stages.cpp │ │ │ ├── resample_stages_reference.cpp │ │ │ ├── resample_stages_x64.cpp │ │ │ ├── resample_stages_x86.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stretchblt_reference.cpp │ │ │ ├── tables.cpp │ │ │ ├── text.cpp │ │ │ ├── triblt.cpp │ │ │ ├── uberblit.cpp │ │ │ ├── uberblit_16f.cpp │ │ │ ├── uberblit_gen.cpp │ │ │ ├── uberblit_resample.cpp │ │ │ ├── uberblit_resample_special.cpp │ │ │ ├── uberblit_resample_special_x86.cpp │ │ │ ├── uberblit_swizzle.cpp │ │ │ ├── uberblit_swizzle_x86.cpp │ │ │ ├── uberblit_v210.cpp │ │ │ ├── uberblit_ycbcr_generic.cpp │ │ │ └── uberblit_ycbcr_x86.cpp │ ├── h │ │ └── vd2 │ │ │ ├── Kasumi │ │ │ ├── blitter.h │ │ │ ├── pixel.h │ │ │ ├── pixmap.h │ │ │ ├── pixmapops.h │ │ │ ├── pixmaputils.h │ │ │ ├── region.h │ │ │ ├── resample.h │ │ │ ├── resample_kernels.h │ │ │ ├── tables.h │ │ │ ├── text.h │ │ │ └── triblt.h │ │ │ └── system │ │ │ ├── Error.h │ │ │ ├── Fraction.h │ │ │ ├── VDNamespace.h │ │ │ ├── VDQueue.h │ │ │ ├── VDRingBuffer.h │ │ │ ├── VDScheduler.h │ │ │ ├── VDString.h │ │ │ ├── atomic.h │ │ │ ├── binary.h │ │ │ ├── bitmath.h │ │ │ ├── cache.h │ │ │ ├── cmdline.h │ │ │ ├── cpuaccel.h │ │ │ ├── date.h │ │ │ ├── debug.h │ │ │ ├── debugx86.h │ │ │ ├── event.h │ │ │ ├── file.h │ │ │ ├── fileasync.h │ │ │ ├── filesys.h │ │ │ ├── filewatcher.h │ │ │ ├── halffloat.h │ │ │ ├── hash.h │ │ │ ├── int128.h │ │ │ ├── linearalloc.h │ │ │ ├── list.h │ │ │ ├── log.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── process.h │ │ │ ├── profile.h │ │ │ ├── progress.h │ │ │ ├── protscope.h │ │ │ ├── refcount.h │ │ │ ├── registry.h │ │ │ ├── registrymemory.h │ │ │ ├── seh.h │ │ │ ├── source │ │ │ ├── bitmath.cpp │ │ │ └── registrymemory.cpp │ │ │ ├── strutil.h │ │ │ ├── text.h │ │ │ ├── thread.h │ │ │ ├── thunk.h │ │ │ ├── time.h │ │ │ ├── tls.h │ │ │ ├── unknown.h │ │ │ ├── vdalloc.h │ │ │ ├── vdstdc.h │ │ │ ├── vdstl.h │ │ │ ├── vdstl_hash.h │ │ │ ├── vdstl_hashmap.h │ │ │ ├── vdstl_hashset.h │ │ │ ├── vdstl_hashtable.h │ │ │ ├── vdstl_vector.h │ │ │ ├── vdtypes.h │ │ │ ├── vectors.h │ │ │ ├── vectors_float.h │ │ │ ├── vectors_int.h │ │ │ ├── w32assist.h │ │ │ ├── win32 │ │ │ ├── intrin.h │ │ │ └── miniwindows.h │ │ │ └── zip.h │ └── system │ │ ├── h │ │ └── stdafx.h │ │ ├── source │ │ ├── Error.cpp │ │ ├── Fraction.cpp │ │ ├── VDNamespace.cpp │ │ ├── VDScheduler.cpp │ │ ├── VDString.cpp │ │ ├── a64_cpuaccel.asm │ │ ├── a64_fraction.asm │ │ ├── a64_int128.asm │ │ ├── a64_thunk.asm │ │ ├── a_memory.asm │ │ ├── a_thunk.asm │ │ ├── bitmath.cpp │ │ ├── cache.cpp │ │ ├── cmdline.cpp │ │ ├── cpuaccel.cpp │ │ ├── date.cpp │ │ ├── debug.cpp │ │ ├── debugx86.cpp │ │ ├── error_win32.cpp │ │ ├── event.cpp │ │ ├── file.cpp │ │ ├── fileasync.cpp │ │ ├── filestream.cpp │ │ ├── filesys.cpp │ │ ├── filewatcher.cpp │ │ ├── halffloat.cpp │ │ ├── hash.cpp │ │ ├── int128.cpp │ │ ├── linearalloc.cpp │ │ ├── list.cpp │ │ ├── log.cpp │ │ ├── math.cpp │ │ ├── memory.cpp │ │ ├── process.cpp │ │ ├── profile.cpp │ │ ├── progress.cpp │ │ ├── protscope.cpp │ │ ├── refcount.cpp │ │ ├── registry.cpp │ │ ├── stdaccel.cpp │ │ ├── stdafx.cpp │ │ ├── strutil.cpp │ │ ├── text.cpp │ │ ├── thread.cpp │ │ ├── thunk.cpp │ │ ├── time.cpp │ │ ├── tls.cpp │ │ ├── vdalloc.cpp │ │ ├── vdstl.cpp │ │ ├── vdstl_hash.cpp │ │ ├── vdstl_hashtable.cpp │ │ ├── vectors.cpp │ │ ├── w32assist.cpp │ │ └── zip.cpp │ │ ├── system.vcxproj │ │ └── system.vcxproj.filters │ ├── boost_lib │ └── boost │ │ ├── align.hpp │ │ ├── align │ │ ├── align.hpp │ │ ├── aligned_alloc.hpp │ │ ├── aligned_allocator.hpp │ │ ├── aligned_allocator_adaptor.hpp │ │ ├── aligned_allocator_adaptor_forward.hpp │ │ ├── aligned_allocator_forward.hpp │ │ ├── aligned_delete.hpp │ │ ├── aligned_delete_forward.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_of_forward.hpp │ │ ├── detail │ │ │ ├── address.hpp │ │ │ ├── addressof.hpp │ │ │ ├── align.hpp │ │ │ ├── align_cxx11.hpp │ │ │ ├── aligned_alloc.hpp │ │ │ ├── aligned_alloc_android.hpp │ │ │ ├── aligned_alloc_macos.hpp │ │ │ ├── aligned_alloc_msvc.hpp │ │ │ ├── aligned_alloc_posix.hpp │ │ │ ├── aligned_alloc_sunos.hpp │ │ │ ├── alignment_of.hpp │ │ │ ├── alignment_of_clang.hpp │ │ │ ├── alignment_of_codegear.hpp │ │ │ ├── alignment_of_cxx11.hpp │ │ │ ├── alignment_of_gcc.hpp │ │ │ ├── alignment_of_msvc.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── is_aligned.hpp │ │ │ ├── is_alignment.hpp │ │ │ ├── is_alignment_constant.hpp │ │ │ ├── max_align.hpp │ │ │ ├── max_count_of.hpp │ │ │ ├── min_size.hpp │ │ │ ├── offset_object.hpp │ │ │ └── remove_traits.hpp │ │ └── is_aligned.hpp │ │ ├── aligned_storage.hpp │ │ ├── any.hpp │ │ ├── archive │ │ ├── add_facet.hpp │ │ ├── archive_exception.hpp │ │ ├── basic_archive.hpp │ │ ├── basic_binary_iarchive.hpp │ │ ├── basic_binary_iprimitive.hpp │ │ ├── basic_binary_oarchive.hpp │ │ ├── basic_binary_oprimitive.hpp │ │ ├── basic_streambuf_locale_saver.hpp │ │ ├── basic_text_iarchive.hpp │ │ ├── basic_text_iprimitive.hpp │ │ ├── basic_text_oarchive.hpp │ │ ├── basic_text_oprimitive.hpp │ │ ├── basic_xml_archive.hpp │ │ ├── basic_xml_iarchive.hpp │ │ ├── basic_xml_oarchive.hpp │ │ ├── binary_iarchive.hpp │ │ ├── binary_iarchive_impl.hpp │ │ ├── binary_oarchive.hpp │ │ ├── binary_oarchive_impl.hpp │ │ ├── binary_wiarchive.hpp │ │ ├── binary_woarchive.hpp │ │ ├── codecvt_null.hpp │ │ ├── detail │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── archive_serializer_map.hpp │ │ │ ├── auto_link_archive.hpp │ │ │ ├── auto_link_warchive.hpp │ │ │ ├── basic_archive_impl.hpp │ │ │ ├── basic_config.hpp │ │ │ ├── basic_iarchive.hpp │ │ │ ├── basic_iserializer.hpp │ │ │ ├── basic_oarchive.hpp │ │ │ ├── basic_oserializer.hpp │ │ │ ├── basic_pointer_iserializer.hpp │ │ │ ├── basic_pointer_oserializer.hpp │ │ │ ├── basic_serializer.hpp │ │ │ ├── basic_serializer_map.hpp │ │ │ ├── check.hpp │ │ │ ├── common_iarchive.hpp │ │ │ ├── common_oarchive.hpp │ │ │ ├── decl.hpp │ │ │ ├── helper_collection.hpp │ │ │ ├── interface_iarchive.hpp │ │ │ ├── interface_oarchive.hpp │ │ │ ├── iserializer.hpp │ │ │ ├── oserializer.hpp │ │ │ ├── polymorphic_iarchive_route.hpp │ │ │ ├── polymorphic_oarchive_route.hpp │ │ │ ├── register_archive.hpp │ │ │ └── utf8_codecvt_facet.hpp │ │ ├── dinkumware.hpp │ │ ├── impl │ │ │ ├── archive_serializer_map.ipp │ │ │ ├── basic_binary_iarchive.ipp │ │ │ ├── basic_binary_iprimitive.ipp │ │ │ ├── basic_binary_oarchive.ipp │ │ │ ├── basic_binary_oprimitive.ipp │ │ │ ├── basic_text_iarchive.ipp │ │ │ ├── basic_text_iprimitive.ipp │ │ │ ├── basic_text_oarchive.ipp │ │ │ ├── basic_text_oprimitive.ipp │ │ │ ├── basic_xml_grammar.hpp │ │ │ ├── basic_xml_iarchive.ipp │ │ │ ├── basic_xml_oarchive.ipp │ │ │ ├── text_iarchive_impl.ipp │ │ │ ├── text_oarchive_impl.ipp │ │ │ ├── text_wiarchive_impl.ipp │ │ │ ├── text_woarchive_impl.ipp │ │ │ ├── xml_iarchive_impl.ipp │ │ │ ├── xml_oarchive_impl.ipp │ │ │ ├── xml_wiarchive_impl.ipp │ │ │ └── xml_woarchive_impl.ipp │ │ ├── iterators │ │ │ ├── base64_exception.hpp │ │ │ ├── base64_from_binary.hpp │ │ │ ├── binary_from_base64.hpp │ │ │ ├── dataflow.hpp │ │ │ ├── dataflow_exception.hpp │ │ │ ├── escape.hpp │ │ │ ├── head_iterator.hpp │ │ │ ├── insert_linebreaks.hpp │ │ │ ├── istream_iterator.hpp │ │ │ ├── mb_from_wchar.hpp │ │ │ ├── ostream_iterator.hpp │ │ │ ├── remove_whitespace.hpp │ │ │ ├── transform_width.hpp │ │ │ ├── unescape.hpp │ │ │ ├── wchar_from_mb.hpp │ │ │ ├── xml_escape.hpp │ │ │ ├── xml_unescape.hpp │ │ │ └── xml_unescape_exception.hpp │ │ ├── polymorphic_binary_iarchive.hpp │ │ ├── polymorphic_binary_oarchive.hpp │ │ ├── polymorphic_iarchive.hpp │ │ ├── polymorphic_oarchive.hpp │ │ ├── polymorphic_text_iarchive.hpp │ │ ├── polymorphic_text_oarchive.hpp │ │ ├── polymorphic_text_wiarchive.hpp │ │ ├── polymorphic_text_woarchive.hpp │ │ ├── polymorphic_xml_iarchive.hpp │ │ ├── polymorphic_xml_oarchive.hpp │ │ ├── polymorphic_xml_wiarchive.hpp │ │ ├── polymorphic_xml_woarchive.hpp │ │ ├── shared_ptr_helper.hpp │ │ ├── text_iarchive.hpp │ │ ├── text_oarchive.hpp │ │ ├── text_wiarchive.hpp │ │ ├── text_woarchive.hpp │ │ ├── tmpdir.hpp │ │ ├── wcslen.hpp │ │ ├── xml_archive_exception.hpp │ │ ├── xml_iarchive.hpp │ │ ├── xml_oarchive.hpp │ │ ├── xml_wiarchive.hpp │ │ └── xml_woarchive.hpp │ │ ├── array.hpp │ │ ├── asio.hpp │ │ ├── assert.hpp │ │ ├── assign.hpp │ │ ├── atomic.hpp │ │ ├── bimap.hpp │ │ ├── bind.hpp │ │ ├── bind │ │ ├── apply.hpp │ │ ├── arg.hpp │ │ ├── bind.hpp │ │ ├── bind_cc.hpp │ │ ├── bind_mf2_cc.hpp │ │ ├── bind_mf_cc.hpp │ │ ├── bind_template.hpp │ │ ├── make_adaptable.hpp │ │ ├── mem_fn.hpp │ │ ├── mem_fn_cc.hpp │ │ ├── mem_fn_template.hpp │ │ ├── mem_fn_vw.hpp │ │ ├── placeholders.hpp │ │ ├── protect.hpp │ │ └── storage.hpp │ │ ├── blank.hpp │ │ ├── blank_fwd.hpp │ │ ├── call_traits.hpp │ │ ├── cast.hpp │ │ ├── cerrno.hpp │ │ ├── checked_delete.hpp │ │ ├── chrono.hpp │ │ ├── circular_buffer.hpp │ │ ├── circular_buffer_fwd.hpp │ │ ├── compressed_pair.hpp │ │ ├── concept_archetype.hpp │ │ ├── concept_check.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ └── visualc.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ ├── user.hpp │ │ └── warning_disable.hpp │ │ ├── core │ │ ├── addressof.hpp │ │ ├── checked_delete.hpp │ │ ├── demangle.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── ignore_unused.hpp │ │ ├── is_same.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_test_trait.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── noncopyable.hpp │ │ ├── null_deleter.hpp │ │ ├── ref.hpp │ │ ├── scoped_enum.hpp │ │ ├── swap.hpp │ │ ├── typeinfo.hpp │ │ └── underlying_type.hpp │ │ ├── crc.hpp │ │ ├── cregex.hpp │ │ ├── cstdfloat.hpp │ │ ├── cstdint.hpp │ │ ├── cstdlib.hpp │ │ ├── current_function.hpp │ │ ├── date_time.hpp │ │ ├── detail │ │ ├── algorithm.hpp │ │ ├── allocator_utilities.hpp │ │ ├── atomic_count.hpp │ │ ├── atomic_redef_macros.hpp │ │ ├── atomic_undef_macros.hpp │ │ ├── basic_pointerbuf.hpp │ │ ├── binary_search.hpp │ │ ├── bitmask.hpp │ │ ├── call_traits.hpp │ │ ├── catch_exceptions.hpp │ │ ├── compressed_pair.hpp │ │ ├── container_fwd.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── endian.hpp │ │ ├── fenv.hpp │ │ ├── has_default_constructor.hpp │ │ ├── identifier.hpp │ │ ├── indirect_traits.hpp │ │ ├── interlocked.hpp │ │ ├── is_incrementable.hpp │ │ ├── is_sorted.hpp │ │ ├── is_xxx.hpp │ │ ├── iterator.hpp │ │ ├── lcast_precision.hpp │ │ ├── lightweight_main.hpp │ │ ├── lightweight_mutex.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_thread.hpp │ │ ├── named_template_params.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── numeric_traits.hpp │ │ ├── ob_compressed_pair.hpp │ │ ├── quick_allocator.hpp │ │ ├── reference_content.hpp │ │ ├── scoped_enum_emulation.hpp │ │ ├── select_type.hpp │ │ ├── sp_typeinfo.hpp │ │ ├── templated_streams.hpp │ │ ├── utf8_codecvt_facet.hpp │ │ ├── utf8_codecvt_facet.ipp │ │ ├── winapi │ │ │ ├── GetCurrentProcess.hpp │ │ │ ├── GetCurrentThread.hpp │ │ │ ├── GetLastError.hpp │ │ │ ├── GetProcessTimes.hpp │ │ │ ├── GetThreadTimes.hpp │ │ │ ├── LocalFree.hpp │ │ │ ├── basic_types.hpp │ │ │ ├── config.hpp │ │ │ ├── crypt.hpp │ │ │ ├── directory_management.hpp │ │ │ ├── dll.hpp │ │ │ ├── error_handling.hpp │ │ │ ├── file_management.hpp │ │ │ ├── handles.hpp │ │ │ ├── memory.hpp │ │ │ ├── process.hpp │ │ │ ├── security.hpp │ │ │ ├── synchronization.hpp │ │ │ ├── system.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── time.hpp │ │ │ ├── timers.hpp │ │ │ ├── tls.hpp │ │ │ └── waitable_timer.hpp │ │ └── workaround.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── dynamic_bitset_fwd.hpp │ │ ├── enable_shared_from_this.hpp │ │ ├── exception │ │ ├── N3757.hpp │ │ ├── all.hpp │ │ ├── current_exception_cast.hpp │ │ ├── detail │ │ │ ├── clone_current_exception.hpp │ │ │ ├── error_info_impl.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── is_output_streamable.hpp │ │ │ ├── object_hex_dump.hpp │ │ │ └── type_info.hpp │ │ ├── diagnostic_information.hpp │ │ ├── enable_current_exception.hpp │ │ ├── enable_error_info.hpp │ │ ├── errinfo_api_function.hpp │ │ ├── errinfo_at_line.hpp │ │ ├── errinfo_errno.hpp │ │ ├── errinfo_file_handle.hpp │ │ ├── errinfo_file_name.hpp │ │ ├── errinfo_file_open_mode.hpp │ │ ├── errinfo_nested_exception.hpp │ │ ├── errinfo_type_info_name.hpp │ │ ├── error_info.hpp │ │ ├── exception.hpp │ │ ├── get_error_info.hpp │ │ ├── info.hpp │ │ ├── info_tuple.hpp │ │ ├── to_string.hpp │ │ └── to_string_stub.hpp │ │ ├── exception_ptr.hpp │ │ ├── filesystem.hpp │ │ ├── flyweight.hpp │ │ ├── flyweight │ │ ├── assoc_container_factory.hpp │ │ ├── assoc_container_factory_fwd.hpp │ │ ├── detail │ │ │ ├── archive_constructed.hpp │ │ │ ├── default_value_policy.hpp │ │ │ ├── dyn_perfect_fwd.hpp │ │ │ ├── flyweight_core.hpp │ │ │ ├── is_placeholder_expr.hpp │ │ │ ├── nested_xxx_if_not_ph.hpp │ │ │ ├── not_placeholder_expr.hpp │ │ │ ├── perfect_fwd.hpp │ │ │ ├── pp_perfect_fwd.hpp │ │ │ ├── recursive_lw_mutex.hpp │ │ │ ├── serialization_helper.hpp │ │ │ └── value_tag.hpp │ │ ├── factory_tag.hpp │ │ ├── flyweight.hpp │ │ ├── flyweight_fwd.hpp │ │ ├── hashed_factory.hpp │ │ ├── hashed_factory_fwd.hpp │ │ ├── holder_tag.hpp │ │ ├── intermodule_holder.hpp │ │ ├── intermodule_holder_fwd.hpp │ │ ├── key_value.hpp │ │ ├── key_value_fwd.hpp │ │ ├── locking_tag.hpp │ │ ├── no_locking.hpp │ │ ├── no_locking_fwd.hpp │ │ ├── no_tracking.hpp │ │ ├── no_tracking_fwd.hpp │ │ ├── refcounted.hpp │ │ ├── refcounted_fwd.hpp │ │ ├── serialize.hpp │ │ ├── set_factory.hpp │ │ ├── set_factory_fwd.hpp │ │ ├── simple_locking.hpp │ │ ├── simple_locking_fwd.hpp │ │ ├── static_holder.hpp │ │ ├── static_holder_fwd.hpp │ │ ├── tag.hpp │ │ └── tracking_tag.hpp │ │ ├── foreach.hpp │ │ ├── foreach_fwd.hpp │ │ ├── format.hpp │ │ ├── function.hpp │ │ ├── function_equal.hpp │ │ ├── function_output_iterator.hpp │ │ ├── function_types │ │ ├── components.hpp │ │ ├── config │ │ │ ├── cc_names.hpp │ │ │ ├── compiler.hpp │ │ │ └── config.hpp │ │ ├── detail │ │ │ ├── class_transform.hpp │ │ │ ├── classifier.hpp │ │ │ ├── classifier_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── components_as_mpl_sequence.hpp │ │ │ ├── components_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── encoding │ │ │ │ ├── aliases_def.hpp │ │ │ │ ├── aliases_undef.hpp │ │ │ │ ├── def.hpp │ │ │ │ └── undef.hpp │ │ │ ├── pp_arity_loop.hpp │ │ │ ├── pp_cc_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_loop.hpp │ │ │ ├── pp_retag_default_cc │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_tags │ │ │ │ ├── cc_tag.hpp │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_variate_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── retag_default_cc.hpp │ │ │ ├── synthesize.hpp │ │ │ ├── synthesize_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ └── to_sequence.hpp │ │ ├── function_arity.hpp │ │ ├── function_pointer.hpp │ │ ├── function_reference.hpp │ │ ├── function_type.hpp │ │ ├── is_callable_builtin.hpp │ │ ├── is_function.hpp │ │ ├── is_function_pointer.hpp │ │ ├── is_function_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_nonmember_callable_builtin.hpp │ │ ├── member_function_pointer.hpp │ │ ├── member_object_pointer.hpp │ │ ├── parameter_types.hpp │ │ ├── property_tags.hpp │ │ └── result_type.hpp │ │ ├── functional.hpp │ │ ├── functional │ │ ├── factory.hpp │ │ ├── forward_adapter.hpp │ │ ├── hash.hpp │ │ ├── hash │ │ │ ├── detail │ │ │ │ ├── float_functions.hpp │ │ │ │ ├── hash_float.hpp │ │ │ │ └── limits.hpp │ │ │ ├── extensions.hpp │ │ │ ├── hash.hpp │ │ │ └── hash_fwd.hpp │ │ ├── hash_fwd.hpp │ │ ├── lightweight_forward_adapter.hpp │ │ ├── overloaded_function.hpp │ │ ├── overloaded_function │ │ │ ├── config.hpp │ │ │ └── detail │ │ │ │ ├── base.hpp │ │ │ │ └── function_type.hpp │ │ └── value_factory.hpp │ │ ├── generator_iterator.hpp │ │ ├── geometry.hpp │ │ ├── get_pointer.hpp │ │ ├── implicit_cast.hpp │ │ ├── indirect_reference.hpp │ │ ├── integer.hpp │ │ ├── integer │ │ ├── integer_log2.hpp │ │ ├── integer_mask.hpp │ │ ├── static_log2.hpp │ │ └── static_min_max.hpp │ │ ├── integer_fwd.hpp │ │ ├── integer_traits.hpp │ │ ├── intrusive_ptr.hpp │ │ ├── io_fwd.hpp │ │ ├── is_placeholder.hpp │ │ ├── iterator.hpp │ │ ├── iterator │ │ ├── counting_iterator.hpp │ │ ├── detail │ │ │ ├── any_conversion_eater.hpp │ │ │ ├── config_def.hpp │ │ │ ├── config_undef.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── facade_iterator_category.hpp │ │ │ └── minimum_category.hpp │ │ ├── filter_iterator.hpp │ │ ├── function_input_iterator.hpp │ │ ├── indirect_iterator.hpp │ │ ├── interoperable.hpp │ │ ├── is_lvalue_iterator.hpp │ │ ├── is_readable_iterator.hpp │ │ ├── iterator_adaptor.hpp │ │ ├── iterator_archetypes.hpp │ │ ├── iterator_categories.hpp │ │ ├── iterator_concepts.hpp │ │ ├── iterator_facade.hpp │ │ ├── iterator_traits.hpp │ │ ├── minimum_category.hpp │ │ ├── new_iterator_tests.hpp │ │ ├── permutation_iterator.hpp │ │ ├── reverse_iterator.hpp │ │ ├── transform_iterator.hpp │ │ └── zip_iterator.hpp │ │ ├── iterator_adaptors.hpp │ │ ├── last_value.hpp │ │ ├── lexical_cast.hpp │ │ ├── limits.hpp │ │ ├── local_function.hpp │ │ ├── locale.hpp │ │ ├── make_shared.hpp │ │ ├── make_unique.hpp │ │ ├── math_fwd.hpp │ │ ├── mem_fn.hpp │ │ ├── memory_order.hpp │ │ ├── move │ │ ├── algorithm.hpp │ │ ├── core.hpp │ │ ├── default_delete.hpp │ │ ├── detail │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── move_helpers.hpp │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ └── workaround.hpp │ │ ├── iterator.hpp │ │ ├── make_unique.hpp │ │ ├── move.hpp │ │ ├── traits.hpp │ │ ├── unique_ptr.hpp │ │ ├── utility.hpp │ │ └── utility_core.hpp │ │ ├── mpi.hpp │ │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── accumulate.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── alias.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── arithmetic.hpp │ │ ├── as_sequence.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── apply_1st.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── back_impl.hpp │ │ │ ├── basic_bind.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── count_args.hpp │ │ │ ├── count_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── filter_iter.hpp │ │ │ ├── find_if_pred.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── fold_op.hpp │ │ │ ├── fold_pred.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_apply.hpp │ │ │ ├── iter_fold_if_impl.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── iter_push_front.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── order_impl.hpp │ │ │ ├── overload_names.hpp │ │ │ ├── partition_op.hpp │ │ │ ├── pop_back_impl.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── is_seq.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ ├── token_equal.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── ptr_to_ref.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── range_c │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── shift_op.hpp │ │ │ ├── single_element_iter.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── sort_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── test.hpp │ │ │ ├── test │ │ │ │ ├── assert.hpp │ │ │ │ ├── data.hpp │ │ │ │ └── test_case.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── transform_iter.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── base.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitor.hpp │ │ ├── bitwise.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── char.hpp │ │ ├── char_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── comparison.hpp │ │ ├── contains.hpp │ │ ├── contains_fwd.hpp │ │ ├── copy.hpp │ │ ├── copy_if.hpp │ │ ├── count.hpp │ │ ├── count_fwd.hpp │ │ ├── count_if.hpp │ │ ├── deque.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── divides.hpp │ │ ├── empty.hpp │ │ ├── empty_base.hpp │ │ ├── empty_fwd.hpp │ │ ├── empty_sequence.hpp │ │ ├── end.hpp │ │ ├── equal.hpp │ │ ├── equal_to.hpp │ │ ├── erase.hpp │ │ ├── erase_fwd.hpp │ │ ├── erase_key.hpp │ │ ├── erase_key_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── filter_view.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── fold.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── has_key.hpp │ │ ├── has_key_fwd.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── index_of.hpp │ │ ├── inherit.hpp │ │ ├── inherit_linearly.hpp │ │ ├── insert.hpp │ │ ├── insert_fwd.hpp │ │ ├── insert_range.hpp │ │ ├── insert_range_fwd.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iter_fold_if.hpp │ │ ├── iterator_category.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── key_type.hpp │ │ ├── key_type_fwd.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── list0.hpp │ │ │ ├── list0_c.hpp │ │ │ ├── list10.hpp │ │ │ ├── list10_c.hpp │ │ │ ├── list20.hpp │ │ │ ├── list20_c.hpp │ │ │ ├── list30.hpp │ │ │ ├── list30_c.hpp │ │ │ ├── list40.hpp │ │ │ ├── list40_c.hpp │ │ │ ├── list50.hpp │ │ │ └── list50_c.hpp │ │ ├── list_c.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── lower_bound.hpp │ │ ├── map.hpp │ │ ├── map │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── map10.hpp │ │ │ ├── map20.hpp │ │ │ ├── map30.hpp │ │ │ ├── map40.hpp │ │ │ └── map50.hpp │ │ ├── math │ │ │ ├── fixed_c.hpp │ │ │ ├── is_even.hpp │ │ │ └── rational_c.hpp │ │ ├── max.hpp │ │ ├── max_element.hpp │ │ ├── min.hpp │ │ ├── min_element.hpp │ │ ├── min_max.hpp │ │ ├── minus.hpp │ │ ├── modulus.hpp │ │ ├── multiplies.hpp │ │ ├── multiset │ │ │ ├── aux_ │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── multiset0.hpp │ │ │ │ └── tag.hpp │ │ │ └── multiset0.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── not_equal_to.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── order.hpp │ │ ├── order_fwd.hpp │ │ ├── pair.hpp │ │ ├── pair_view.hpp │ │ ├── partition.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── print.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── range_c.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── reverse_iter_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── set.hpp │ │ ├── set │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── set0.hpp │ │ │ ├── set0_c.hpp │ │ │ ├── set10.hpp │ │ │ ├── set10_c.hpp │ │ │ ├── set20.hpp │ │ │ ├── set20_c.hpp │ │ │ ├── set30.hpp │ │ │ ├── set30_c.hpp │ │ │ ├── set40.hpp │ │ │ ├── set40_c.hpp │ │ │ ├── set50.hpp │ │ │ └── set50_c.hpp │ │ ├── set_c.hpp │ │ ├── shift_left.hpp │ │ ├── shift_right.hpp │ │ ├── single_view.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── size_t.hpp │ │ ├── size_t_fwd.hpp │ │ ├── sizeof.hpp │ │ ├── sort.hpp │ │ ├── stable_partition.hpp │ │ ├── string.hpp │ │ ├── switch.hpp │ │ ├── tag.hpp │ │ ├── times.hpp │ │ ├── transform.hpp │ │ ├── transform_view.hpp │ │ ├── unique.hpp │ │ ├── unpack_args.hpp │ │ ├── upper_bound.hpp │ │ ├── value_type.hpp │ │ ├── value_type_fwd.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── vector_c.hpp │ │ ├── void.hpp │ │ ├── void_fwd.hpp │ │ └── zip_view.hpp │ │ ├── multi_array.hpp │ │ ├── multi_index │ │ ├── composite_key.hpp │ │ ├── detail │ │ │ ├── access_specifier.hpp │ │ │ ├── adl_swap.hpp │ │ │ ├── archive_constructed.hpp │ │ │ ├── auto_space.hpp │ │ │ ├── base_type.hpp │ │ │ ├── bidir_node_iterator.hpp │ │ │ ├── bucket_array.hpp │ │ │ ├── cons_stdtuple.hpp │ │ │ ├── converter.hpp │ │ │ ├── copy_map.hpp │ │ │ ├── do_not_copy_elements_tag.hpp │ │ │ ├── duplicates_iterator.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── hash_index_args.hpp │ │ │ ├── hash_index_iterator.hpp │ │ │ ├── hash_index_node.hpp │ │ │ ├── header_holder.hpp │ │ │ ├── index_base.hpp │ │ │ ├── index_loader.hpp │ │ │ ├── index_matcher.hpp │ │ │ ├── index_node_base.hpp │ │ │ ├── index_saver.hpp │ │ │ ├── invariant_assert.hpp │ │ │ ├── is_index_list.hpp │ │ │ ├── iter_adaptor.hpp │ │ │ ├── modify_key_adaptor.hpp │ │ │ ├── no_duplicate_tags.hpp │ │ │ ├── node_type.hpp │ │ │ ├── ord_index_args.hpp │ │ │ ├── ord_index_node.hpp │ │ │ ├── ord_index_ops.hpp │ │ │ ├── rnd_index_loader.hpp │ │ │ ├── rnd_index_node.hpp │ │ │ ├── rnd_index_ops.hpp │ │ │ ├── rnd_index_ptr_array.hpp │ │ │ ├── rnd_node_iterator.hpp │ │ │ ├── safe_mode.hpp │ │ │ ├── scope_guard.hpp │ │ │ ├── seq_index_node.hpp │ │ │ ├── seq_index_ops.hpp │ │ │ ├── serialization_version.hpp │ │ │ ├── uintptr_type.hpp │ │ │ ├── unbounded.hpp │ │ │ ├── value_compare.hpp │ │ │ └── vartempl_support.hpp │ │ ├── global_fun.hpp │ │ ├── hashed_index.hpp │ │ ├── hashed_index_fwd.hpp │ │ ├── identity.hpp │ │ ├── identity_fwd.hpp │ │ ├── indexed_by.hpp │ │ ├── key_extractors.hpp │ │ ├── mem_fun.hpp │ │ ├── member.hpp │ │ ├── ordered_index.hpp │ │ ├── ordered_index_fwd.hpp │ │ ├── random_access_index.hpp │ │ ├── random_access_index_fwd.hpp │ │ ├── safe_mode_errors.hpp │ │ ├── sequenced_index.hpp │ │ ├── sequenced_index_fwd.hpp │ │ └── tag.hpp │ │ ├── multi_index_container.hpp │ │ ├── multi_index_container_fwd.hpp │ │ ├── next_prior.hpp │ │ ├── non_type.hpp │ │ ├── noncopyable.hpp │ │ ├── nondet_random.hpp │ │ ├── none.hpp │ │ ├── none_t.hpp │ │ ├── operators.hpp │ │ ├── optional.hpp │ │ ├── parameter.hpp │ │ ├── parameter │ │ ├── aux_ │ │ │ ├── arg_list.hpp │ │ │ ├── cast.hpp │ │ │ ├── default.hpp │ │ │ ├── is_maybe.hpp │ │ │ ├── maybe.hpp │ │ │ ├── overloads.hpp │ │ │ ├── parameter_requirements.hpp │ │ │ ├── parenthesized_type.hpp │ │ │ ├── preprocessor │ │ │ │ ├── flatten.hpp │ │ │ │ └── for_each.hpp │ │ │ ├── python │ │ │ │ ├── invoker.hpp │ │ │ │ └── invoker_iterate.hpp │ │ │ ├── result_of0.hpp │ │ │ ├── set.hpp │ │ │ ├── tag.hpp │ │ │ ├── tagged_argument.hpp │ │ │ ├── template_keyword.hpp │ │ │ ├── unwrap_cv_reference.hpp │ │ │ ├── void.hpp │ │ │ └── yesno.hpp │ │ ├── binding.hpp │ │ ├── config.hpp │ │ ├── keyword.hpp │ │ ├── macros.hpp │ │ ├── match.hpp │ │ ├── name.hpp │ │ ├── parameters.hpp │ │ ├── preprocessor.hpp │ │ ├── python.hpp │ │ └── value_type.hpp │ │ ├── phoenix.hpp │ │ ├── pointee.hpp │ │ ├── pointer_cast.hpp │ │ ├── pointer_to_other.hpp │ │ ├── polymorphic_cast.hpp │ │ ├── predef.h │ │ ├── predef │ │ ├── architecture.h │ │ ├── architecture │ │ │ ├── alpha.h │ │ │ ├── arm.h │ │ │ ├── blackfin.h │ │ │ ├── convex.h │ │ │ ├── ia64.h │ │ │ ├── m68k.h │ │ │ ├── mips.h │ │ │ ├── parisc.h │ │ │ ├── ppc.h │ │ │ ├── pyramid.h │ │ │ ├── rs6k.h │ │ │ ├── sparc.h │ │ │ ├── superh.h │ │ │ ├── sys370.h │ │ │ ├── sys390.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ │ ├── 32.h │ │ │ │ └── 64.h │ │ │ └── z.h │ │ ├── compiler.h │ │ ├── compiler │ │ │ ├── borland.h │ │ │ ├── clang.h │ │ │ ├── comeau.h │ │ │ ├── compaq.h │ │ │ ├── diab.h │ │ │ ├── digitalmars.h │ │ │ ├── dignus.h │ │ │ ├── edg.h │ │ │ ├── ekopath.h │ │ │ ├── gcc.h │ │ │ ├── gcc_xml.h │ │ │ ├── greenhills.h │ │ │ ├── hp_acc.h │ │ │ ├── iar.h │ │ │ ├── ibm.h │ │ │ ├── intel.h │ │ │ ├── kai.h │ │ │ ├── llvm.h │ │ │ ├── metaware.h │ │ │ ├── metrowerks.h │ │ │ ├── microtec.h │ │ │ ├── mpw.h │ │ │ ├── palm.h │ │ │ ├── pgi.h │ │ │ ├── sgi_mipspro.h │ │ │ ├── sunpro.h │ │ │ ├── tendra.h │ │ │ ├── visualc.h │ │ │ └── watcom.h │ │ ├── detail │ │ │ ├── _cassert.h │ │ │ ├── _exception.h │ │ │ ├── comp_detected.h │ │ │ ├── endian_compat.h │ │ │ ├── os_detected.h │ │ │ ├── platform_detected.h │ │ │ └── test.h │ │ ├── language.h │ │ ├── language │ │ │ ├── objc.h │ │ │ ├── stdc.h │ │ │ └── stdcpp.h │ │ ├── library.h │ │ ├── library │ │ │ ├── c.h │ │ │ ├── c │ │ │ │ ├── _prefix.h │ │ │ │ ├── gnu.h │ │ │ │ ├── uc.h │ │ │ │ ├── vms.h │ │ │ │ └── zos.h │ │ │ ├── std.h │ │ │ └── std │ │ │ │ ├── _prefix.h │ │ │ │ ├── cxx.h │ │ │ │ ├── dinkumware.h │ │ │ │ ├── libcomo.h │ │ │ │ ├── modena.h │ │ │ │ ├── msl.h │ │ │ │ ├── roguewave.h │ │ │ │ ├── sgi.h │ │ │ │ ├── stdcpp3.h │ │ │ │ ├── stlport.h │ │ │ │ └── vacpp.h │ │ ├── make.h │ │ ├── os.h │ │ ├── os │ │ │ ├── aix.h │ │ │ ├── amigaos.h │ │ │ ├── android.h │ │ │ ├── beos.h │ │ │ ├── bsd.h │ │ │ ├── bsd │ │ │ │ ├── bsdi.h │ │ │ │ ├── dragonfly.h │ │ │ │ ├── free.h │ │ │ │ ├── net.h │ │ │ │ └── open.h │ │ │ ├── cygwin.h │ │ │ ├── hpux.h │ │ │ ├── ios.h │ │ │ ├── irix.h │ │ │ ├── linux.h │ │ │ ├── macos.h │ │ │ ├── os400.h │ │ │ ├── qnxnto.h │ │ │ ├── solaris.h │ │ │ ├── unix.h │ │ │ ├── vms.h │ │ │ └── windows.h │ │ ├── other.h │ │ ├── other │ │ │ └── endian.h │ │ ├── platform.h │ │ ├── platform │ │ │ ├── mingw.h │ │ │ ├── windows_desktop.h │ │ │ ├── windows_phone.h │ │ │ ├── windows_runtime.h │ │ │ └── windows_store.h │ │ ├── version.h │ │ └── version_number.h │ │ ├── preprocessor.hpp │ │ ├── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ └── div_base.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── detail │ │ │ │ └── get_data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── assert_msg.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ ├── null.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_or_1.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_seq.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ ├── paren.hpp │ │ │ ├── paren_if.hpp │ │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── binary_transform.hpp │ │ │ │ └── split.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_tuple.hpp │ │ │ ├── transform.hpp │ │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── counter.hpp │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── rem.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── elem.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp │ │ ├── program_options.hpp │ │ ├── progress.hpp │ │ ├── python.hpp │ │ ├── random.hpp │ │ ├── range.hpp │ │ ├── ratio.hpp │ │ ├── rational.hpp │ │ ├── ref.hpp │ │ ├── regex.h │ │ ├── regex.hpp │ │ ├── regex_fwd.hpp │ │ ├── scope_exit.hpp │ │ ├── scoped_array.hpp │ │ ├── scoped_ptr.hpp │ │ ├── serialization │ │ ├── access.hpp │ │ ├── array.hpp │ │ ├── assume_abstract.hpp │ │ ├── base_object.hpp │ │ ├── binary_object.hpp │ │ ├── bitset.hpp │ │ ├── collection_size_type.hpp │ │ ├── collection_traits.hpp │ │ ├── collections_load_imp.hpp │ │ ├── collections_save_imp.hpp │ │ ├── complex.hpp │ │ ├── config.hpp │ │ ├── deque.hpp │ │ ├── detail │ │ │ ├── get_data.hpp │ │ │ ├── shared_count_132.hpp │ │ │ ├── shared_ptr_132.hpp │ │ │ ├── shared_ptr_nmt_132.hpp │ │ │ └── stack_constructor.hpp │ │ ├── ephemeral.hpp │ │ ├── export.hpp │ │ ├── extended_type_info.hpp │ │ ├── extended_type_info_no_rtti.hpp │ │ ├── extended_type_info_typeid.hpp │ │ ├── factory.hpp │ │ ├── force_include.hpp │ │ ├── forward_list.hpp │ │ ├── hash_collections_load_imp.hpp │ │ ├── hash_collections_save_imp.hpp │ │ ├── hash_map.hpp │ │ ├── hash_set.hpp │ │ ├── is_bitwise_serializable.hpp │ │ ├── item_version_type.hpp │ │ ├── level.hpp │ │ ├── level_enum.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── nvp.hpp │ │ ├── optional.hpp │ │ ├── pfto.hpp │ │ ├── priority_queue.hpp │ │ ├── queue.hpp │ │ ├── scoped_ptr.hpp │ │ ├── serialization.hpp │ │ ├── set.hpp │ │ ├── shared_ptr.hpp │ │ ├── shared_ptr_132.hpp │ │ ├── shared_ptr_helper.hpp │ │ ├── singleton.hpp │ │ ├── slist.hpp │ │ ├── smart_cast.hpp │ │ ├── split_free.hpp │ │ ├── split_member.hpp │ │ ├── stack.hpp │ │ ├── state_saver.hpp │ │ ├── static_warning.hpp │ │ ├── string.hpp │ │ ├── strong_typedef.hpp │ │ ├── throw_exception.hpp │ │ ├── tracking.hpp │ │ ├── tracking_enum.hpp │ │ ├── traits.hpp │ │ ├── type_info_implementation.hpp │ │ ├── unique_ptr.hpp │ │ ├── unordered_collections_load_imp.hpp │ │ ├── unordered_collections_save_imp.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── valarray.hpp │ │ ├── variant.hpp │ │ ├── vector.hpp │ │ ├── vector_135.hpp │ │ ├── version.hpp │ │ ├── void_cast.hpp │ │ ├── void_cast_fwd.hpp │ │ ├── weak_ptr.hpp │ │ └── wrapper.hpp │ │ ├── shared_array.hpp │ │ ├── shared_container_iterator.hpp │ │ ├── shared_ptr.hpp │ │ ├── signal.hpp │ │ ├── signals.hpp │ │ ├── signals2.hpp │ │ ├── smart_ptr.hpp │ │ ├── smart_ptr │ │ ├── allocate_shared_array.hpp │ │ ├── bad_weak_ptr.hpp │ │ ├── detail │ │ │ ├── array_allocator.hpp │ │ │ ├── array_count_impl.hpp │ │ │ ├── array_traits.hpp │ │ │ ├── array_utility.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── atomic_count_gcc.hpp │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ ├── atomic_count_nt.hpp │ │ │ ├── atomic_count_pt.hpp │ │ │ ├── atomic_count_solaris.hpp │ │ │ ├── atomic_count_spin.hpp │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ ├── atomic_count_sync.hpp │ │ │ ├── atomic_count_win32.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lwm_nop.hpp │ │ │ ├── lwm_pthreads.hpp │ │ │ ├── lwm_win32_cs.hpp │ │ │ ├── operator_bool.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── shared_count.hpp │ │ │ ├── sp_convertible.hpp │ │ │ ├── sp_counted_base.hpp │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ ├── sp_counted_base_aix.hpp │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ ├── sp_counted_base_nt.hpp │ │ │ ├── sp_counted_base_pt.hpp │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ ├── sp_counted_base_spin.hpp │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ ├── sp_counted_base_sync.hpp │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ ├── sp_counted_base_w32.hpp │ │ │ ├── sp_counted_impl.hpp │ │ │ ├── sp_forward.hpp │ │ │ ├── sp_has_sync.hpp │ │ │ ├── sp_if_array.hpp │ │ │ ├── sp_interlocked.hpp │ │ │ ├── sp_nullptr_t.hpp │ │ │ ├── spinlock.hpp │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ ├── spinlock_nt.hpp │ │ │ ├── spinlock_pool.hpp │ │ │ ├── spinlock_pt.hpp │ │ │ ├── spinlock_std_atomic.hpp │ │ │ ├── spinlock_sync.hpp │ │ │ ├── spinlock_w32.hpp │ │ │ ├── up_if_array.hpp │ │ │ ├── up_if_not_array.hpp │ │ │ └── yield_k.hpp │ │ ├── enable_shared_from_raw.hpp │ │ ├── enable_shared_from_this.hpp │ │ ├── intrusive_ptr.hpp │ │ ├── intrusive_ref_counter.hpp │ │ ├── make_shared.hpp │ │ ├── make_shared_array.hpp │ │ ├── make_shared_object.hpp │ │ ├── make_unique.hpp │ │ ├── make_unique_array.hpp │ │ ├── make_unique_object.hpp │ │ ├── owner_less.hpp │ │ ├── scoped_array.hpp │ │ ├── scoped_ptr.hpp │ │ ├── shared_array.hpp │ │ ├── shared_ptr.hpp │ │ └── weak_ptr.hpp │ │ ├── spirit.hpp │ │ ├── static_assert.hpp │ │ ├── strong_typedef.hpp │ │ ├── swap.hpp │ │ ├── thread.hpp │ │ ├── throw_exception.hpp │ │ ├── timer.hpp │ │ ├── token_functions.hpp │ │ ├── token_iterator.hpp │ │ ├── tokenizer.hpp │ │ ├── tuple │ │ ├── detail │ │ │ └── tuple_basic.hpp │ │ ├── tuple.hpp │ │ ├── tuple_comparison.hpp │ │ └── tuple_io.hpp │ │ ├── type.hpp │ │ ├── type_index.hpp │ │ ├── type_traits.hpp │ │ ├── type_traits │ │ ├── add_const.hpp │ │ ├── add_cv.hpp │ │ ├── add_lvalue_reference.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── add_volatile.hpp │ │ ├── aligned_storage.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_traits.hpp │ │ ├── arithmetic_traits.hpp │ │ ├── array_traits.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── common_type.hpp │ │ ├── composite_traits.hpp │ │ ├── conditional.hpp │ │ ├── config.hpp │ │ ├── conversion_traits.hpp │ │ ├── cv_traits.hpp │ │ ├── decay.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── common_type_imp.hpp │ │ │ ├── cv_traits_impl.hpp │ │ │ ├── false_result.hpp │ │ │ ├── has_binary_operator.hpp │ │ │ ├── has_postfix_operator.hpp │ │ │ ├── has_prefix_operator.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── size_t_trait_def.hpp │ │ │ ├── size_t_trait_undef.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ ├── type_trait_def.hpp │ │ │ ├── type_trait_undef.hpp │ │ │ ├── wrap.hpp │ │ │ └── yes_no_type.hpp │ │ ├── extent.hpp │ │ ├── floating_point_promotion.hpp │ │ ├── function_traits.hpp │ │ ├── has_bit_and.hpp │ │ ├── has_bit_and_assign.hpp │ │ ├── has_bit_or.hpp │ │ ├── has_bit_or_assign.hpp │ │ ├── has_bit_xor.hpp │ │ ├── has_bit_xor_assign.hpp │ │ ├── has_complement.hpp │ │ ├── has_dereference.hpp │ │ ├── has_divides.hpp │ │ ├── has_divides_assign.hpp │ │ ├── has_equal_to.hpp │ │ ├── has_greater.hpp │ │ ├── has_greater_equal.hpp │ │ ├── has_left_shift.hpp │ │ ├── has_left_shift_assign.hpp │ │ ├── has_less.hpp │ │ ├── has_less_equal.hpp │ │ ├── has_logical_and.hpp │ │ ├── has_logical_not.hpp │ │ ├── has_logical_or.hpp │ │ ├── has_minus.hpp │ │ ├── has_minus_assign.hpp │ │ ├── has_modulus.hpp │ │ ├── has_modulus_assign.hpp │ │ ├── has_multiplies.hpp │ │ ├── has_multiplies_assign.hpp │ │ ├── has_negate.hpp │ │ ├── has_new_operator.hpp │ │ ├── has_not_equal_to.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_constructor.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_nothrow_destructor.hpp │ │ ├── has_operator.hpp │ │ ├── has_plus.hpp │ │ ├── has_plus_assign.hpp │ │ ├── has_post_decrement.hpp │ │ ├── has_post_increment.hpp │ │ ├── has_pre_decrement.hpp │ │ ├── has_pre_increment.hpp │ │ ├── has_right_shift.hpp │ │ ├── has_right_shift_assign.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_trivial_move_assign.hpp │ │ ├── has_trivial_move_constructor.hpp │ │ ├── has_unary_minus.hpp │ │ ├── has_unary_plus.hpp │ │ ├── has_virtual_destructor.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── integral_promotion.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_base_of.hpp │ │ ├── is_base_of_tr1.hpp │ │ ├── is_class.hpp │ │ ├── is_complex.hpp │ │ ├── is_compound.hpp │ │ ├── is_const.hpp │ │ ├── is_convertible.hpp │ │ ├── is_copy_assignable.hpp │ │ ├── is_copy_constructible.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_final.hpp │ │ ├── is_float.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_fundamental.hpp │ │ ├── is_integral.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_nothrow_move_assignable.hpp │ │ ├── is_nothrow_move_constructible.hpp │ │ ├── is_object.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_signed.hpp │ │ ├── is_stateless.hpp │ │ ├── is_union.hpp │ │ ├── is_unsigned.hpp │ │ ├── is_virtual_base_of.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── make_signed.hpp │ │ ├── make_unsigned.hpp │ │ ├── object_traits.hpp │ │ ├── promote.hpp │ │ ├── rank.hpp │ │ ├── reference_traits.hpp │ │ ├── remove_all_extents.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_extent.hpp │ │ ├── remove_pointer.hpp │ │ ├── remove_reference.hpp │ │ ├── remove_volatile.hpp │ │ ├── same_traits.hpp │ │ ├── transform_traits.hpp │ │ ├── transform_traits_spec.hpp │ │ └── type_with_alignment.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── utility │ │ ├── addressof.hpp │ │ ├── base_from_member.hpp │ │ ├── binary.hpp │ │ ├── compare_pointees.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ ├── in_place_factory_prefix.hpp │ │ │ ├── in_place_factory_suffix.hpp │ │ │ └── result_of_iterate.hpp │ │ ├── empty_deleter.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── identity_type.hpp │ │ ├── in_place_factory.hpp │ │ ├── result_of.hpp │ │ ├── string_ref.hpp │ │ ├── string_ref_fwd.hpp │ │ ├── swap.hpp │ │ ├── typed_in_place_factory.hpp │ │ └── value_init.hpp │ │ ├── variant.hpp │ │ ├── version.hpp │ │ ├── visit_each.hpp │ │ ├── wave.hpp │ │ └── weak_ptr.hpp │ ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest.vcxproj │ │ └── gtest.vcxproj.filters │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ └── test │ │ │ └── Makefile │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj │ ├── log4cplus │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── REVISION │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── ar-lib │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── depcomp │ ├── docs │ │ ├── doxygen.config │ │ ├── doxygen.css │ │ ├── webpage_doxygen.config │ │ ├── webpage_footer.html │ │ └── webpage_header.html │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── log4cplus │ │ │ ├── appender.h │ │ │ ├── config.h.in │ │ │ ├── config.hxx │ │ │ ├── config │ │ │ ├── defines.hxx.in │ │ │ ├── macosx.h │ │ │ └── win32.h │ │ │ ├── configurator.h │ │ │ ├── consoleappender.h │ │ │ ├── fileappender.h │ │ │ ├── fstreams.h │ │ │ ├── helpers │ │ │ ├── appenderattachableimpl.h │ │ │ ├── loglog.h │ │ │ ├── logloguser.h │ │ │ ├── pointer.h │ │ │ ├── property.h │ │ │ ├── sleep.h │ │ │ ├── socket.h │ │ │ ├── socketbuffer.h │ │ │ ├── stringhelper.h │ │ │ ├── syncprims-pthreads.h │ │ │ ├── syncprims-win32.h │ │ │ ├── syncprims.h │ │ │ ├── thread-config.h │ │ │ ├── threads.h │ │ │ └── timehelper.h │ │ │ ├── hierarchy.h │ │ │ ├── hierarchylocker.h │ │ │ ├── layout.h │ │ │ ├── logger.h │ │ │ ├── loggingmacros.h │ │ │ ├── loglevel.h │ │ │ ├── ndc.h │ │ │ ├── nteventlogappender.h │ │ │ ├── nullappender.h │ │ │ ├── socketappender.h │ │ │ ├── spi │ │ │ ├── appenderattachable.h │ │ │ ├── factory.h │ │ │ ├── filter.h │ │ │ ├── loggerfactory.h │ │ │ ├── loggerimpl.h │ │ │ ├── loggingevent.h │ │ │ ├── objectregistry.h │ │ │ └── rootlogger.h │ │ │ ├── streams.h │ │ │ ├── syslogappender.h │ │ │ ├── tstring.h │ │ │ ├── version.h │ │ │ ├── win32consoleappender.h │ │ │ └── win32debugappender.h │ ├── install-sh │ ├── log4cplus.spec │ ├── loggingserver │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── loggingserver.cxx │ ├── ltmain.sh │ ├── m4 │ │ ├── ax_append_flag.m4 │ │ ├── ax_cflags_gcc_option.m4 │ │ ├── ax_cflags_sun_option.m4 │ │ ├── ax_cflags_warn_all.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── ax_declspec.m4 │ │ ├── ax_getaddrinfo.m4 │ │ ├── ax_gethostbyname_r.m4 │ │ ├── ax_log4cplus_wrappers.m4 │ │ ├── ax_pthread.m4 │ │ ├── ax_type_socklen_t.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ ├── mkinstalldirs │ ├── msvc │ │ ├── log4cplus_static.vcxproj │ │ └── log4cplus_static.vcxproj.filters │ ├── scripts │ │ ├── autogen.sh │ │ ├── clean_cmake_files.bat │ │ ├── clean_cmake_files.sh │ │ ├── doautoreconf.sh │ │ ├── fix-timestamps.sh │ │ └── prepare_dist_from_bzr.sh │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── appender.cxx │ │ ├── appenderattachableimpl.cxx │ │ ├── configurator.cxx │ │ ├── consoleappender.cxx │ │ ├── factory.cxx │ │ ├── fileappender.cxx │ │ ├── filter.cxx │ │ ├── global-init.cxx │ │ ├── hierarchy.cxx │ │ ├── hierarchylocker.cxx │ │ ├── layout.cxx │ │ ├── logger.cxx │ │ ├── loggerimpl.cxx │ │ ├── loggingevent.cxx │ │ ├── loglevel.cxx │ │ ├── loglog.cxx │ │ ├── logloguser.cxx │ │ ├── ndc.cxx │ │ ├── nteventlogappender.cxx │ │ ├── nullappender.cxx │ │ ├── objectregistry.cxx │ │ ├── patternlayout.cxx │ │ ├── pointer.cxx │ │ ├── property.cxx │ │ ├── rootlogger.cxx │ │ ├── sleep.cxx │ │ ├── socket-unix.cxx │ │ ├── socket-win32.cxx │ │ ├── socket.cxx │ │ ├── socketappender.cxx │ │ ├── socketbuffer.cxx │ │ ├── stringhelper.cxx │ │ ├── syncprims.cxx │ │ ├── syslogappender.cxx │ │ ├── threads.cxx │ │ ├── timehelper.cxx │ │ ├── version.cxx │ │ ├── win32consoleappender.cxx │ │ └── win32debugappender.cxx │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── appender_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── configandwatch_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── log4cplus.properties │ │ ├── log4cplus.properties.1 │ │ ├── log4cplus.properties.2 │ │ └── main.cxx │ │ ├── customloglevel_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── customloglevel.cxx │ │ ├── customloglevel.h │ │ ├── func.cxx │ │ └── main.cxx │ │ ├── fileappender_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── filter_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── log4cplus.properties │ │ └── main.cxx │ │ ├── hierarchy_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── loglog_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── ndc_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── ostream_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── patternlayout_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ ├── performance_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── log4cplus.properties │ │ └── main.cxx │ │ ├── priority_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── func.cxx │ │ └── main.cxx │ │ ├── propertyconfig_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── log4cplus.properties │ │ └── main.cxx │ │ ├── socket_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── main.cxx │ │ └── run_test │ │ ├── thread_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ │ └── timeformat_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cxx │ ├── mfc │ ├── afxctrlcontainer.cpp │ ├── afxglobals.cpp │ ├── stdafx.h │ └── winmdi.cpp │ └── unrar │ ├── acknow.txt │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── array.hpp │ ├── blake2s.cpp │ ├── blake2s.hpp │ ├── blake2s_sse.cpp │ ├── blake2sp.cpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── crypt.cpp │ ├── crypt.hpp │ ├── crypt1.cpp │ ├── crypt2.cpp │ ├── crypt3.cpp │ ├── crypt5.cpp │ ├── dll.cpp │ ├── dll.def │ ├── dll.hpp │ ├── dll.rc │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── hardlinks.cpp │ ├── hash.cpp │ ├── hash.hpp │ ├── headers.cpp │ ├── headers.hpp │ ├── headers5.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── license.txt │ ├── list.cpp │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── qopen.cpp │ ├── qopen.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rarpch.cpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rarvmtbl.cpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── recvol3.cpp │ ├── recvol5.cpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── rs16.cpp │ ├── rs16.hpp │ ├── savepos.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── secpassword.cpp │ ├── secpassword.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── sha256.cpp │ ├── sha256.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── threadmisc.cpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ui.cpp │ ├── ui.hpp │ ├── uicommon.cpp │ ├── uiconsole.cpp │ ├── uisilent.cpp │ ├── ulinks.cpp │ ├── ulinks.hpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unpack30.cpp │ ├── unpack50.cpp │ ├── unpack50frag.cpp │ ├── unpack50mt.cpp │ ├── unpackinline.cpp │ ├── unrar.vcxproj │ ├── unrar.vcxproj.filters │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ ├── win32lnk.cpp │ └── win32stm.cpp └── test ├── 1.ass ├── 10.ass ├── 11.ass ├── 12.ass ├── 13.ass ├── 14.ass ├── 15.ass ├── 16.ass ├── 17.ass ├── 18.ass ├── 19.ass ├── 2.ass ├── 20.ass ├── 21.ass ├── 22.ass ├── 23.ass ├── 24.ass ├── 25.ass ├── 25.mkv ├── 26.ass ├── 27.ass ├── 28.ass ├── 29.ass ├── 3.ass ├── 30.ass ├── 31.idx ├── 31.sub ├── 32.ass ├── 33.ass ├── 34.ass ├── 35.ass ├── 4.ass ├── 5.ass ├── 6.ass ├── 7.ass ├── 8.ass ├── 9.ass ├── issue.txt ├── unit_test ├── main.cpp ├── overall_test.cpp ├── subpic_alphablend_test_data.h ├── test_alphablend.h ├── test_instrinsics_macro.h ├── test_interlaced_uv_alphablend.h ├── test_overall.h ├── test_subsample_and_interlace.h ├── test_xy_filter.h ├── unit_test.vcxproj ├── unit_test.vcxproj.filters └── xy_filter_benchmark.h └── vsfilter.dll.properties /.github/workflows/issue-translator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/.github/workflows/issue-translator.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/.gitmodules -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/README.md -------------------------------------------------------------------------------- /VSFilter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/VSFilter.sln -------------------------------------------------------------------------------- /docs/HowToCompile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/docs/HowToCompile.txt -------------------------------------------------------------------------------- /docs/vsfilter_mod_plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/docs/vsfilter_mod_plan.txt -------------------------------------------------------------------------------- /docs/vsfilter_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/docs/vsfilter_note.txt -------------------------------------------------------------------------------- /include/IFilterVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/IFilterVersion.h -------------------------------------------------------------------------------- /include/SubRenderIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/SubRenderIntf.h -------------------------------------------------------------------------------- /include/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/Utf8.h -------------------------------------------------------------------------------- /include/avisynth/avisynth1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/avisynth/avisynth1.h -------------------------------------------------------------------------------- /include/avisynth/avisynth25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/avisynth/avisynth25.h -------------------------------------------------------------------------------- /include/dx/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/dx/d3d.h -------------------------------------------------------------------------------- /include/dx/d3dcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/dx/d3dcaps.h -------------------------------------------------------------------------------- /include/dx/d3dtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/dx/d3dtypes.h -------------------------------------------------------------------------------- /include/moreuuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/moreuuids.h -------------------------------------------------------------------------------- /include/stdafx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/stdafx_common.h -------------------------------------------------------------------------------- /include/stdafx_common_afx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/stdafx_common_afx.h -------------------------------------------------------------------------------- /include/stdafx_common_afx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/stdafx_common_afx2.h -------------------------------------------------------------------------------- /include/stdafx_common_dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/stdafx_common_dshow.h -------------------------------------------------------------------------------- /include/unrar/unrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/unrar/unrar.h -------------------------------------------------------------------------------- /include/unrar/unrardll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/unrar/unrardll.txt -------------------------------------------------------------------------------- /include/vd2/Copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/Copying -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/Filter.h -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/ScriptError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/ScriptError.h -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/ScriptInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/ScriptInterpreter.h -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/ScriptValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/ScriptValue.h -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/VBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/VBitmap.h -------------------------------------------------------------------------------- /include/vd2/OldFilterSDK/VirtualDub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/OldFilterSDK/VirtualDub.h -------------------------------------------------------------------------------- /include/vd2/PluginSDK.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/PluginSDK.chm -------------------------------------------------------------------------------- /include/vd2/VDXFrame/Unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/VDXFrame/Unknown.h -------------------------------------------------------------------------------- /include/vd2/VDXFrame/VideoFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/VDXFrame/VideoFilter.h -------------------------------------------------------------------------------- /include/vd2/VDXFrame/VideoFilterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/VDXFrame/VideoFilterDialog.h -------------------------------------------------------------------------------- /include/vd2/VDXFrame/VideoFilterEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/VDXFrame/VideoFilterEntry.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/Filter.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/ScriptError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/ScriptError.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/ScriptValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/ScriptValue.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/VBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/VBitmap.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/VirtualDub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/VirtualDub.h -------------------------------------------------------------------------------- /include/vd2/extras/FilterSDK/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/extras/FilterSDK/readme.txt -------------------------------------------------------------------------------- /include/vd2/plugin/vdaudiofilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/plugin/vdaudiofilt.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdinputdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/plugin/vdinputdriver.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/plugin/vdplugin.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdvideofilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/plugin/vdvideofilt.h -------------------------------------------------------------------------------- /include/vd2/plugin/vdvideoutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vd2/plugin/vdvideoutil.h -------------------------------------------------------------------------------- /include/vsfilter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/vsfilter_config.h -------------------------------------------------------------------------------- /include/winddk/devioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/winddk/devioctl.h -------------------------------------------------------------------------------- /include/winddk/ntddcdrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/winddk/ntddcdrm.h -------------------------------------------------------------------------------- /include/winddk/ntddcdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/winddk/ntddcdvd.h -------------------------------------------------------------------------------- /include/winddk/ntdddisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/winddk/ntdddisk.h -------------------------------------------------------------------------------- /include/winddk/ntddstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/include/winddk/ntddstor.h -------------------------------------------------------------------------------- /lib/libacof32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/lib/libacof32.lib -------------------------------------------------------------------------------- /lib/libacof64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/lib/libacof64.lib -------------------------------------------------------------------------------- /scripts/Install_XySubFilter.bat: -------------------------------------------------------------------------------- 1 | cd /d "%~dp0" 2 | regsvr32.exe XySubFilter.dll -------------------------------------------------------------------------------- /scripts/Uninstall_XySubFilter.bat: -------------------------------------------------------------------------------- 1 | cd /d "%~dp0" 2 | regsvr32.exe /u XySubFilter.dll -------------------------------------------------------------------------------- /scripts/build_vsfilter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/scripts/build_vsfilter.sh -------------------------------------------------------------------------------- /scripts/build_vsfilter_vs2012.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sh build_vsfilter.sh -compiler VS2012 4 | -------------------------------------------------------------------------------- /scripts/build_vsfilter_vs2013.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sh build_vsfilter.sh -compiler VS2013 4 | -------------------------------------------------------------------------------- /scripts/build_vsfilter_vs2019.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sh build_vsfilter.sh -compiler VS2019 4 | -------------------------------------------------------------------------------- /src/YASM.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/YASM.props -------------------------------------------------------------------------------- /src/YASM.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/YASM.targets -------------------------------------------------------------------------------- /src/YASM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/YASM.xml -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/common.props -------------------------------------------------------------------------------- /src/configuration.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/configuration.props -------------------------------------------------------------------------------- /src/decss/CSSauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/CSSauth.cpp -------------------------------------------------------------------------------- /src/decss/CSSauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/CSSauth.h -------------------------------------------------------------------------------- /src/decss/CSSscramble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/CSSscramble.cpp -------------------------------------------------------------------------------- /src/decss/CSSscramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/CSSscramble.h -------------------------------------------------------------------------------- /src/decss/DeCSSInputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/DeCSSInputPin.cpp -------------------------------------------------------------------------------- /src/decss/DeCSSInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/DeCSSInputPin.h -------------------------------------------------------------------------------- /src/decss/VobDec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/VobDec.cpp -------------------------------------------------------------------------------- /src/decss/VobDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/VobDec.h -------------------------------------------------------------------------------- /src/decss/VobFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/VobFile.cpp -------------------------------------------------------------------------------- /src/decss/VobFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/VobFile.h -------------------------------------------------------------------------------- /src/decss/decss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/decss.h -------------------------------------------------------------------------------- /src/decss/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/stdafx.cpp -------------------------------------------------------------------------------- /src/decss/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/stdafx.h -------------------------------------------------------------------------------- /src/decss/udf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/udf.cpp -------------------------------------------------------------------------------- /src/decss/udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/decss/udf.h -------------------------------------------------------------------------------- /src/dsutil/DSMPropertyBag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/DSMPropertyBag.cpp -------------------------------------------------------------------------------- /src/dsutil/DSMPropertyBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/DSMPropertyBag.h -------------------------------------------------------------------------------- /src/dsutil/DSUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/DSUtil.cpp -------------------------------------------------------------------------------- /src/dsutil/DSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/DSUtil.h -------------------------------------------------------------------------------- /src/dsutil/FontInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/FontInstaller.cpp -------------------------------------------------------------------------------- /src/dsutil/FontInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/FontInstaller.h -------------------------------------------------------------------------------- /src/dsutil/GolombBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/GolombBuffer.cpp -------------------------------------------------------------------------------- /src/dsutil/GolombBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/GolombBuffer.h -------------------------------------------------------------------------------- /src/dsutil/H264Nalu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/H264Nalu.cpp -------------------------------------------------------------------------------- /src/dsutil/H264Nalu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/H264Nalu.h -------------------------------------------------------------------------------- /src/dsutil/HdmvClipInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/HdmvClipInfo.cpp -------------------------------------------------------------------------------- /src/dsutil/HdmvClipInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/HdmvClipInfo.h -------------------------------------------------------------------------------- /src/dsutil/MediaTypeEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/MediaTypeEx.cpp -------------------------------------------------------------------------------- /src/dsutil/MediaTypeEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/MediaTypeEx.h -------------------------------------------------------------------------------- /src/dsutil/MediaTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/MediaTypes.cpp -------------------------------------------------------------------------------- /src/dsutil/MediaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/MediaTypes.h -------------------------------------------------------------------------------- /src/dsutil/Mpeg2Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/Mpeg2Def.h -------------------------------------------------------------------------------- /src/dsutil/NullRenderers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/NullRenderers.cpp -------------------------------------------------------------------------------- /src/dsutil/NullRenderers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/NullRenderers.h -------------------------------------------------------------------------------- /src/dsutil/SharedInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/SharedInclude.h -------------------------------------------------------------------------------- /src/dsutil/a_yuv2rgb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/a_yuv2rgb.asm -------------------------------------------------------------------------------- /src/dsutil/a_yuvtable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/a_yuvtable.asm -------------------------------------------------------------------------------- /src/dsutil/convert_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/convert_a.asm -------------------------------------------------------------------------------- /src/dsutil/dsutil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/dsutil.vcxproj -------------------------------------------------------------------------------- /src/dsutil/dsutil.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/dsutil.vcxproj.filters -------------------------------------------------------------------------------- /src/dsutil/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/stdafx.cpp -------------------------------------------------------------------------------- /src/dsutil/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/stdafx.h -------------------------------------------------------------------------------- /src/dsutil/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/text.cpp -------------------------------------------------------------------------------- /src/dsutil/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/text.h -------------------------------------------------------------------------------- /src/dsutil/vd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/vd.cpp -------------------------------------------------------------------------------- /src/dsutil/vd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/vd.h -------------------------------------------------------------------------------- /src/dsutil/vd_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/vd_asm.cpp -------------------------------------------------------------------------------- /src/dsutil/vd_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/vd_asm.h -------------------------------------------------------------------------------- /src/dsutil/xy_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/xy_utils.cpp -------------------------------------------------------------------------------- /src/dsutil/xy_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/dsutil/xy_utils.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/BaseClasses.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/BaseClasses.vcxproj -------------------------------------------------------------------------------- /src/filters/BaseClasses/activex.rcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/activex.rcv -------------------------------------------------------------------------------- /src/filters/BaseClasses/activex.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/activex.ver -------------------------------------------------------------------------------- /src/filters/BaseClasses/amextra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/amextra.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/amextra.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/amfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/amfilter.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/amfilter.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/amvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/amvideo.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/cache.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/combase.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/combase.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/cprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/cprop.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/cprop.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/ctlutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/ctlutil.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/ctlutil.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/ddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/ddmm.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/ddmm.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/dllentry.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/dllsetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/dllsetup.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/dllsetup.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/dsschedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/dsschedule.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/fourcc.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/measure.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/msgthrd.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/mtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/mtype.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/mtype.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/outputq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/outputq.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/outputq.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/pstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/pstream.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/pstream.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/pullpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/pullpin.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/pullpin.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/readme.txt -------------------------------------------------------------------------------- /src/filters/BaseClasses/refclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/refclock.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/refclock.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/reftime.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/renbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/renbase.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/renbase.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/schedule.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/seekpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/seekpt.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/seekpt.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/source.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/source.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/streams.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/strmctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/strmctl.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/strmctl.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/sysclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/sysclock.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/sysclock.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/transfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/transfrm.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/transfrm.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/transip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/transip.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/transip.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/videoctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/videoctl.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/videoctl.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/vtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/vtrans.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/vtrans.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/winctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/winctrl.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/winctrl.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/winutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/winutil.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/winutil.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxdebug.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxdebug.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxlist.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxlist.h -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxutil.cpp -------------------------------------------------------------------------------- /src/filters/BaseClasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/BaseClasses/wxutil.h -------------------------------------------------------------------------------- /src/filters/transform/basevideofilter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/basevideofilter/stdafx.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/CAutoTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/CAutoTiming.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/Copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/Copy.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/DirectVobSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/DirectVobSub.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/IDirectVobSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/IDirectVobSub.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/StdAfx.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/StdAfx.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/SubFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/SubFrame.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/SubFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/SubFrame.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/Systray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/Systray.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/Systray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/Systray.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/TextInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/TextInputPin.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/VSFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/VSFilter.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/VSFilter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/VSFilter.def -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/VSFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/VSFilter.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/VSFilter.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/VSFilter.props -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/VSFilter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/VSFilter.rc -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/XyOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/XyOptions.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/XyOptionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/XyOptionsImpl.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/csri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/csri.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/csriapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/csriapi.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/once_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/once_logger.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/once_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/once_logger.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/plugins.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/resource.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/timing_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/timing_logger.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/valami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/valami.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/version.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/version_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/version_in.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/vfr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/vfr.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/vfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/vfr.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/xy_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/xy_logger.cpp -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/xy_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/xy_logger.h -------------------------------------------------------------------------------- /src/filters/transform/vsfilter/xy_sub_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/filters/transform/vsfilter/xy_sub_filter.h -------------------------------------------------------------------------------- /src/subpic/CRect2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subpic/CRect2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/CRect2.h -------------------------------------------------------------------------------- /src/subpic/CoordGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/CoordGeom.cpp -------------------------------------------------------------------------------- /src/subpic/CoordGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/CoordGeom.h -------------------------------------------------------------------------------- /src/subpic/DX9SubPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/DX9SubPic.cpp -------------------------------------------------------------------------------- /src/subpic/DX9SubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/DX9SubPic.h -------------------------------------------------------------------------------- /src/subpic/ISimpleSubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/ISimpleSubPic.h -------------------------------------------------------------------------------- /src/subpic/ISubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/ISubPic.h -------------------------------------------------------------------------------- /src/subpic/ISubRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/ISubRender.h -------------------------------------------------------------------------------- /src/subpic/MemSubPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/MemSubPic.cpp -------------------------------------------------------------------------------- /src/subpic/MemSubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/MemSubPic.h -------------------------------------------------------------------------------- /src/subpic/PooledSubPic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/PooledSubPic.cpp -------------------------------------------------------------------------------- /src/subpic/PooledSubPic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/PooledSubPic.h -------------------------------------------------------------------------------- /src/subpic/SimpleSubPicProviderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubPicProviderImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SimpleSubPicProviderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubPicProviderImpl.h -------------------------------------------------------------------------------- /src/subpic/SimpleSubPicWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubPicWrapper.cpp -------------------------------------------------------------------------------- /src/subpic/SimpleSubPicWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubPicWrapper.h -------------------------------------------------------------------------------- /src/subpic/SimpleSubpicImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubpicImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SimpleSubpicImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SimpleSubpicImpl.h -------------------------------------------------------------------------------- /src/subpic/SubPicAllocatorPresenterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicAllocatorPresenterImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SubPicAllocatorPresenterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicAllocatorPresenterImpl.h -------------------------------------------------------------------------------- /src/subpic/SubPicImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SubPicImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicImpl.h -------------------------------------------------------------------------------- /src/subpic/SubPicProviderExWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicProviderExWrapper.cpp -------------------------------------------------------------------------------- /src/subpic/SubPicProviderExWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicProviderExWrapper.h -------------------------------------------------------------------------------- /src/subpic/SubPicProviderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicProviderImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SubPicProviderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicProviderImpl.h -------------------------------------------------------------------------------- /src/subpic/SubPicQueueImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicQueueImpl.cpp -------------------------------------------------------------------------------- /src/subpic/SubPicQueueImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/SubPicQueueImpl.h -------------------------------------------------------------------------------- /src/subpic/XySubRenderFrameWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/XySubRenderFrameWrapper.cpp -------------------------------------------------------------------------------- /src/subpic/XySubRenderFrameWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/XySubRenderFrameWrapper.h -------------------------------------------------------------------------------- /src/subpic/XySubRenderProviderWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/XySubRenderProviderWrapper.cpp -------------------------------------------------------------------------------- /src/subpic/XySubRenderProviderWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/XySubRenderProviderWrapper.h -------------------------------------------------------------------------------- /src/subpic/alpha_blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/alpha_blender.cpp -------------------------------------------------------------------------------- /src/subpic/alpha_blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/alpha_blender.h -------------------------------------------------------------------------------- /src/subpic/color_conv_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/color_conv_table.cpp -------------------------------------------------------------------------------- /src/subpic/color_conv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/color_conv_table.h -------------------------------------------------------------------------------- /src/subpic/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/stdafx.cpp -------------------------------------------------------------------------------- /src/subpic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/stdafx.h -------------------------------------------------------------------------------- /src/subpic/subpic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/subpic.vcxproj -------------------------------------------------------------------------------- /src/subpic/subpic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/subpic.vcxproj.filters -------------------------------------------------------------------------------- /src/subpic/xy_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subpic/xy_intrinsics.h -------------------------------------------------------------------------------- /src/subtitles/BaseSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/BaseSub.cpp -------------------------------------------------------------------------------- /src/subtitles/BaseSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/BaseSub.h -------------------------------------------------------------------------------- /src/subtitles/CCDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/CCDecoder.cpp -------------------------------------------------------------------------------- /src/subtitles/CCDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/CCDecoder.h -------------------------------------------------------------------------------- /src/subtitles/CompositionObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/CompositionObject.cpp -------------------------------------------------------------------------------- /src/subtitles/CompositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/CompositionObject.h -------------------------------------------------------------------------------- /src/subtitles/DVBSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/DVBSub.cpp -------------------------------------------------------------------------------- /src/subtitles/DVBSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/DVBSub.h -------------------------------------------------------------------------------- /src/subtitles/GFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/GFN.cpp -------------------------------------------------------------------------------- /src/subtitles/GFN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/GFN.h -------------------------------------------------------------------------------- /src/subtitles/HdmvSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/HdmvSub.cpp -------------------------------------------------------------------------------- /src/subtitles/HdmvSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/HdmvSub.h -------------------------------------------------------------------------------- /src/subtitles/RTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RTS.cpp -------------------------------------------------------------------------------- /src/subtitles/RTS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RTS.h -------------------------------------------------------------------------------- /src/subtitles/Rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/Rasterizer.cpp -------------------------------------------------------------------------------- /src/subtitles/Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/Rasterizer.h -------------------------------------------------------------------------------- /src/subtitles/RealTextParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RealTextParser.cpp -------------------------------------------------------------------------------- /src/subtitles/RealTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RealTextParser.h -------------------------------------------------------------------------------- /src/subtitles/RenderedHdmvSubtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RenderedHdmvSubtitle.cpp -------------------------------------------------------------------------------- /src/subtitles/RenderedHdmvSubtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/RenderedHdmvSubtitle.h -------------------------------------------------------------------------------- /src/subtitles/SSF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/SSF.cpp -------------------------------------------------------------------------------- /src/subtitles/SSF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/SSF.h -------------------------------------------------------------------------------- /src/subtitles/STS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/STS.cpp -------------------------------------------------------------------------------- /src/subtitles/STS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/STS.h -------------------------------------------------------------------------------- /src/subtitles/SeparableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/SeparableFilter.h -------------------------------------------------------------------------------- /src/subtitles/StdioFile64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/StdioFile64.cpp -------------------------------------------------------------------------------- /src/subtitles/StdioFile64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/StdioFile64.h -------------------------------------------------------------------------------- /src/subtitles/SubtitleInputPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/SubtitleInputPin.cpp -------------------------------------------------------------------------------- /src/subtitles/SubtitleInputPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/SubtitleInputPin.h -------------------------------------------------------------------------------- /src/subtitles/TextFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/TextFile.cpp -------------------------------------------------------------------------------- /src/subtitles/TextFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/TextFile.h -------------------------------------------------------------------------------- /src/subtitles/USFSubtitles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/USFSubtitles.cpp -------------------------------------------------------------------------------- /src/subtitles/USFSubtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/USFSubtitles.h -------------------------------------------------------------------------------- /src/subtitles/VobSubFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubFile.cpp -------------------------------------------------------------------------------- /src/subtitles/VobSubFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubFile.h -------------------------------------------------------------------------------- /src/subtitles/VobSubFileRipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubFileRipper.cpp -------------------------------------------------------------------------------- /src/subtitles/VobSubFileRipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubFileRipper.h -------------------------------------------------------------------------------- /src/subtitles/VobSubImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubImage.cpp -------------------------------------------------------------------------------- /src/subtitles/VobSubImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/VobSubImage.h -------------------------------------------------------------------------------- /src/subtitles/cache_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/cache_manager.cpp -------------------------------------------------------------------------------- /src/subtitles/cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/cache_manager.h -------------------------------------------------------------------------------- /src/subtitles/draw_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/draw_item.cpp -------------------------------------------------------------------------------- /src/subtitles/draw_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/draw_item.h -------------------------------------------------------------------------------- /src/subtitles/flyweight_base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/flyweight_base_types.h -------------------------------------------------------------------------------- /src/subtitles/hdmv_subtitle_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/hdmv_subtitle_provider.cpp -------------------------------------------------------------------------------- /src/subtitles/hdmv_subtitle_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/hdmv_subtitle_provider.h -------------------------------------------------------------------------------- /src/subtitles/libass_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libass_context.cpp -------------------------------------------------------------------------------- /src/subtitles/libass_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libass_context.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Arabic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Arabic.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Arabic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Arabic.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Array.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Array.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Exception.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Exception.h -------------------------------------------------------------------------------- /src/subtitles/libssf/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/File.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/File.h -------------------------------------------------------------------------------- /src/subtitles/libssf/FontWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/FontWrapper.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/FontWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/FontWrapper.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Glyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Glyph.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Glyph.h -------------------------------------------------------------------------------- /src/subtitles/libssf/GlyphPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/GlyphPath.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/GlyphPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/GlyphPath.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Node.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Node.h -------------------------------------------------------------------------------- /src/subtitles/libssf/NodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/NodeFactory.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/NodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/NodeFactory.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Rasterizer.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Rasterizer.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Renderer.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Renderer.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Split.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Split.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Stream.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Stream.h -------------------------------------------------------------------------------- /src/subtitles/libssf/StringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/StringMap.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/StringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/StringMap.h -------------------------------------------------------------------------------- /src/subtitles/libssf/Subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Subtitle.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/Subtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/Subtitle.h -------------------------------------------------------------------------------- /src/subtitles/libssf/SubtitleFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/SubtitleFile.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/SubtitleFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/SubtitleFile.h -------------------------------------------------------------------------------- /src/subtitles/libssf/demo/demo.ssa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/demo/demo.ssa -------------------------------------------------------------------------------- /src/subtitles/libssf/demo/demo.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/demo/demo.ssf -------------------------------------------------------------------------------- /src/subtitles/libssf/docs/ssf-specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/docs/ssf-specs.txt -------------------------------------------------------------------------------- /src/subtitles/libssf/libssf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/libssf.vcxproj -------------------------------------------------------------------------------- /src/subtitles/libssf/libssf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/libssf.vcxproj.filters -------------------------------------------------------------------------------- /src/subtitles/libssf/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/stdafx.cpp -------------------------------------------------------------------------------- /src/subtitles/libssf/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/libssf/stdafx.h -------------------------------------------------------------------------------- /src/subtitles/mru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/mru_cache.h -------------------------------------------------------------------------------- /src/subtitles/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/stdafx.cpp -------------------------------------------------------------------------------- /src/subtitles/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/stdafx.h -------------------------------------------------------------------------------- /src/subtitles/subpixel_position_controler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/subpixel_position_controler.cpp -------------------------------------------------------------------------------- /src/subtitles/subpixel_position_controler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/subpixel_position_controler.h -------------------------------------------------------------------------------- /src/subtitles/subtitles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/subtitles.vcxproj -------------------------------------------------------------------------------- /src/subtitles/subtitles.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/subtitles.vcxproj.filters -------------------------------------------------------------------------------- /src/subtitles/xy_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_bitmap.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_bitmap.h -------------------------------------------------------------------------------- /src/subtitles/xy_circular_array_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_circular_array_queue.h -------------------------------------------------------------------------------- /src/subtitles/xy_clipper_paint_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_clipper_paint_machine.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_clipper_paint_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_clipper_paint_machine.h -------------------------------------------------------------------------------- /src/subtitles/xy_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_filter.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_int_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_int_map.h -------------------------------------------------------------------------------- /src/subtitles/xy_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_malloc.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_malloc.h -------------------------------------------------------------------------------- /src/subtitles/xy_overlay_paint_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_overlay_paint_machine.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_overlay_paint_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_overlay_paint_machine.h -------------------------------------------------------------------------------- /src/subtitles/xy_widen_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_widen_region.cpp -------------------------------------------------------------------------------- /src/subtitles/xy_widen_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/subtitles/xy_widen_region.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/Kasumi/h/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/Kasumi/h/bitutils.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/Kasumi/h/blt_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/Kasumi/h/blt_setup.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/Kasumi/h/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/Kasumi/h/stdafx.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/Kasumi/h/uberblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/Kasumi/h/uberblit.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/Kasumi/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/Kasumi/pixel.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/Kasumi/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/Kasumi/text.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/Error.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/cache.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/date.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/debug.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/event.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/file.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/hash.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/list.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/log.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/math.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/seh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/seh.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/text.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/thunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/thunk.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/time.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/tls.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/vdstl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/vdstl.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/h/vd2/system/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/h/vd2/system/zip.h -------------------------------------------------------------------------------- /src/thirdparty/VirtualDub/system/h/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/VirtualDub/system/h/stdafx.h -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/align.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/align/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/align/align.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/any.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/array.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/asio.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/assert.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/assign.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/atomic.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bimap.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bind.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bind/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bind/apply.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bind/arg.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bind/bind.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/blank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/blank.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/blank_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/blank_fwd.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/call_traits.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cast.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cerrno.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/chrono.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/config.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/config/user.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/core/ref.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/core/swap.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/crc.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cregex.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cstdfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cstdfloat.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cstdint.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/cstdlib.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/date_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/date_time.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/flyweight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/flyweight.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/foreach.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/format.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/function.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/geometry.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/integer.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/io_fwd.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/iterator.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/limits.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/locale.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/math_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/math_fwd.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mem_fn.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/move/core.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/move/move.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpi.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/and.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/at.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/back.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/base.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/char.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/count.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/end.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/find.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/front.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/if.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/int.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/less.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/list.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/long.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/map.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/max.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/min.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/next.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/not.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/or.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/order.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/print.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/set.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/size.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/times.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/mpl/void.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/non_type.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/none.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/none_t.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/operators.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/optional.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/parameter.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/phoenix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/phoenix.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/pointee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/pointee.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/predef.h -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/predef/make.h -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/predef/os.h -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/progress.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/python.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/random.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/range.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/ratio.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/rational.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/ref.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/regex.h -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/regex.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/regex_fwd.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/signal.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/signals.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/signals2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/signals2.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/spirit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/spirit.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/swap.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/thread.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/timer.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/tokenizer.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/type.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/utility.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/variant.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/version.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/wave.hpp -------------------------------------------------------------------------------- /src/thirdparty/boost_lib/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/boost_lib/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /src/thirdparty/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/CHANGES -------------------------------------------------------------------------------- /src/thirdparty/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /src/thirdparty/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/Makefile.am -------------------------------------------------------------------------------- /src/thirdparty/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/Makefile.in -------------------------------------------------------------------------------- /src/thirdparty/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/README -------------------------------------------------------------------------------- /src/thirdparty/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/aclocal.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /src/thirdparty/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/build-aux/missing -------------------------------------------------------------------------------- /src/thirdparty/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /src/thirdparty/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/configure -------------------------------------------------------------------------------- /src/thirdparty/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/configure.ac -------------------------------------------------------------------------------- /src/thirdparty/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/thirdparty/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/make/Makefile -------------------------------------------------------------------------------- /src/thirdparty/gtest/msvc/gtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/msvc/gtest.vcxproj -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample1.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample2.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/samples/sample4.h -------------------------------------------------------------------------------- /src/thirdparty/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /src/thirdparty/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/scripts/pump.py -------------------------------------------------------------------------------- /src/thirdparty/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/production.cc -------------------------------------------------------------------------------- /src/thirdparty/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/gtest/test/production.h -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/AUTHORS -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/COPYING: -------------------------------------------------------------------------------- 1 | See the LICENSE file. 2 | -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/ChangeLog -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/INSTALL -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/Makefile.am -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/Makefile.in -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/NEWS: -------------------------------------------------------------------------------- 1 | See http://log4cplus.sourceforge.net/ for the latest news. 2 | -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/README -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/REVISION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/REVISION -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/acinclude.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/aclocal.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/ar-lib -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/config.guess -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/config.sub -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/configure -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/configure.in -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/depcomp -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/docs/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/docs/doxygen.config -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/docs/doxygen.css -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/include/Makefile.am -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/include/Makefile.in -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/install-sh -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/log4cplus.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/log4cplus.spec -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/ltmain.sh -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/ax_declspec.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/ax_declspec.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/libtool.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/missing -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/mkinstalldirs -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/scripts/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/scripts/autogen.sh -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/Makefile.am -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/Makefile.in -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/appender.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/appender.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/factory.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/filter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/filter.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/global-init.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/global-init.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/hierarchy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/hierarchy.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/layout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/layout.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/logger.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/logger.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/loggerimpl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/loggerimpl.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/loglevel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/loglevel.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/loglog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/loglog.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/logloguser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/logloguser.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/ndc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/ndc.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/pointer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/pointer.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/property.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/property.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/rootlogger.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/rootlogger.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/sleep.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/sleep.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/socket-unix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/socket-unix.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/socket.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/socket.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/syncprims.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/syncprims.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/threads.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/threads.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/timehelper.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/timehelper.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/src/version.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/src/version.cxx -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/tests/Makefile.am -------------------------------------------------------------------------------- /src/thirdparty/log4cplus/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/log4cplus/tests/Makefile.in -------------------------------------------------------------------------------- /src/thirdparty/mfc/afxctrlcontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/mfc/afxctrlcontainer.cpp -------------------------------------------------------------------------------- /src/thirdparty/mfc/afxglobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/mfc/afxglobals.cpp -------------------------------------------------------------------------------- /src/thirdparty/mfc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/mfc/stdafx.h -------------------------------------------------------------------------------- /src/thirdparty/mfc/winmdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/mfc/winmdi.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/acknow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/acknow.txt -------------------------------------------------------------------------------- /src/thirdparty/unrar/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/arccmt.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/archive.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/archive.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/arcread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/arcread.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/array.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/blake2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/blake2s.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/blake2s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/blake2s.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/blake2s_sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/blake2s_sse.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/blake2sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/blake2sp.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/cmddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/cmddata.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/cmddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/cmddata.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/coder.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/coder.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/compress.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/consio.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/consio.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crc.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crc.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt1.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt2.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt3.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/crypt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/crypt5.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/dll.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/dll.def -------------------------------------------------------------------------------- /src/thirdparty/unrar/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/dll.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/dll.rc -------------------------------------------------------------------------------- /src/thirdparty/unrar/encname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/encname.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/encname.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/encname.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/errhnd.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/errhnd.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/extinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/extinfo.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/extinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/extinfo.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/extract.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/extract.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filcreat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filcreat.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filcreat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filcreat.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/file.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/file.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filefn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filefn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filestr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filestr.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/filestr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/filestr.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/find.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/find.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/getbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/getbits.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/getbits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/getbits.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/global.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/global.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/hardlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/hardlinks.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/hash.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/hash.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/headers.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/headers.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/headers5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/headers5.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/isnt.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/isnt.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/license.txt -------------------------------------------------------------------------------- /src/thirdparty/unrar/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/list.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/list.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/loclang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/loclang.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/log.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/log.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/match.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/match.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/model.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/model.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/options.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/options.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/os.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/pathfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/pathfn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/pathfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/pathfn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/qopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/qopen.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/qopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/qopen.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rar.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rar.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rardefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rardefs.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rarlang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rarlang.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/raros.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rarpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rarpch.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rartypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rartypes.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rarvm.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rarvm.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rarvmtbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rarvmtbl.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rawread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rawread.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rawread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rawread.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rdwrfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rdwrfn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rdwrfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rdwrfn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/readme.txt -------------------------------------------------------------------------------- /src/thirdparty/unrar/recvol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/recvol.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/recvol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/recvol.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/recvol3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/recvol3.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/recvol5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/recvol5.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/resource.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/resource.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rijndael.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rijndael.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rijndael.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rs.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rs.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rs16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rs16.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/rs16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/rs16.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/savepos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/savepos.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/scantree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/scantree.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/scantree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/scantree.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/secpassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/secpassword.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/secpassword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/secpassword.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/sha1.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/sha1.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/sha256.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/sha256.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/smallfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/smallfn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/smallfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/smallfn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/strfn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/strfn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/strlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/strlist.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/strlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/strlist.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/suballoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/suballoc.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/suballoc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/suballoc.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/system.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/system.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/threadmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/threadmisc.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/threadpool.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/threadpool.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/timefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/timefn.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/timefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/timefn.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/ui.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/ui.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/uicommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/uicommon.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/uiconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/uiconsole.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/uisilent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/uisilent.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/ulinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/ulinks.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/ulinks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/ulinks.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unicode.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unicode.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack15.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack20.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack30.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack50.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack50frag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack50frag.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpack50mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpack50mt.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unpackinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unpackinline.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/unrar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unrar.vcxproj -------------------------------------------------------------------------------- /src/thirdparty/unrar/unrar.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/unrar.vcxproj.filters -------------------------------------------------------------------------------- /src/thirdparty/unrar/uowners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/uowners.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/version.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/volume.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/volume.hpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/win32acl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/win32acl.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/win32lnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/win32lnk.cpp -------------------------------------------------------------------------------- /src/thirdparty/unrar/win32stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/src/thirdparty/unrar/win32stm.cpp -------------------------------------------------------------------------------- /test/1.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/1.ass -------------------------------------------------------------------------------- /test/10.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/10.ass -------------------------------------------------------------------------------- /test/11.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/11.ass -------------------------------------------------------------------------------- /test/12.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/12.ass -------------------------------------------------------------------------------- /test/13.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/13.ass -------------------------------------------------------------------------------- /test/14.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/14.ass -------------------------------------------------------------------------------- /test/15.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/15.ass -------------------------------------------------------------------------------- /test/16.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/16.ass -------------------------------------------------------------------------------- /test/17.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/17.ass -------------------------------------------------------------------------------- /test/18.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/18.ass -------------------------------------------------------------------------------- /test/19.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/19.ass -------------------------------------------------------------------------------- /test/2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/2.ass -------------------------------------------------------------------------------- /test/20.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/20.ass -------------------------------------------------------------------------------- /test/21.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/21.ass -------------------------------------------------------------------------------- /test/22.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/22.ass -------------------------------------------------------------------------------- /test/23.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/23.ass -------------------------------------------------------------------------------- /test/24.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/24.ass -------------------------------------------------------------------------------- /test/25.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/25.ass -------------------------------------------------------------------------------- /test/25.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/25.mkv -------------------------------------------------------------------------------- /test/26.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/26.ass -------------------------------------------------------------------------------- /test/27.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/27.ass -------------------------------------------------------------------------------- /test/28.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/28.ass -------------------------------------------------------------------------------- /test/29.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/29.ass -------------------------------------------------------------------------------- /test/3.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/3.ass -------------------------------------------------------------------------------- /test/30.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/30.ass -------------------------------------------------------------------------------- /test/31.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/31.idx -------------------------------------------------------------------------------- /test/31.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/31.sub -------------------------------------------------------------------------------- /test/32.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/32.ass -------------------------------------------------------------------------------- /test/33.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/33.ass -------------------------------------------------------------------------------- /test/34.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/34.ass -------------------------------------------------------------------------------- /test/35.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/35.ass -------------------------------------------------------------------------------- /test/4.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/4.ass -------------------------------------------------------------------------------- /test/5.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/5.ass -------------------------------------------------------------------------------- /test/6.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/6.ass -------------------------------------------------------------------------------- /test/7.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/7.ass -------------------------------------------------------------------------------- /test/8.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/8.ass -------------------------------------------------------------------------------- /test/9.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/9.ass -------------------------------------------------------------------------------- /test/issue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/issue.txt -------------------------------------------------------------------------------- /test/unit_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/main.cpp -------------------------------------------------------------------------------- /test/unit_test/overall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/overall_test.cpp -------------------------------------------------------------------------------- /test/unit_test/subpic_alphablend_test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/subpic_alphablend_test_data.h -------------------------------------------------------------------------------- /test/unit_test/test_alphablend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/test_alphablend.h -------------------------------------------------------------------------------- /test/unit_test/test_instrinsics_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/test_instrinsics_macro.h -------------------------------------------------------------------------------- /test/unit_test/test_overall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/test_overall.h -------------------------------------------------------------------------------- /test/unit_test/test_xy_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/test_xy_filter.h -------------------------------------------------------------------------------- /test/unit_test/unit_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/unit_test.vcxproj -------------------------------------------------------------------------------- /test/unit_test/unit_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/unit_test.vcxproj.filters -------------------------------------------------------------------------------- /test/unit_test/xy_filter_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/unit_test/xy_filter_benchmark.h -------------------------------------------------------------------------------- /test/vsfilter.dll.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masaiki/xy-VSFilter/HEAD/test/vsfilter.dll.properties --------------------------------------------------------------------------------