Log in

View Full Version : AvsFilterNet - writing avisynth filter in .NET


Pages : 1 [2]

MysteryX
3rd March 2017, 23:02
There are lots of C++ programs that auto-detect your CPU type and add assembly optimizations accordingly. FFMPEG and x264 are full of such optimizations.

It depends on how the code is structured and how the optimizations are implemented. There are other projects that require a different DLL per CPU type -- which is the case when you use compiler optimizations.

Groucho2004
3rd March 2017, 23:20
There are other projects that require a different DLL per CPU type -- which is the case when you use compiler optimizations.It depends. The Intel C/C++ compiler for example has an automatic CPU dispatcher, no need to build multiple binaries.

MysteryX
21st March 2017, 23:21
AvsFilterNet v1.0.3 is ready! (https://github.com/mysteryx93/AvsFilterNet/releases/tag/v1.0.3)

What's new:
- Fixed crash when an expection is thrown
- Can now initialize filter without child
- Fixed the code of LoadImageNet sample
- Added LoadAllPlugins sample that calls LoadPlugin and then calls the function
- Compiled with Visual Studio 2017

MysteryX
22nd March 2017, 17:04
AvsFilterNet v1.0.4 is ready! (https://github.com/mysteryx93/AvsFilterNet/releases/tag/v1.0.4)

What's new:
- Error messages no longer include full stack trace
- Overriding GetFrame function is now optional