search for: uilen

Displaying 1 result from an estimated 1 matches for "uilen".

Did you mean: filen
2015 Jul 19
4
Bug in ARM fixed-point ASM?
...3, 0x01, 0x12, 0x00, 0x22, 0x01, 0xfe, 0xff, 0x21, 0x01, 0xf6, 0xff, 0x4b, 0x01, 0x04, 0x00, 0x71, 0x01, 0x1a, 0x00, 0x69, 0x01, 0x01, 0x00, 0x43, 0x01, 0xd7, 0xff, 0x3a, 0x01, 0xb9, 0xff, 0x50, 0x01, 0xb0, 0xff, }; void dump_opus_packet(uint8_t const * const bb, unsigned int const uiLen) { unsigned int ui = 0; printf("Packet size: 0x%2x\n", uiLen); do { printf("%02x %02x %02x %02x %02x %02x %02x %02x\n", bb[ui+0], bb[ui+1], bb[ui+2], bb[ui+3], bb[ui+4], bb[ui+5], bb[ui+6], bb[ui+7]); ui += 8; } while (ui < u...