1
mirror of https://github.com/mpv-player/mpv synced 2024-08-08 13:25:45 +02:00

vf_noise: reduce binary size

Same issues as in previous commit.
This commit is contained in:
wm4 2013-12-04 02:17:19 +01:00
parent 0c2a0a67b6
commit aeed84bd27

View File

@ -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),