Convenience function to locate the position of an isochronous packet within the buffer of an isochronous transfer, for transfers where each packet is of identical size.


- packet (Int32)
- The packet to return the address of.

the base address of the packet buffer inside the transfer buffer.

This function relies on the assumption that every packet within the transfer is of identical size to the first packet. Calculating the location of the packet buffer is then just a simple calculation: buffer + (packet_size * packet)
Do not use this function on transfers other than those that have identical packet lengths for each packet.


Exception | Condition |
---|---|
ArgumentOutOfRangeException | This exception is thrown if the packet requested is >= NumIsoPackets. |