VideoConsts.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit VideoConsts;
  2. interface
  3. uses Windows;
  4. const
  5.   BASEPORT = 5555;
  6.   LISTENPORT = BASEPORT;
  7.   CONNECTPORT = BASEPORT;
  8.   
  9. type
  10.   _SERVER_CTRL_MSG = record
  11.     strCommand: array [0..99] of Char;
  12.     nContentUsesByte: DWORD;
  13.     strContent: array [0..999] of Char;
  14.   end;
  15.   PServerControlInfo = ^TServerControlInfo;
  16.   TServerControlInfo = _SERVER_CTRL_MSG;
  17.   PClientControlInfo = ^TClientControlInfo;
  18.   TClientControlInfo = _SERVER_CTRL_MSG;
  19.   _VIDEO_DATA = record
  20.     bKeyFrame: Boolean;
  21.     nSampleNum: DWORD;
  22.     nUsedSize: DWORD;
  23.     nGetedSize: DWORD;
  24.     Buf: array [0..8179] of Byte;
  25.   end;
  26.   PVideoDataInfo = ^TVideoDataInfo;
  27.   TVideoDataInfo = _VIDEO_DATA;
  28. implementation
  29. end.