Added initial version.

This commit is contained in:
2015-09-22 05:25:18 +01:00
commit ac31fdcafb
7 changed files with 596 additions and 0 deletions

29
Subchannel.cs Normal file
View File

@@ -0,0 +1,29 @@
using System;
namespace SubChannelDecoder
{
public struct Subchannel
{
public byte[] p;
public byte[] q;
public byte[] r;
public byte[] s;
public byte[] t;
public byte[] u;
public byte[] v;
public byte[] w;
public Subchannel()
{
this.p = new byte[12];
this.q = new byte[12];
this.r = new byte[12];
this.s = new byte[12];
this.t = new byte[12];
this.u = new byte[12];
this.v = new byte[12];
this.w = new byte[12];
}
}
}