feat(win/video): support native YUV 4:4:4 encoding (#2533)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user