From 32a77c49d6c0e72be75aa6a645902ec7feea22f5 Mon Sep 17 00:00:00 2001 From: subhransu mohanty Date: Mon, 26 Nov 2018 13:44:37 +0900 Subject: [PATCH] lottie/parser: Added warning message for no support of Merge Path Object. Change-Id: I1948f86d8370564e733fba82be9785fbad4766bb --- src/lottie/lottieparser.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lottie/lottieparser.cpp b/src/lottie/lottieparser.cpp index 3f42d11..2c0493f 100644 --- a/src/lottie/lottieparser.cpp +++ b/src/lottie/lottieparser.cpp @@ -915,6 +915,9 @@ std::shared_ptr LottieParserImpl::parseObjectTypeAttr() } else if (0 == strcmp(type, "rp")) { curLayerRef->mHasRepeater = true; return parseReapeaterObject(); + } else if (0 == strcmp(type, "mm")) { + vWarning << "Merge Path is not supported yet"; + return nullptr; } else { #ifdef DEBUG_PARSER vDebug << "The Object Type not yet handled = " << type; -- 2.34.1