mirror of
https://github.com/Genymobile/scrcpy
synced 2025-01-30 12:12:36 +00:00
Add buffer_read16be()
Add a function to read 16 bits in big-endian to a uint16_t.
This commit is contained in:
parent
7fc8793d5b
commit
7475550ae8
@ -18,6 +18,11 @@ buffer_write32be(uint8_t *buf, uint32_t value) {
|
||||
buf[3] = value;
|
||||
}
|
||||
|
||||
static inline uint16_t
|
||||
buffer_read16be(const uint8_t *buf) {
|
||||
return (buf[0] << 8) | buf[1];
|
||||
}
|
||||
|
||||
static inline uint32_t
|
||||
buffer_read32be(const uint8_t *buf) {
|
||||
return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
|
||||
|
Loading…
Reference in New Issue
Block a user