2019-10-11 11:22:24 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common
|
2018-03-11 21:05:39 -04:00
|
|
|
|
{
|
2019-10-11 11:22:24 -04:00
|
|
|
|
public static class EndianSwap
|
2018-03-11 21:05:39 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
public static ushort Swap16(ushort value) => (ushort)(((value >> 8) & 0xff) | (value << 8));
|
2018-08-16 19:47:36 -04:00
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
public static int Swap32(int value)
|
2018-06-17 22:28:11 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
uint uintVal = (uint)value;
|
2018-06-17 22:28:11 -04:00
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
return (int)(((uintVal >> 24) & 0x000000ff) |
|
|
|
|
|
((uintVal >> 8) & 0x0000ff00) |
|
|
|
|
|
((uintVal << 8) & 0x00ff0000) |
|
|
|
|
|
((uintVal << 24) & 0xff000000));
|
2018-06-17 22:28:11 -04:00
|
|
|
|
}
|
2019-10-11 11:22:24 -04:00
|
|
|
|
|
|
|
|
|
public static uint FromBigEndianToPlatformEndian(uint value)
|
|
|
|
|
{
|
|
|
|
|
uint result = value;
|
|
|
|
|
|
|
|
|
|
if (BitConverter.IsLittleEndian)
|
|
|
|
|
{
|
|
|
|
|
result = (uint)EndianSwap.Swap32((int)result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2018-03-11 21:05:39 -04:00
|
|
|
|
}
|
|
|
|
|
}
|