aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-06-17 01:03:42 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-06-17 01:03:42 +0000
commitcb5b64b85433c3d6e4c37f5d691bf3dc2165e71a (patch)
tree05fe4bbf03603703931670dfb2e19f7173e88ef9
parent02ec643ca425435a340a68f8e48b86eb4704a8fc (diff)
parent8ded831b9255a5807bc24a1455d332963f333232 (diff)
downloadlottie-android12-d1-s3-release.tar.gz
Change-Id: Ia918dbee2774cf2289d7084adbbc60fa6713b6b5
-rw-r--r--lottie/src/main/java/com/airbnb/lottie/parser/KeyframeParser.java23
1 files changed, 21 insertions, 2 deletions
diff --git a/lottie/src/main/java/com/airbnb/lottie/parser/KeyframeParser.java b/lottie/src/main/java/com/airbnb/lottie/parser/KeyframeParser.java
index 8cd45bac..5ba38ba6 100644
--- a/lottie/src/main/java/com/airbnb/lottie/parser/KeyframeParser.java
+++ b/lottie/src/main/java/com/airbnb/lottie/parser/KeyframeParser.java
@@ -137,8 +137,27 @@ class KeyframeParser {
interpolator = interpolatorRef.get();
}
if (interpolatorRef == null || interpolator == null) {
- interpolator = PathInterpolatorCompat.create(
- cp1.x / scale, cp1.y / scale, cp2.x / scale, cp2.y / scale);
+ cp1.x /= scale;
+ cp1.y /= scale;
+ cp2.x /= scale;
+ cp2.y /= scale;
+ try {
+ interpolator = PathInterpolatorCompat.create(cp1.x, cp1.y, cp2.x, cp2.y);
+ } catch (IllegalArgumentException e) {
+ if (e.getMessage().equals("The Path cannot loop back on itself.")) {
+ // If a control point extends beyond the previous/next point then it
+ // will cause the value of the interpolator to no longer monotonously
+ // increase. This clips the control point bounds to prevent that from
+ // happening.
+ // NOTE: this will make the rendered animation behave slightly differently
+ // than the original.
+ interpolator = PathInterpolatorCompat.create(
+ Math.min(cp1.x, 1f), cp1.y, Math.max(cp2.x, 0f), cp2.y);
+ } else {
+ // We failed to create the interpolator. Fall back to linear.
+ interpolator = new LinearInterpolator();
+ }
+ }
try {
putInterpolator(hash, new WeakReference<>(interpolator));
} catch (ArrayIndexOutOfBoundsException e) {