mirror of https://github.com/mpv-player/mpv
vf_noise: reduce binary size
Same issues as in previous commit.
This commit is contained in:
parent
0c2a0a67b6
commit
aeed84bd27
|
@ -442,11 +442,8 @@ const vf_info_t vf_info_noise = {
|
|||
.name = "noise",
|
||||
.open = vf_open,
|
||||
.priv_size = sizeof(struct vf_priv_s),
|
||||
.priv_defaults = &(const struct vf_priv_s){
|
||||
.strength = 2,
|
||||
},
|
||||
.options = (const struct m_option[]){
|
||||
OPT_INTRANGE("strength", strength, 0, 0, 100),
|
||||
OPT_INTRANGE("strength", strength, 0, 0, 100, OPTDEF_INT(2)),
|
||||
OPT_FLAG("averaged", averaged, 0),
|
||||
OPT_FLAG("pattern", pattern, 0),
|
||||
OPT_FLAG("temporal", temporal, 0),
|
||||
|
|
Loading…
Reference in New Issue