summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/curve.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/curve.h')
-rw-r--r--libs/ardour/ardour/curve.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/curve.h b/libs/ardour/ardour/curve.h
index 7f8a43cfe1..df632c5171 100644
--- a/libs/ardour/ardour/curve.h
+++ b/libs/ardour/ardour/curve.h
@@ -52,8 +52,8 @@ class Curve : public AutomationList
Curve (const Curve& other);
Curve (const Curve& other, double start, double end);
- bool rt_safe_get_vector (double x0, double x1, float *arg, int32_t veclen);
- void get_vector (double x0, double x1, float *arg, int32_t veclen);
+ bool rt_safe_get_vector (double x0, double x1, float *arg, size_t veclen);
+ void get_vector (double x0, double x1, float *arg, size_t veclen);
AutomationEventList::iterator closest_control_point_before (double xval);
AutomationEventList::iterator closest_control_point_after (double xval);
@@ -72,14 +72,14 @@ class Curve : public AutomationList
double unlocked_eval (double where);
double multipoint_eval (double x);
- void _get_vector (double x0, double x1, float *arg, int32_t veclen);
+ void _get_vector (double x0, double x1, float *arg, size_t veclen);
};
} // namespace ARDOUR
extern "C" {
- void curve_get_vector_from_c (void *arg, double, double, float*, int32_t);
+ void curve_get_vector_from_c (void *arg, double, double, float*, size_t);
}
#endif /* __ardour_curve_h__ */