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

Delphi控件源码

开发平台:

Delphi

  1. TACMDialog component is derived from the TComponent.
  2. TACMDialog have only one method - OpenDialog, which 
  3. open the dialog box for selecting codecs installed 
  4. in windows.
  5. OpenDialog return pointer to twaveformatex structure 
  6. for selected format:
  7.   TWAVEFORMATEX = packed record
  8.     wFormatTag: Word;         { format type }
  9.     nChannels: Word;          { number of channels (i.e. mono, stereo, etc.) }
  10.     nSamplesPerSec: DWORD;  { sample rate }
  11.     nAvgBytesPerSec: DWORD; { for buffer estimation }
  12.     nBlockAlign: Word;      { block size of data }
  13.     wBitsPerSample: Word;   { number of bits per sample of mono data }
  14.     cbSize: Word;           { the count in bytes of the size of }
  15.   end;