示例#1
0
 public CDecoderThread()
 {
     _Framebuffer   = new CFramebuffer(10);
     _FrameDuration = 0.02f; // Set a reasonable standard till correct value is set
 }
示例#2
0
 public CFrame(CFramebuffer parent, int index, int dataSize)
 {
     _Parent = parent;
     _Index  = index;
     Data    = new byte[dataSize];
 }