Skip to content

Commit

Permalink
Fix APIv4 error
Browse files Browse the repository at this point in the history
  • Loading branch information
sekrit-twc authored May 28, 2023
1 parent 4e44dff commit 562e06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EdgeFixer/vsplugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,6 @@ VS_EXTERNAL_API(void) VapourSynthPluginInit2(VSPlugin *plugin, VSPLUGINAPI *vspa

#define COMMON_ARGS "left:int:opt;top:int:opt;right:int:opt;bottom:int:opt;radius:int:opt;"
vspapi->registerFunction("Continuity", "clip:vnode;" COMMON_ARGS, "clip:vnode;", vs_edgefix_create, (void *)0, plugin);
vspapi->registerFunction("Reference", "clip:clip;ref:clip;" COMMON_ARGS, "clip:vnode;", vs_edgefix_create, (void *)1, plugin);
vspapi->registerFunction("Reference", "clip:vnode;ref:vnode;" COMMON_ARGS, "clip:vnode;", vs_edgefix_create, (void *)1, plugin);
#undef COMMON_ARGS
}

1 comment on commit 562e06d

@sl1pkn07
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tnx

Please sign in to comment.