Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjulek committed Sep 6, 2024
1 parent e180d30 commit be18038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "vszip",
.version = "1.0.0",
.version = "3.0.0",
.paths = .{""},
.dependencies = .{
.vapoursynth = .{
Expand Down
2 changes: 1 addition & 1 deletion src/vszip.zig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub const vsh = vapoursynth.vshelper;
pub const zapi = vapoursynth.zigapi;

export fn VapourSynthPluginInit2(plugin: *vs.Plugin, vspapi: *const vs.PLUGINAPI) void {
_ = vspapi.configPlugin.?("com.julek.vszip", "vszip", "VapourSynth Zig Image Process", vs.makeVersion(1, 0), vs.VAPOURSYNTH_API_VERSION, 0, plugin);
_ = vspapi.configPlugin.?("com.julek.vszip", "vszip", "VapourSynth Zig Image Process", vs.makeVersion(3, 0), vs.VAPOURSYNTH_API_VERSION, 0, plugin);
_ = vspapi.registerFunction.?(bilateral.filter_name, "clip:vnode;ref:vnode:opt;sigmaS:float[]:opt;sigmaR:float[]:opt;planes:int[]:opt;algorithm:int[]:opt;PBFICnum:int[]:opt", "clip:vnode;", bilateral.bilateralCreate, null, plugin);
_ = vspapi.registerFunction.?(boxblur.filter_name, "clip:vnode;planes:int[]:opt;hradius:int:opt;hpasses:int:opt;vradius:int:opt;vpasses:int:opt", "clip:vnode;", boxblur.boxBlurCreate, null, plugin);
_ = vspapi.registerFunction.?(metrics.filter_name, "reference:vnode;distorted:vnode;mode:int:opt;", "clip:vnode;", metrics.MetricsCreate, null, plugin);
Expand Down

0 comments on commit be18038

Please sign in to comment.