Skip to content

Commit

Permalink
Change luma_thresh default to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
cantabile committed Nov 8, 2013
1 parent e493af2 commit cd155f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bifrost.cpp
Expand Up @@ -414,9 +414,9 @@ AVSValue __cdecl Create_Bifrost(AVSValue args, void* user_data, IScriptEnvironme

if (args[5].AsBool(true)) {
InClip = env->Invoke("SeparateFields", InClip).AsClip();
return env->Invoke("Weave", new Bifrost(env->Invoke("SeparateFields", args[0].AsClip()).AsClip(), InClip, (float)args[2].AsFloat(3.0), args[3].AsInt(5), args[4].AsBool(false), true, args[6].AsInt(4), args[7].AsInt(4), env));
return env->Invoke("Weave", new Bifrost(env->Invoke("SeparateFields", args[0].AsClip()).AsClip(), InClip, (float)args[2].AsFloat(10.0), args[3].AsInt(5), args[4].AsBool(false), true, args[6].AsInt(4), args[7].AsInt(4), env));
} else {
return new Bifrost(args[0].AsClip(), InClip, (float)args[2].AsFloat(1.5), args[3].AsInt(5), args[4].AsBool(false), false, args[6].AsInt(4), args[7].AsInt(4), env);
return new Bifrost(args[0].AsClip(), InClip, (float)args[2].AsFloat(10.0), args[3].AsInt(5), args[4].AsBool(false), false, args[6].AsInt(4), args[7].AsInt(4), env);
}
}

Expand Down

0 comments on commit cd155f7

Please sign in to comment.