package com.airbnb.lottie.value; import com.airbnb.lottie.utils.MiscUtils; /* loaded from: classes.dex */ public class LottieRelativeIntegerValueCallback extends LottieValueCallback { /* JADX WARN: Can't rename method to resolve collision */ @Override // com.airbnb.lottie.value.LottieValueCallback public Integer getValue(LottieFrameInfo lottieFrameInfo) { return Integer.valueOf(MiscUtils.lerp(lottieFrameInfo.getStartValue().intValue(), lottieFrameInfo.getEndValue().intValue(), lottieFrameInfo.getInterpolatedKeyframeProgress()) + getOffset(lottieFrameInfo).intValue()); } /* JADX WARN: Multi-variable type inference failed */ public Integer getOffset(LottieFrameInfo lottieFrameInfo) { if (this.value == 0) { throw new IllegalArgumentException("You must provide a static value in the constructor , call setValue, or override getValue."); } return (Integer) this.value; } }