InputStreamSourceFilter.H264.H264CodecData.CopyBytes C# (CSharp) Method

CopyBytes() static private method

static private CopyBytes ( byte src, int offset, int count ) : byte[]
src byte
offset int
count int
return byte[]
    static byte[] CopyBytes(byte[] src, int offset, int count)
    {
      byte[] dst = new byte[count];
      Buffer.BlockCopy(src, offset, dst, 0, count);
      return dst;
    }