| 953 | } |
| 954 | |
| 955 | AX_DLL uint32_t fourccValue(std::string_view str) |
| 956 | { |
| 957 | if (str.empty() || str[0] != '#') |
| 958 | return (uint32_t)-1; |
| 959 | uint32_t value = 0; |
| 960 | memcpy(&value, str.data() + 1, std::min(sizeof(value), str.size() - 1)); |
| 961 | return value; |
| 962 | } |
| 963 | |
| 964 | } // namespace utils |
| 965 |
no test coverage detected