Skip to content

Commit

Permalink
Cosmetics.
Browse files Browse the repository at this point in the history
  • Loading branch information
chikuzen committed Mar 26, 2016
1 parent f54ba5b commit 066ffce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions avisynth/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ Syntax:

Note:

TCannyMod requires appropriate memry alignments.
Thus, if you want to crop the left side of your source clip before this filter,
you have to set crop(align=true).
- TCannyMod requires appropriate memry alignments.
Thus, if you want to crop the left side of your source clip before this filter,
you have to set crop(align=true).

- TCannyMod_avx.dll is compiled with /arch:AVX.

Requirements:

Expand Down
4 changes: 2 additions & 2 deletions avisynth/src/tcannymod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ extern "C" __declspec(dllexport) const char * __stdcall
AvisynthPluginInit3(IScriptEnvironment* env, const AVS_Linkage* const vectors)
{
AVS_linkage = vectors;
env->AddFunction("TCannyMod2",
env->AddFunction("TCannyMod",
/*0*/ "c"
/*1*/ "[mode]i"
/*2*/ "[sigma]f"
Expand All @@ -351,6 +351,6 @@ AvisynthPluginInit3(IScriptEnvironment* env, const AVS_Linkage* const vectors)
/*6*/ "[chroma]i"
/*7*/ "[gmmax]f"
/*8*/ "[opt]i", create_tcannymod, nullptr);
env->AddFunction("GBlur2", "c[sigma]f[chroma]i[opt]i", create_gblur, nullptr);
env->AddFunction("GBlur", "c[sigma]f[chroma]i[opt]i", create_gblur, nullptr);
return "Canny edge detection filter for Avisynth2.6 ver." TCANNY_M_VERSION;
}

0 comments on commit 066ffce

Please sign in to comment.