feat(win/video): support native YUV 4:4:4 encoding (#2533)

This commit is contained in:
ns6089
2024-08-16 20:41:27 +03:00
committed by GitHub
parent e8c837f412
commit bfdfcebc80
35 changed files with 1454 additions and 330 deletions

View File

@@ -267,6 +267,12 @@ namespace util {
return Hex<T>(elem, rev);
}
template <typename T>
std::string
log_hex(const T &value) {
return "0x" + Hex<T>(value, false).to_string();
}
template <class It>
std::string
hex_vec(It begin, It end, bool rev = false) {