Rabbit-R1/switch port/java/sources/com/airbnb/lottie/parser/PathKeyframeParser.java
2024-05-21 17:08:36 -04:00

18 lines
751 B
Java

package com.airbnb.lottie.parser;
import com.airbnb.lottie.LottieComposition;
import com.airbnb.lottie.animation.keyframe.PathKeyframe;
import com.airbnb.lottie.parser.moshi.JsonReader;
import com.airbnb.lottie.utils.Utils;
import java.io.IOException;
/* loaded from: classes2.dex */
class PathKeyframeParser {
private PathKeyframeParser() {
}
/* JADX INFO: Access modifiers changed from: package-private */
public static PathKeyframe parse(JsonReader jsonReader, LottieComposition lottieComposition) throws IOException {
return new PathKeyframe(lottieComposition, KeyframeParser.parse(jsonReader, lottieComposition, Utils.dpScale(), PathParser.INSTANCE, jsonReader.peek() == JsonReader.Token.BEGIN_OBJECT, false));
}
}