Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. === Original Source
  2. http://sourceforge.net/projects/avisynth2/files/AviSynth%202.6/AviSynth%202.6.0/
  3.  
  4. === Patch Source
  5. cd src
  6. patch -s -p1 <../mt.diff
  7.  
  8. === Some changes
  9. Edit manually dsp files to remove incorrect stuff.
  10.  
  11. Image library removed.
  12. Additional sdk, doc stuff are removed.
  13. Custom build steps removed.
  14. Converted project.
  15.  
  16. Settings:
  17. Platform toolset is v140_xp
  18. Change library to /MT for SoundTouch.
  19. To remove /MD delete _MT and _LIB preprocessor
  20. SoftWire is /MT
  21. pfc is /MT
  22. Remove Pch
  23. Pch - not used
  24. Unload DirectShowSource
  25. avisynth: include path: add $(ProjectDir);$(ProjectDir)\mt
  26. expression.cpp:
  27. #include "mt/cacheMT.h"
  28. #include "cliplocalstorage.h"
  29. focus.cpp:
  30. change var name to y1
  31. Remove ImageSeq.cpp from project
  32.  
  33. convert_a.asm change custom build rule, outputs to:
  34. $(IntDir)\convert_a.obj;%(Outputs)
  35. Linker>Advanced> /SAFESEH:NO
  36.  
  37. Add to the project these files: src\mt
  38.  
  39. avisynth.cpp: find and comment Image_filters
  40.  
  41. Optimize: General>Whole Program Optimization: Use Link Time Code Generation
  42. C/C++ Multi-processor Compilation
  43.  
  44. Linker > Input: remove LIBC
  45.  
  46. C/C++ Enable Intrinsics
  47. C/C++ Code Generation: /arch:SSE2 + /fp:fast + Disable Security Check /GS-
  48.  
  49. Change of histogram filters in histogram.cpp
  50.  
  51. Change version string in internal.h
  52. #define AVS_VERSTR "AviSynth 2.60 MT min mod, rean build X: "__DATE__" ["__TIME__"]"
  53.  
  54. Change version info in avisynth.rc:
  55.  
  56. VALUE "InternalName", "AviSynth 2.6.0 MT rean mod\0"
  57. VALUE "ProductName", "Avisynth 2.6 MT rean mod\0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement