#include <sent/stddefs.h>
#include <sent/adin.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <poll.h>
#include <machine/soundcard.h>
adin_mic_freebsd.cのインクルード依存関係図
マクロ定義 | |
#define | DEFAULT_DEVICE "/dev/dsp" |
Default device name, can be overridden by AUDIODEV environment variable. | |
#define | FREQALLOWRANGE 200 |
Acceptable width of sampling frequency. | |
#define | POLLINTERVAL 200 |
Polling interval in miliseconds. | |
関数 | |
boolean | adin_mic_standby (int sfreq, void *arg) |
boolean | adin_mic_start () |
boolean | adin_mic_stop () |
int | adin_mic_read (SP16 *buf, int sampnum) |
Read samples from the daemon. | |
変数 | |
static int | audio_fd |
Audio descriptor. | |
static boolean | need_swap |
Whether input samples need byte-swapping. | |
pollfd | fds [1] |
Workarea for polling device. |
サウンドカードが 16bit モノラル で録音できることが必須です.
JuliusはFreeBSDでミキサーデバイスの設定を一切行いません.録音デバイスの 選択(マイク/ライン)や録音ボリュームの調節は他のツールで 行なって下さい.
デフォルトのデバイス名は "/dev/dsp" です.環境変数 AUDIODEV に デバイス名を指定することで,他のデバイス名を使用できます.
動作確認はFreeBSD 3.2-RELEASE で行なわれました.サウンドドライバは snd を使用しています.
adin_mic_freebsd.c で定義されています。
|
Device initialization: check device capability and open for recording.
adin_mic_freebsd.c の 85 行で定義されています。 |
|
Start recording.
adin_mic_freebsd.c の 191 行で定義されています。 |
|
Stop recording.
adin_mic_freebsd.c の 207 行で定義されています。 |
|
Read samples from the daemon. Try to read sampnum samples and returns actual number of recorded samples currently available. This function will block until at least one sample can be obtained.
adin_mic_freebsd.c の 231 行で定義されています。 |