You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
671 B
31 lines
671 B
using System;
|
|
using System.IO;
|
|
|
|
namespace DvdLib
|
|
{
|
|
public class BigEndianBinaryReader : BinaryReader
|
|
{
|
|
public BigEndianBinaryReader(Stream input)
|
|
: base(input)
|
|
{
|
|
}
|
|
|
|
public override ushort ReadUInt16()
|
|
{
|
|
return BitConverter.ToUInt16(ReadAndReverseBytes(2), 0);
|
|
}
|
|
|
|
public override uint ReadUInt32()
|
|
{
|
|
return BitConverter.ToUInt32(ReadAndReverseBytes(4), 0);
|
|
}
|
|
|
|
private byte[] ReadAndReverseBytes(int count)
|
|
{
|
|
byte[] val = base.ReadBytes(count);
|
|
Array.Reverse(val, 0, count);
|
|
return val;
|
|
}
|
|
}
|
|
}
|