Searched refs:secondByte (Results 1 – 4 of 4) sorted by relevance
66 virtual uint8_t GetNalType(uint8_t firstByte, uint8_t secondByte) = 0;190 uint8_t GetNalType(uint8_t, uint8_t secondByte) override;
235 uint8_t StartCodeDetectorH266::GetNalType(uint8_t, uint8_t secondByte) in GetNalType() argument237 … return (secondByte & 0b1111'1000) >> 3; // 3: The higher 5 bits of this byte indicate the NalType. in GetNalType()
62 unsigned char secondByte = KITS::NfcSdkCommon::GetByteFromHexStr(src, offset); in GetTypeFromPayload() local65 return ((firstByte << shift) + secondByte) & WIFI_TYPE_TO_INT_MASK; in GetTypeFromPayload()
105 unsigned char secondByte = KITS::NfcSdkCommon::GetByteFromHexStr(payload, offset++); in GetBtDevClass() local107 int devClass = (firstByte << (SHIFT_ONE_BYTE * 2)) + (secondByte << SHIFT_ONE_BYTE) + thirdByte; in GetBtDevClass()