summaryrefslogtreecommitdiff
path: root/src/filter-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filter-private.h')
-rw-r--r--src/filter-private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filter-private.h b/src/filter-private.h
index 0e7afa1f..f5e8b7f7 100644
--- a/src/filter-private.h
+++ b/src/filter-private.h
@@ -38,11 +38,11 @@ struct motion_filter_interface {
uint64_t time);
void (*destroy)(struct motion_filter *filter);
bool (*set_speed)(struct motion_filter *filter,
- double speed);
+ double speed_adjustment);
};
struct motion_filter {
- double speed; /* normalized [-1, 1] */
+ double speed_adjustment; /* normalized [-1, 1] */
struct motion_filter_interface *interface;
};