| 97 | } |
| 98 | |
| 99 | static TextAnimatorType GetTextAnimatorType(const AEGP_StreamRefH& streamHandle) { |
| 100 | std::string matchName = GetStreamMatchName(streamHandle); |
| 101 | auto result = TextAnimatorTypeMap.find(matchName); |
| 102 | if (result == TextAnimatorTypeMap.end()) { |
| 103 | return TextAnimatorType::Unknown; |
| 104 | } |
| 105 | return result->second; |
| 106 | } |
| 107 | |
| 108 | static TextSelectorType GetTextSelectorType(const AEGP_StreamRefH& streamHandle) { |
| 109 | std::string matchName = GetStreamMatchName(streamHandle); |
no test coverage detected