Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

Reverse 0x00 to 0xff

reportbase
Beginner
357 Views
Whats the IPP way of reversing an array of bytes from 0x00 to 0xff?
Ipp_(from,3,to,3,row);
Original:
uint8_t from [] = {0x00,0x00,0xff};
Result
uint8_t to[] = {0xff,0xff,0x00};
0 Kudos
1 Reply
SergeyKostrov
Valued Contributor II
357 Views

Please take a look at a similar post at:

http://software.intel.com/en-us/forums/showthread.php?t=103569&o=a&s=lr

and I 'd like to repeat thata lookup table ofreversed bytes could be easily used.

Best regards,
Sergey

0 Kudos
Reply