Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Asd-g committed Sep 11, 2022
1 parent e6b44e9 commit 590f3bf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
##### 1.1.0:
libplacebo_Deband: replaced parameter `grain` with `grainY` and `grainC`.
Fixed undefined behavior when upstream throw runtime error.
libplacebo_Tonemap: throw error when src_csp=3 and there is no frame property `DolbyVisionRPU`.
libplacebo_Tonemap: fixed black point for any Dolby Vision to PQ conversion.

##### 1.0.1:
libplacebo_Shader: added shader_param.

Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is [a port of the VapourSynth plugin vs-placebo](https://github.com/Lypheo/
#### Usage:

```
libplacebo_Deband(clip input, int "iterations", float "threshold", float "radius", float "grain", int "dither", int "lut_size", bool "temporal", int[] "planes", int "device", bool "list_device")
libplacebo_Deband(clip input, int "iterations", float "threshold", float "radius", float "grainY", float "grainC", int "dither", int "lut_size", bool "temporal", int[] "planes", int "device", bool "list_device")
```

#### Parameters:
Expand Down Expand Up @@ -53,14 +53,15 @@ libplacebo_Deband(clip input, int "iterations", float "threshold", float "radius
Must be radius must be greater than or equal to 0.0.\
Default: 16.0.

- grain\
Add some extra noise to the image.\
- grainY, grainC\
Add some extra noise respectively to the luma and chroma plane.\
This significantly helps cover up remaining quantization artifacts.\
Higher numbers add more noise.\
Note: When debanding HDR sources, even a small amount of grain can result in a very big change to the brightness level.\
It's recommended to either scale this value down or disable it entirely for HDR.\
Must be greater than or equal to 0.0.\
Default: 6.0.
When the clip is RGB, grainC doesn't have effect.\
Default: grainY = 6.0; grainC = grainY.

- dither\
It's valid only for 8-bit clips.\
Expand Down
8 changes: 4 additions & 4 deletions src/avs_libplacebo.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winver.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,1,0
PRODUCTVERSION 1,0,1,0
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0x0L
FILEOS VOS__WINDOWS32
Expand All @@ -15,11 +15,11 @@ BEGIN
BEGIN
VALUE "Comments", "AviSynth+ plugin interface to libplacebo."
VALUE "FileDescription", "avs_libplacebo for AviSynth+."
VALUE "FileVersion", "1.0.1"
VALUE "FileVersion", "1.1.0"
VALUE "InternalName", "avs_libplacebo"
VALUE "OriginalFilename", "avs_libplacebo.dll"
VALUE "ProductName", "avs_libplacebo"
VALUE "ProductVersion", "1.0.1"
VALUE "ProductVersion", "1.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 590f3bf

Please sign in to comment.