Skip to content

Commit

Permalink
Add missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Asd-g committed Jun 27, 2023
1 parent 9cacb85 commit 798308c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "avs_libplacebo.h"

static const char* AVSC_CC avisynth_c_plugin_init(AVS_ScriptEnvironment* env)
const char* AVSC_CC avisynth_c_plugin_init(AVS_ScriptEnvironment* env)
{
avs_add_function(env, "libplacebo_Deband", "c[iterations]i[threshold]f[radius]f[grainY]f[grainC]f[dither]i[lut_size]i[temporal]b[planes]i*[device]i[list_device]b[grain_neutral]f*", create_deband, 0);
avs_add_function(env, "libplacebo_Resample", "cii[filter]s[radius]f[clamp]f[taper]f[blur]f[param1]f[param2]f[sx]f[sy]f[antiring]f[lut_entries]i[cutoff]f[sigmoidize]b[linearize]b[sigmoid_center]f[sigmoid_slope]f[trc]i[cplace]i[device]i[list_device]b[src_width]f[src_height]f", create_resample, 0);
Expand Down
1 change: 1 addition & 0 deletions src/shader.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <cstring>
#include <mutex>
#include <regex>

Expand Down
1 change: 1 addition & 0 deletions src/tonemap.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <cstring>
#include <mutex>

#include "avs_libplacebo.h"
Expand Down

0 comments on commit 798308c

Please sign in to comment.