acmdialog.txt

来自「Delphi写的IP电话源码,并含demo。」· 文本 代码 · 共 17 行

TXT
17
字号
TACMDialog component is derived from the TComponent.
TACMDialog have only one method - OpenDialog, which 
open the dialog box for selecting codecs installed 
in windows.
OpenDialog return pointer to twaveformatex structure 
for selected format:

  TWAVEFORMATEX = packed record
    wFormatTag: Word;         { format type }
    nChannels: Word;          { number of channels (i.e. mono, stereo, etc.) }
    nSamplesPerSec: DWORD;  { sample rate }
    nAvgBytesPerSec: DWORD; { for buffer estimation }
    nBlockAlign: Word;      { block size of data }
    wBitsPerSample: Word;   { number of bits per sample of mono data }
    cbSize: Word;           { the count in bytes of the size of }
  end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?