Redo Reformat and cleanup.

Rider EAP was having a bug interpreting .editorconfig that didn't generate the code style as we wanted.
This is now done with Rider-stable.
This commit is contained in:
2023-10-04 17:34:34 +01:00
parent 9f529da3c6
commit 7786e94ee5
4 changed files with 138 additions and 49 deletions

View File

@@ -127,7 +127,10 @@ public class MPEG
#endregion
static readonly byte[] _mpeg2PackHeaderStartCode = { 0x0, 0x0, 0x1 };
static readonly byte[] _mpeg2PackHeaderStartCode =
{
0x0, 0x0, 0x1
};
public static bool ContainsMpegPackets(byte[] sectorData, uint blocks = 1, uint blockSize = 2048)
{