| 106 | } |
| 107 | |
| 108 | static TextSelectorType GetTextSelectorType(const AEGP_StreamRefH& streamHandle) { |
| 109 | std::string matchName = GetStreamMatchName(streamHandle); |
| 110 | auto result = TextSelectorTypeMap.find(matchName); |
| 111 | if (result == TextSelectorTypeMap.end()) { |
| 112 | return TextSelectorType::Unknown; |
| 113 | } |
| 114 | return result->second; |
| 115 | } |
| 116 | |
| 117 | static TextAnimatorPropertiesType GetTextAnimatorPropertiesType( |
| 118 | const AEGP_StreamRefH& streamHandle) { |
no test coverage detected