Skip to content

Commit

Permalink
v1.02
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-axis committed Jun 19, 2024
1 parent 6e5fe20 commit 2b342c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ https://github.com/sigma-axis/aviutl_SimpleLoHiPassFilter/assets/132639613/5cbe6
次の 6 つから選びます.

1. 矩形窓: $\qquad f(x)=1\quad(-1\leqq x \leqq +1)$.
1. 三角窓: $\qquad f(x)=\min\{ 1+x, 1-x \}$.
1. 三角窓: $\qquad f(x)=\min\\{ 1+x, 1-x \\}$.
1. Hann 窓: $\qquad f(x)=0.5+0.5\cos \pi x$.
1. Hamming 窓: $\qquad f(x)=0.52+0.46\cos \pi x$.
1. Blackman 窓: $\qquad f(x)=0.42+0.50\cos \pi x+0.08\cos 2\pi x$.
Expand All @@ -98,6 +98,12 @@ https://github.com/sigma-axis/aviutl_SimpleLoHiPassFilter/assets/132639613/5cbe6

## 改版履歴

- **v1.02** (2024-06-19)

- バッファの取り回しを間違っていたのを修正.ソースのコピー元でバッファが長めの最低保証を受けていたため不具合が起こらなかっただけだった.

- 小さなコード修正.

- **v1.01** (2024-06-19)

- 無駄な変数や初期化処理を削除.
Expand Down
2 changes: 1 addition & 1 deletion SimpleLoHiPassFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ enum class ConvKernel : uint8_t {
};
constexpr int count_kernels = 6;

#define PLUGIN_VERSION "v1.02-beta1"
#define PLUGIN_VERSION "v1.02"
#define PLUGIN_AUTHOR "sigma-axis"
#define FILTER_INFO_FMT(name, ver, author) (name##" "##ver##" by "##author)
#define FILTER_INFO(name) constexpr char filter_name[] = name, info[] = FILTER_INFO_FMT(name, PLUGIN_VERSION, PLUGIN_AUTHOR)
Expand Down

0 comments on commit 2b342c4

Please sign in to comment.